]> Git Repo - linux.git/blob - MAINTAINERS
Merge branch 'for-linus' of git://git.armlinux.org.uk/~rmk/linux-arm
[linux.git] / MAINTAINERS
1
2
3         List of maintainers and how to submit kernel changes
4
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
8
9 1.      Always _test_ your changes, however small, on at least 4 or
10         5 people, preferably many more.
11
12 2.      Try to release a few ALPHA test versions to the net. Announce
13         them onto the kernel channel and await results. This is especially
14         important for device drivers, because often that's the only way
15         you will find things like the fact version 3 firmware needs
16         a magic fix you didn't know about, or some clown changed the
17         chips on a board and not its name.  (Don't laugh!  Look at the
18         SMC etherpower for that.)
19
20 3.      Make sure your changes compile correctly in multiple
21         configurations. In particular check that changes work both as a
22         module and built into the kernel.
23
24 4.      When you are happy with a change make it generally available for
25         testing and await feedback.
26
27 5.      Make a patch available to the relevant maintainer in the list. Use
28         'diff -u' to make the patch easy to merge. Be prepared to get your
29         changes sent back with seemingly silly requests about formatting
30         and variable names.  These aren't as silly as they seem. One
31         job the maintainers (and especially Linus) do is to keep things
32         looking the same. Sometimes this means that the clever hack in
33         your driver to get around a problem actually needs to become a
34         generalized kernel feature ready for next time.
35
36         PLEASE check your patch with the automated style checker
37         (scripts/checkpatch.pl) to catch trivial style violations.
38         See Documentation/process/coding-style.rst for guidance here.
39
40         PLEASE CC: the maintainers and mailing lists that are generated
41         by scripts/get_maintainer.pl.  The results returned by the
42         script will be best if you have git installed and are making
43         your changes in a branch derived from Linus' latest git tree.
44         See Documentation/process/submitting-patches.rst for details.
45
46         PLEASE try to include any credit lines you want added with the
47         patch. It avoids people being missed off by mistake and makes
48         it easier to know who wants adding and who doesn't.
49
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
52
53         PLEASE remember that submissions must be made under the terms
54         of the Linux Foundation certificate of contribution and should
55         include a Signed-off-by: line.  The current version of this
56         "Developer's Certificate of Origin" (DCO) is listed in the file
57         Documentation/process/submitting-patches.rst.
58
59 6.      Make sure you have the right to send any changes you make. If you
60         do changes at work you may find your employer owns the patch
61         not you.
62
63 7.      When sending security related changes or reports to a maintainer
64         please Cc: [email protected], especially if the maintainer
65         does not respond.
66
67 8.      Happy hacking.
68
69 Descriptions of section entries:
70
71         P: Person (obsolete)
72         M: Mail patches to: FullName <address@domain>
73         R: Designated reviewer: FullName <address@domain>
74            These reviewers should be CCed on patches.
75         L: Mailing list that is relevant to this area
76         W: Web-page with status/info
77         B: URI for where to file bugs. A web-page with detailed bug
78            filing info, a direct bug tracker link, or a mailto: URI.
79         C: URI for chat protocol, server and channel where developers
80            usually hang out, for example irc://server/channel.
81         Q: Patchwork web based patch tracking system site
82         T: SCM tree type and location.
83            Type is one of: git, hg, quilt, stgit, topgit
84         S: Status, one of the following:
85            Supported:   Someone is actually paid to look after this.
86            Maintained:  Someone actually looks after it.
87            Odd Fixes:   It has a maintainer but they don't have time to do
88                         much other than throw the odd patch in. See below..
89            Orphan:      No current maintainer [but maybe you could take the
90                         role as you write your new code].
91            Obsolete:    Old code. Something tagged obsolete generally means
92                         it has been replaced by a better system and you
93                         should be using that.
94         F: Files and directories with wildcard patterns.
95            A trailing slash includes all files and subdirectory files.
96            F:   drivers/net/    all files in and below drivers/net
97            F:   drivers/net/*   all files in drivers/net, but not below
98            F:   */net/*         all files in "any top level directory"/net
99            One pattern per line.  Multiple F: lines acceptable.
100         N: Files and directories with regex patterns.
101            N:   [^a-z]tegra     all files whose path contains the word tegra
102            One pattern per line.  Multiple N: lines acceptable.
103            scripts/get_maintainer.pl has different behavior for files that
104            match F: pattern and matches of N: patterns.  By default,
105            get_maintainer will not look at git log history when an F: pattern
106            match occurs.  When an N: match occurs, git log history is used
107            to also notify the people that have git commit signatures.
108         X: Files and directories that are NOT maintained, same rules as F:
109            Files exclusions are tested before file matches.
110            Can be useful for excluding a specific subdirectory, for instance:
111            F:   net/
112            X:   net/ipv6/
113            matches all files in and below net excluding net/ipv6/
114         K: Keyword perl extended regex pattern to match content in a
115            patch or file.  For instance:
116            K: of_get_profile
117               matches patches or files that contain "of_get_profile"
118            K: \b(printk|pr_(info|err))\b
119               matches patches or files that contain one or more of the words
120               printk, pr_info or pr_err
121            One regex pattern per line.  Multiple K: lines acceptable.
122
123 Note: For the hard of thinking, this list is meant to remain in alphabetical
124 order. If you could add yourselves to it in alphabetical order that would be
125 so much easier [Ed]
126
127 Maintainers List (try to look for most precise areas first)
128
129                 -----------------------------------
130
131 3C59X NETWORK DRIVER
132 M:      Steffen Klassert <[email protected]>
133 L:      [email protected]
134 S:      Maintained
135 F:      Documentation/networking/vortex.txt
136 F:      drivers/net/ethernet/3com/3c59x.c
137
138 3CR990 NETWORK DRIVER
139 M:      David Dillow <[email protected]>
140 L:      [email protected]
141 S:      Maintained
142 F:      drivers/net/ethernet/3com/typhoon*
143
144 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
145 M:      Adam Radford <[email protected]>
146 L:      [email protected]
147 W:      http://www.lsi.com
148 S:      Supported
149 F:      drivers/scsi/3w-*
150
151 53C700 AND 53C700-66 SCSI DRIVER
152 M:      "James E.J. Bottomley" <[email protected]>
153 L:      [email protected]
154 S:      Maintained
155 F:      drivers/scsi/53c700*
156
157 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
158 M:      Alexander Aring <[email protected]>
159 M:      Jukka Rissanen <[email protected]>
160 L:      [email protected]
161 L:      [email protected]
162 S:      Maintained
163 F:      net/6lowpan/
164 F:      include/net/6lowpan.h
165 F:      Documentation/networking/6lowpan.txt
166
167 6PACK NETWORK DRIVER FOR AX.25
168 M:      Andreas Koensgen <[email protected]>
169 L:      [email protected]
170 S:      Maintained
171 F:      drivers/net/hamradio/6pack.c
172
173 8169 10/100/1000 GIGABIT ETHERNET DRIVER
174 M:      Realtek linux nic maintainers <[email protected]>
175 L:      [email protected]
176 S:      Maintained
177 F:      drivers/net/ethernet/realtek/r8169.c
178
179 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
180 M:      Greg Kroah-Hartman <[email protected]>
181 L:      [email protected]
182 S:      Maintained
183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
184 F:      drivers/tty/serial/8250*
185 F:      include/linux/serial_8250.h
186
187 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
188 L:      [email protected]
189 S:      Orphan / Obsolete
190 F:      drivers/net/ethernet/8390/
191
192 9P FILE SYSTEM
193 M:      Eric Van Hensbergen <[email protected]>
194 M:      Ron Minnich <[email protected]>
195 M:      Latchesar Ionkov <[email protected]>
196 L:      [email protected]
197 W:      http://swik.net/v9fs
198 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
200 S:      Maintained
201 F:      Documentation/filesystems/9p.txt
202 F:      fs/9p/
203 F:      net/9p/
204 F:      include/net/9p/
205 F:      include/uapi/linux/virtio_9p.h
206 F:      include/trace/events/9p.h
207
208
209 A8293 MEDIA DRIVER
210 M:      Antti Palosaari <[email protected]>
211 L:      [email protected]
212 W:      https://linuxtv.org
213 W:      http://palosaari.fi/linux/
214 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
215 T:      git git://linuxtv.org/anttip/media_tree.git
216 S:      Maintained
217 F:      drivers/media/dvb-frontends/a8293*
218
219 AACRAID SCSI RAID DRIVER
220 M:      Adaptec OEM Raid Solutions <[email protected]>
221 L:      [email protected]
222 W:      http://www.adaptec.com/
223 S:      Supported
224 F:      Documentation/scsi/aacraid.txt
225 F:      drivers/scsi/aacraid/
226
227 ABI/API
228 L:      [email protected]
229 F:      include/linux/syscalls.h
230 F:      kernel/sys_ni.c
231
232 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
233 M:      Hans de Goede <[email protected]>
234 L:      [email protected]
235 S:      Maintained
236 F:      drivers/hwmon/abituguru.c
237
238 ABIT UGURU 3 HARDWARE MONITOR DRIVER
239 M:      Alistair John Strachan <[email protected]>
240 L:      [email protected]
241 S:      Maintained
242 F:      drivers/hwmon/abituguru3.c
243
244 ACCES 104-DIO-48E GPIO DRIVER
245 M:      William Breathitt Gray <[email protected]>
246 L:      [email protected]
247 S:      Maintained
248 F:      drivers/gpio/gpio-104-dio-48e.c
249
250 ACCES 104-IDI-48 GPIO DRIVER
251 M:      "William Breathitt Gray" <[email protected]>
252 L:      [email protected]
253 S:      Maintained
254 F:      drivers/gpio/gpio-104-idi-48.c
255
256 ACCES 104-IDIO-16 GPIO DRIVER
257 M:      "William Breathitt Gray" <[email protected]>
258 L:      [email protected]
259 S:      Maintained
260 F:      drivers/gpio/gpio-104-idio-16.c
261
262 ACCES 104-QUAD-8 IIO DRIVER
263 M:      William Breathitt Gray <[email protected]>
264 L:      [email protected]
265 S:      Maintained
266 F:      drivers/iio/counter/104-quad-8.c
267
268 ACCES PCI-IDIO-16 GPIO DRIVER
269 M:      William Breathitt Gray <[email protected]>
270 L:      [email protected]
271 S:      Maintained
272 F:      drivers/gpio/gpio-pci-idio-16.c
273
274 ACENIC DRIVER
275 M:      Jes Sorensen <[email protected]>
276 L:      [email protected]
277 S:      Maintained
278 F:      drivers/net/ethernet/alteon/acenic*
279
280 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
281 M:      Peter Feuerer <[email protected]>
282 L:      [email protected]
283 W:      http://piie.net/?section=acerhdf
284 S:      Maintained
285 F:      drivers/platform/x86/acerhdf.c
286
287 ACER WMI LAPTOP EXTRAS
288 M:      "Lee, Chun-Yi" <[email protected]>
289 L:      [email protected]
290 S:      Maintained
291 F:      drivers/platform/x86/acer-wmi.c
292
293 ACPI
294 M:      "Rafael J. Wysocki" <[email protected]>
295 M:      Len Brown <[email protected]>
296 L:      [email protected]
297 W:      https://01.org/linux-acpi
298 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
300 B:      https://bugzilla.kernel.org
301 S:      Supported
302 F:      drivers/acpi/
303 F:      drivers/pnp/pnpacpi/
304 F:      include/linux/acpi.h
305 F:      include/acpi/
306 F:      Documentation/acpi/
307 F:      Documentation/ABI/testing/sysfs-bus-acpi
308 F:      Documentation/ABI/testing/configfs-acpi
309 F:      drivers/pci/*acpi*
310 F:      drivers/pci/*/*acpi*
311 F:      drivers/pci/*/*/*acpi*
312 F:      tools/power/acpi/
313
314 ACPI COMPONENT ARCHITECTURE (ACPICA)
315 M:      Robert Moore <[email protected]>
316 M:      Lv Zheng <[email protected]>
317 M:      "Rafael J. Wysocki" <[email protected]>
318 L:      [email protected]
319 L:      [email protected]
320 W:      https://acpica.org/
321 W:      https://github.com/acpica/acpica/
322 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
324 B:      https://bugzilla.kernel.org
325 B:      https://bugs.acpica.org
326 S:      Supported
327 F:      drivers/acpi/acpica/
328 F:      include/acpi/
329 F:      tools/power/acpi/
330
331 ACPI FAN DRIVER
332 M:      Zhang Rui <[email protected]>
333 L:      [email protected]
334 W:      https://01.org/linux-acpi
335 B:      https://bugzilla.kernel.org
336 S:      Supported
337 F:      drivers/acpi/fan.c
338
339 ACPI FOR ARM64 (ACPI/arm64)
340 M:      Lorenzo Pieralisi <[email protected]>
341 M:      Hanjun Guo <[email protected]>
342 M:      Sudeep Holla <[email protected]>
343 L:      [email protected]
344 S:      Maintained
345 F:      drivers/acpi/arm64
346
347 ACPI THERMAL DRIVER
348 M:      Zhang Rui <[email protected]>
349 L:      [email protected]
350 W:      https://01.org/linux-acpi
351 B:      https://bugzilla.kernel.org
352 S:      Supported
353 F:      drivers/acpi/*thermal*
354
355 ACPI VIDEO DRIVER
356 M:      Zhang Rui <[email protected]>
357 L:      [email protected]
358 W:      https://01.org/linux-acpi
359 B:      https://bugzilla.kernel.org
360 S:      Supported
361 F:      drivers/acpi/acpi_video.c
362
363 ACPI WMI DRIVER
364 L:      [email protected]
365 S:      Orphan
366 F:      drivers/platform/x86/wmi.c
367
368 AD1889 ALSA SOUND DRIVER
369 M:      Thibaut Varene <[email protected]>
370 W:      http://wiki.parisc-linux.org/AD1889
371 L:      [email protected]
372 S:      Maintained
373 F:      sound/pci/ad1889.*
374
375 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
376 M:      Michael Hennerich <[email protected]>
377 W:      http://wiki.analog.com/AD5254
378 W:      http://ez.analog.com/community/linux-device-drivers
379 S:      Supported
380 F:      drivers/misc/ad525x_dpot.c
381
382 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
383 M:      Michael Hennerich <[email protected]>
384 W:      http://wiki.analog.com/AD5398
385 W:      http://ez.analog.com/community/linux-device-drivers
386 S:      Supported
387 F:      drivers/regulator/ad5398.c
388
389 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
390 M:      Michael Hennerich <[email protected]>
391 W:      http://wiki.analog.com/AD7142
392 W:      http://ez.analog.com/community/linux-device-drivers
393 S:      Supported
394 F:      drivers/input/misc/ad714x.c
395
396 AD7877 TOUCHSCREEN DRIVER
397 M:      Michael Hennerich <[email protected]>
398 W:      http://wiki.analog.com/AD7877
399 W:      http://ez.analog.com/community/linux-device-drivers
400 S:      Supported
401 F:      drivers/input/touchscreen/ad7877.c
402
403 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
404 M:      Michael Hennerich <[email protected]>
405 W:      http://wiki.analog.com/AD7879
406 W:      http://ez.analog.com/community/linux-device-drivers
407 S:      Supported
408 F:      drivers/input/touchscreen/ad7879.c
409
410 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
411 M:      Jiri Kosina <[email protected]>
412 S:      Maintained
413
414 ADF7242 IEEE 802.15.4 RADIO DRIVER
415 M:      Michael Hennerich <[email protected]>
416 W:      https://wiki.analog.com/ADF7242
417 W:      http://ez.analog.com/community/linux-device-drivers
418 L:      [email protected]
419 S:      Supported
420 F:      drivers/net/ieee802154/adf7242.c
421 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
422
423 ADM1025 HARDWARE MONITOR DRIVER
424 M:      Jean Delvare <[email protected]>
425 L:      [email protected]
426 S:      Maintained
427 F:      Documentation/hwmon/adm1025
428 F:      drivers/hwmon/adm1025.c
429
430 ADM1029 HARDWARE MONITOR DRIVER
431 M:      Corentin Labbe <[email protected]>
432 L:      [email protected]
433 S:      Maintained
434 F:      drivers/hwmon/adm1029.c
435
436 ADM8211 WIRELESS DRIVER
437 L:      [email protected]
438 W:      http://wireless.kernel.org/
439 S:      Orphan
440 F:      drivers/net/wireless/admtek/adm8211.*
441
442 ADP1653 FLASH CONTROLLER DRIVER
443 M:      Sakari Ailus <[email protected]>
444 L:      [email protected]
445 S:      Maintained
446 F:      drivers/media/i2c/adp1653.c
447 F:      include/media/i2c/adp1653.h
448
449 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
450 M:      Michael Hennerich <[email protected]>
451 W:      http://wiki.analog.com/ADP5520
452 W:      http://ez.analog.com/community/linux-device-drivers
453 S:      Supported
454 F:      drivers/mfd/adp5520.c
455 F:      drivers/video/backlight/adp5520_bl.c
456 F:      drivers/leds/leds-adp5520.c
457 F:      drivers/gpio/gpio-adp5520.c
458 F:      drivers/input/keyboard/adp5520-keys.c
459
460 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
461 M:      Michael Hennerich <[email protected]>
462 W:      http://wiki.analog.com/ADP5588
463 W:      http://ez.analog.com/community/linux-device-drivers
464 S:      Supported
465 F:      drivers/input/keyboard/adp5588-keys.c
466 F:      drivers/gpio/gpio-adp5588.c
467
468 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
469 M:      Michael Hennerich <[email protected]>
470 W:      http://wiki.analog.com/ADP8860
471 W:      http://ez.analog.com/community/linux-device-drivers
472 S:      Supported
473 F:      drivers/video/backlight/adp8860_bl.c
474
475 ADS1015 HARDWARE MONITOR DRIVER
476 M:      Dirk Eibach <[email protected]>
477 L:      [email protected]
478 S:      Maintained
479 F:      Documentation/hwmon/ads1015
480 F:      drivers/hwmon/ads1015.c
481 F:      include/linux/i2c/ads1015.h
482
483 ADT746X FAN DRIVER
484 M:      Colin Leroy <[email protected]>
485 S:      Maintained
486 F:      drivers/macintosh/therm_adt746x.c
487
488 ADT7475 HARDWARE MONITOR DRIVER
489 M:      Jean Delvare <[email protected]>
490 L:      [email protected]
491 S:      Maintained
492 F:      Documentation/hwmon/adt7475
493 F:      drivers/hwmon/adt7475.c
494
495 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
496 M:      Michael Hennerich <[email protected]>
497 W:      http://wiki.analog.com/ADXL345
498 W:      http://ez.analog.com/community/linux-device-drivers
499 S:      Supported
500 F:      drivers/input/misc/adxl34x.c
501
502 ADVANSYS SCSI DRIVER
503 M:      Matthew Wilcox <[email protected]>
504 M:      Hannes Reinecke <[email protected]>
505 L:      [email protected]
506 S:      Maintained
507 F:      Documentation/scsi/advansys.txt
508 F:      drivers/scsi/advansys.c
509
510 AEDSP16 DRIVER
511 M:      Riccardo Facchetti <[email protected]>
512 S:      Maintained
513 F:      sound/oss/aedsp16.c
514
515 AF9013 MEDIA DRIVER
516 M:      Antti Palosaari <[email protected]>
517 L:      [email protected]
518 W:      https://linuxtv.org
519 W:      http://palosaari.fi/linux/
520 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
521 T:      git git://linuxtv.org/anttip/media_tree.git
522 S:      Maintained
523 F:      drivers/media/dvb-frontends/af9013*
524
525 AF9033 MEDIA DRIVER
526 M:      Antti Palosaari <[email protected]>
527 L:      [email protected]
528 W:      https://linuxtv.org
529 W:      http://palosaari.fi/linux/
530 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
531 T:      git git://linuxtv.org/anttip/media_tree.git
532 S:      Maintained
533 F:      drivers/media/dvb-frontends/af9033*
534
535 AFFS FILE SYSTEM
536 L:      [email protected]
537 S:      Orphan
538 F:      Documentation/filesystems/affs.txt
539 F:      fs/affs/
540
541 AFS FILESYSTEM & AF_RXRPC SOCKET DOMAIN
542 M:      David Howells <[email protected]>
543 L:      [email protected]
544 S:      Supported
545 F:      fs/afs/
546 F:      include/net/af_rxrpc.h
547 F:      net/rxrpc/af_rxrpc.c
548 W:      https://www.infradead.org/~dhowells/kafs/
549
550 AGPGART DRIVER
551 M:      David Airlie <[email protected]>
552 T:      git git://people.freedesktop.org/~airlied/linux (part of drm maint)
553 S:      Maintained
554 F:      drivers/char/agp/
555 F:      include/linux/agp*
556 F:      include/uapi/linux/agp*
557
558 AHA152X SCSI DRIVER
559 M:      "Juergen E. Fischer" <[email protected]>
560 L:      [email protected]
561 S:      Maintained
562 F:      drivers/scsi/aha152x*
563 F:      drivers/scsi/pcmcia/aha152x*
564
565 AIC7XXX / AIC79XX SCSI DRIVER
566 M:      Hannes Reinecke <[email protected]>
567 L:      [email protected]
568 S:      Maintained
569 F:      drivers/scsi/aic7xxx/
570
571 AIMSLAB FM RADIO RECEIVER DRIVER
572 M:      Hans Verkuil <[email protected]>
573 L:      [email protected]
574 T:      git git://linuxtv.org/media_tree.git
575 W:      https://linuxtv.org
576 S:      Maintained
577 F:      drivers/media/radio/radio-aimslab*
578
579 AIO
580 M:      Benjamin LaHaise <[email protected]>
581 L:      [email protected]
582 S:      Supported
583 F:      fs/aio.c
584 F:      include/linux/*aio*.h
585
586 AIRSPY MEDIA DRIVER
587 M:      Antti Palosaari <[email protected]>
588 L:      [email protected]
589 W:      https://linuxtv.org
590 W:      http://palosaari.fi/linux/
591 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
592 T:      git git://linuxtv.org/anttip/media_tree.git
593 S:      Maintained
594 F:      drivers/media/usb/airspy/
595
596 ALACRITECH GIGABIT ETHERNET DRIVER
597 M:      Lino Sanfilippo <[email protected]>
598 S:      Maintained
599 F:      drivers/net/ethernet/alacritech/*
600
601 ALCATEL SPEEDTOUCH USB DRIVER
602 M:      Duncan Sands <[email protected]>
603 L:      [email protected]
604 W:      http://www.linux-usb.org/SpeedTouch/
605 S:      Maintained
606 F:      drivers/usb/atm/speedtch.c
607 F:      drivers/usb/atm/usbatm.c
608
609 ALCHEMY AU1XX0 MMC DRIVER
610 M:      Manuel Lauss <[email protected]>
611 S:      Maintained
612 F:      drivers/mmc/host/au1xmmc.c
613
614 ALI1563 I2C DRIVER
615 M:      Rudolf Marek <[email protected]>
616 L:      [email protected]
617 S:      Maintained
618 F:      Documentation/i2c/busses/i2c-ali1563
619 F:      drivers/i2c/busses/i2c-ali1563.c
620
621 ALLWINNER SECURITY SYSTEM
622 M:      Corentin Labbe <[email protected]>
623 L:      [email protected]
624 S:      Maintained
625 F:      drivers/crypto/sunxi-ss/
626
627 ALPHA PORT
628 M:      Richard Henderson <[email protected]>
629 M:      Ivan Kokshaysky <[email protected]>
630 M:      Matt Turner <[email protected]>
631 S:      Odd Fixes
632 L:      [email protected]
633 F:      arch/alpha/
634
635 ALPS PS/2 TOUCHPAD DRIVER
636 R:      Pali Rohár <[email protected]>
637 F:      drivers/input/mouse/alps.*
638
639 ALTERA MAILBOX DRIVER
640 M:      Ley Foon Tan <[email protected]>
641 L:      [email protected] (moderated for non-subscribers)
642 S:      Maintained
643 F:      drivers/mailbox/mailbox-altera.c
644
645 ALTERA PIO DRIVER
646 M:      Tien Hock Loh <[email protected]>
647 L:      [email protected]
648 S:      Maintained
649 F:      drivers/gpio/gpio-altera.c
650
651 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
652 M:      Thor Thayer <[email protected]>
653 S:      Maintained
654 F:      drivers/gpio/gpio-altera-a10sr.c
655 F:      drivers/mfd/altera-a10sr.c
656 F:      include/linux/mfd/altera-a10sr.h
657
658 ALTERA TRIPLE SPEED ETHERNET DRIVER
659 M:      Vince Bridgers <[email protected]>
660 L:      [email protected]
661 L:      [email protected] (moderated for non-subscribers)
662 S:      Maintained
663 F:      drivers/net/ethernet/altera/
664
665 ALTERA UART/JTAG UART SERIAL DRIVERS
666 M:      Tobias Klauser <[email protected]>
667 L:      [email protected]
668 L:      [email protected] (moderated for non-subscribers)
669 S:      Maintained
670 F:      drivers/tty/serial/altera_uart.c
671 F:      drivers/tty/serial/altera_jtaguart.c
672 F:      include/linux/altera_uart.h
673 F:      include/linux/altera_jtaguart.h
674
675 AMAZON ETHERNET DRIVERS
676 M:      Netanel Belgazal <[email protected]>
677 R:      Saeed Bishara <[email protected]>
678 R:      Zorik Machulsky <[email protected]>
679 L:      [email protected]
680 S:      Supported
681 F:      Documentation/networking/ena.txt
682 F:      drivers/net/ethernet/amazon/
683
684 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
685 M:      Tom Lendacky <[email protected]>
686 M:      Gary Hook <[email protected]>
687 L:      [email protected]
688 S:      Supported
689 F:      drivers/crypto/ccp/
690 F:      include/linux/ccp.h
691
692 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
693 M:      Huang Rui <[email protected]>
694 L:      [email protected]
695 S:      Supported
696 F:      Documentation/hwmon/fam15h_power
697 F:      drivers/hwmon/fam15h_power.c
698
699 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
700 L:      [email protected] (moderated for non-subscribers)
701 S:      Orphan
702 F:      drivers/usb/gadget/udc/amd5536udc.*
703
704 AMD GEODE PROCESSOR/CHIPSET SUPPORT
705 P:      Andres Salomon <[email protected]>
706 L:      [email protected] (moderated for non-subscribers)
707 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
708 S:      Supported
709 F:      drivers/char/hw_random/geode-rng.c
710 F:      drivers/crypto/geode*
711 F:      drivers/video/fbdev/geode/
712 F:      arch/x86/include/asm/geode.h
713
714 AMD IOMMU (AMD-VI)
715 M:      Joerg Roedel <[email protected]>
716 L:      [email protected]
717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
718 S:      Maintained
719 F:      drivers/iommu/amd_iommu*.[ch]
720 F:      include/linux/amd-iommu.h
721
722 AMD KFD
723 M:      Oded Gabbay <[email protected]>
724 L:      [email protected]
725 T:      git git://people.freedesktop.org/~gabbayo/linux.git
726 S:      Supported
727 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.c
728 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd.h
729 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v7.c
730 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd_gfx_v8.c
731 F:      drivers/gpu/drm/amd/amdkfd/
732 F:      drivers/gpu/drm/amd/include/cik_structs.h
733 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
734 F:      drivers/gpu/drm/amd/include/vi_structs.h
735 F:      drivers/gpu/drm/radeon/radeon_kfd.c
736 F:      drivers/gpu/drm/radeon/radeon_kfd.h
737 F:      include/uapi/linux/kfd_ioctl.h
738
739 AMD SEATTLE DEVICE TREE SUPPORT
740 M:      Brijesh Singh <[email protected]>
741 M:      Suravee Suthikulpanit <[email protected]>
742 M:      Tom Lendacky <[email protected]>
743 S:      Supported
744 F:      arch/arm64/boot/dts/amd/
745
746 AMD XGBE DRIVER
747 M:      Tom Lendacky <[email protected]>
748 L:      [email protected]
749 S:      Supported
750 F:      drivers/net/ethernet/amd/xgbe/
751 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
752
753 AMS (Apple Motion Sensor) DRIVER
754 M:      Michael Hanselmann <[email protected]>
755 S:      Supported
756 F:      drivers/macintosh/ams/
757
758 ANALOG DEVICES INC AD9389B DRIVER
759 M:      Hans Verkuil <[email protected]>
760 L:      [email protected]
761 S:      Maintained
762 F:      drivers/media/i2c/ad9389b*
763
764 ANALOG DEVICES INC ADV7180 DRIVER
765 M:      Lars-Peter Clausen <[email protected]>
766 L:      [email protected]
767 W:      http://ez.analog.com/community/linux-device-drivers
768 S:      Supported
769 F:      drivers/media/i2c/adv7180.c
770
771 ANALOG DEVICES INC ADV7511 DRIVER
772 M:      Hans Verkuil <[email protected]>
773 L:      [email protected]
774 S:      Maintained
775 F:      drivers/media/i2c/adv7511*
776
777 ANALOG DEVICES INC ADV7604 DRIVER
778 M:      Hans Verkuil <[email protected]>
779 L:      [email protected]
780 S:      Maintained
781 F:      drivers/media/i2c/adv7604*
782
783 ANALOG DEVICES INC ADV7842 DRIVER
784 M:      Hans Verkuil <[email protected]>
785 L:      [email protected]
786 S:      Maintained
787 F:      drivers/media/i2c/adv7842*
788
789 ANALOG DEVICES INC ASOC CODEC DRIVERS
790 M:      Lars-Peter Clausen <[email protected]>
791 L:      [email protected] (moderated for non-subscribers)
792 W:      http://wiki.analog.com/
793 W:      http://ez.analog.com/community/linux-device-drivers
794 S:      Supported
795 F:      sound/soc/codecs/adau*
796 F:      sound/soc/codecs/adav*
797 F:      sound/soc/codecs/ad1*
798 F:      sound/soc/codecs/ad7*
799 F:      sound/soc/codecs/ssm*
800 F:      sound/soc/codecs/sigmadsp.*
801
802 ANALOG DEVICES INC ASOC DRIVERS
803 L:      [email protected] (moderated for non-subscribers)
804 L:      [email protected] (moderated for non-subscribers)
805 W:      http://blackfin.uclinux.org/
806 S:      Supported
807 F:      sound/soc/blackfin/*
808
809 ANALOG DEVICES INC IIO DRIVERS
810 M:      Lars-Peter Clausen <[email protected]>
811 M:      Michael Hennerich <[email protected]>
812 W:      http://wiki.analog.com/
813 W:      http://ez.analog.com/community/linux-device-drivers
814 S:      Supported
815 F:      drivers/iio/*/ad*
816 F:      drivers/iio/adc/ltc2497*
817 X:      drivers/iio/*/adjd*
818 F:      drivers/staging/iio/*/ad*
819 F:      drivers/staging/iio/trigger/iio-trig-bfin-timer.c
820
821 ANALOG DEVICES INC DMA DRIVERS
822 M:      Lars-Peter Clausen <[email protected]>
823 W:      http://ez.analog.com/community/linux-device-drivers
824 S:      Supported
825 F:      drivers/dma/dma-axi-dmac.c
826
827 ANDROID CONFIG FRAGMENTS
828 M:      Rob Herring <[email protected]>
829 S:      Supported
830 F:      kernel/configs/android*
831
832 ANDROID DRIVERS
833 M:      Greg Kroah-Hartman <[email protected]>
834 M:      Arve Hjønnevåg <[email protected]>
835 M:      Riley Andrews <[email protected]>
836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
837 L:      [email protected]
838 S:      Supported
839 F:      drivers/android/
840 F:      drivers/staging/android/
841
842 ANDROID ION DRIVER
843 M:      Laura Abbott <[email protected]>
844 M:      Sumit Semwal <[email protected]>
845 L:      [email protected]
846 S:      Supported
847 F:      Documentation/devicetree/bindings/staging/ion/
848 F:      drivers/staging/android/ion
849 F:      drivers/staging/android/uapi/ion.h
850 F:      drivers/staging/android/uapi/ion_test.h
851
852 AOA (Apple Onboard Audio) ALSA DRIVER
853 M:      Johannes Berg <[email protected]>
854 L:      [email protected]
855 L:      [email protected] (moderated for non-subscribers)
856 S:      Maintained
857 F:      sound/aoa/
858
859 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
860 M:      William Breathitt Gray <[email protected]>
861 L:      [email protected]
862 S:      Maintained
863 F:      drivers/iio/adc/stx104.c
864
865 APM DRIVER
866 M:      Jiri Kosina <[email protected]>
867 S:      Odd fixes
868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
869 F:      arch/x86/kernel/apm_32.c
870 F:      include/linux/apm_bios.h
871 F:      include/uapi/linux/apm_bios.h
872 F:      drivers/char/apm-emulation.c
873
874 APPLE BCM5974 MULTITOUCH DRIVER
875 M:      Henrik Rydberg <[email protected]>
876 L:      [email protected]
877 S:      Odd fixes
878 F:      drivers/input/mouse/bcm5974.c
879
880 APPLE SMC DRIVER
881 M:      Henrik Rydberg <[email protected]>
882 L:      [email protected]
883 S:      Odd fixes
884 F:      drivers/hwmon/applesmc.c
885
886 APPLETALK NETWORK LAYER
887 L:      [email protected]
888 S:      Odd fixes
889 F:      drivers/net/appletalk/
890 F:      net/appletalk/
891
892 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
893 M:      Duc Dang <[email protected]>
894 S:      Supported
895 F:      arch/arm64/boot/dts/apm/
896
897 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
898 M:      Iyappan Subramanian <[email protected]>
899 M:      Keyur Chudgar <[email protected]>
900 M:      Quan Nguyen <[email protected]>
901 S:      Supported
902 F:      drivers/net/ethernet/apm/xgene/
903 F:      drivers/net/phy/mdio-xgene.c
904 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
905 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
906
907 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
908 M:      Iyappan Subramanian <[email protected]>
909 M:      Keyur Chudgar <[email protected]>
910 S:      Supported
911 F:      drivers/net/ethernet/apm/xgene-v2/
912
913 APPLIED MICRO (APM) X-GENE SOC PMU
914 M:      Tai Nguyen <[email protected]>
915 S:      Supported
916 F:      drivers/perf/xgene_pmu.c
917 F:      Documentation/perf/xgene-pmu.txt
918 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
919
920 APTINA CAMERA SENSOR PLL
921 M:      Laurent Pinchart <[email protected]>
922 L:      [email protected]
923 S:      Maintained
924 F:      drivers/media/i2c/aptina-pll.*
925
926 ARC FRAMEBUFFER DRIVER
927 M:      Jaya Kumar <[email protected]>
928 S:      Maintained
929 F:      drivers/video/fbdev/arcfb.c
930 F:      drivers/video/fbdev/core/fb_defio.c
931
932 ARCNET NETWORK LAYER
933 M:      Michael Grzeschik <[email protected]>
934 L:      [email protected]
935 S:      Maintained
936 F:      drivers/net/arcnet/
937 F:      include/uapi/linux/if_arcnet.h
938
939 ARC PGU DRM DRIVER
940 M:      Alexey Brodkin <[email protected]>
941 S:      Supported
942 F:      drivers/gpu/drm/arc/
943 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
944
945 ARM ARCHITECTED TIMER DRIVER
946 M:      Mark Rutland <[email protected]>
947 M:      Marc Zyngier <[email protected]>
948 L:      [email protected] (moderated for non-subscribers)
949 S:      Maintained
950 F:      arch/arm/include/asm/arch_timer.h
951 F:      arch/arm64/include/asm/arch_timer.h
952 F:      drivers/clocksource/arm_arch_timer.c
953
954 ARM HDLCD DRM DRIVER
955 M:      Liviu Dudau <[email protected]>
956 S:      Supported
957 F:      drivers/gpu/drm/arm/hdlcd_*
958 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
959
960 ARM MALI-DP DRM DRIVER
961 M:      Liviu Dudau <[email protected]>
962 M:      Brian Starkey <[email protected]>
963 M:      Mali DP Maintainers <[email protected]>
964 S:      Supported
965 F:      drivers/gpu/drm/arm/
966 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
967
968 ARM MFM AND FLOPPY DRIVERS
969 M:      Ian Molton <[email protected]>
970 S:      Maintained
971 F:      arch/arm/lib/floppydma.S
972 F:      arch/arm/include/asm/floppy.h
973
974 ARM PMU PROFILING AND DEBUGGING
975 M:      Will Deacon <[email protected]>
976 M:      Mark Rutland <[email protected]>
977 S:      Maintained
978 L:      [email protected] (moderated for non-subscribers)
979 F:      arch/arm*/kernel/perf_*
980 F:      arch/arm/oprofile/common.c
981 F:      arch/arm*/kernel/hw_breakpoint.c
982 F:      arch/arm*/include/asm/hw_breakpoint.h
983 F:      arch/arm*/include/asm/perf_event.h
984 F:      drivers/perf/*
985 F:      include/linux/perf/arm_pmu.h
986 F:      Documentation/devicetree/bindings/arm/pmu.txt
987 F:      Documentation/devicetree/bindings/perf/
988
989 ARM PORT
990 M:      Russell King <[email protected]>
991 L:      [email protected] (moderated for non-subscribers)
992 W:      http://www.armlinux.org.uk/
993 S:      Maintained
994 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
995 F:      arch/arm/
996
997 ARM SUB-ARCHITECTURES
998 L:      [email protected] (moderated for non-subscribers)
999 S:      Maintained
1000 F:      arch/arm/mach-*/
1001 F:      arch/arm/plat-*/
1002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc.git
1003
1004 ARM PRIMECELL AACI PL041 DRIVER
1005 M:      Russell King <[email protected]>
1006 S:      Maintained
1007 F:      sound/arm/aaci.*
1008
1009 ARM PRIMECELL CLCD PL110 DRIVER
1010 M:      Russell King <[email protected]>
1011 S:      Maintained
1012 F:      drivers/video/fbdev/amba-clcd.*
1013
1014 ARM PRIMECELL KMI PL050 DRIVER
1015 M:      Russell King <[email protected]>
1016 S:      Maintained
1017 F:      drivers/input/serio/ambakmi.*
1018 F:      include/linux/amba/kmi.h
1019
1020 ARM PRIMECELL MMCI PL180/1 DRIVER
1021 M:      Russell King <[email protected]>
1022 S:      Maintained
1023 F:      drivers/mmc/host/mmci.*
1024 F:      include/linux/amba/mmci.h
1025
1026 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1027 M:      Russell King <[email protected]>
1028 S:      Maintained
1029 F:      drivers/tty/serial/amba-pl01*.c
1030 F:      include/linux/amba/serial.h
1031
1032 ARM PRIMECELL BUS SUPPORT
1033 M:      Russell King <[email protected]>
1034 S:      Maintained
1035 F:      drivers/amba/
1036 F:      include/linux/amba/bus.h
1037
1038 ARM/ADS SPHERE MACHINE SUPPORT
1039 M:      Lennert Buytenhek <[email protected]>
1040 L:      [email protected] (moderated for non-subscribers)
1041 S:      Maintained
1042
1043 ARM/AFEB9260 MACHINE SUPPORT
1044 M:      Sergey Lapin <[email protected]>
1045 L:      [email protected] (moderated for non-subscribers)
1046 S:      Maintained
1047
1048 ARM/AJECO 1ARM MACHINE SUPPORT
1049 M:      Lennert Buytenhek <[email protected]>
1050 L:      [email protected] (moderated for non-subscribers)
1051 S:      Maintained
1052
1053 ARM/Allwinner sunXi SoC support
1054 M:      Maxime Ripard <[email protected]>
1055 M:      Chen-Yu Tsai <[email protected]>
1056 L:      [email protected] (moderated for non-subscribers)
1057 S:      Maintained
1058 N:      sun[x456789]i
1059 F:      arch/arm/boot/dts/ntc-gr8*
1060 F:      arch/arm64/boot/dts/allwinner/
1061
1062 ARM/Allwinner SoC Clock Support
1063 M:      Emilio López <[email protected]>
1064 S:      Maintained
1065 F:      drivers/clk/sunxi/
1066
1067 ARM/Amlogic Meson SoC support
1068 M:      Carlo Caione <[email protected]>
1069 M:      Kevin Hilman <[email protected]>
1070 L:      [email protected] (moderated for non-subscribers)
1071 L:      [email protected]
1072 W:      http://linux-meson.com/
1073 S:      Maintained
1074 F:      arch/arm/mach-meson/
1075 F:      arch/arm/boot/dts/meson*
1076 F:      arch/arm64/boot/dts/amlogic/
1077 F:      drivers/pinctrl/meson/
1078 F:      drivers/mmc/host/meson*
1079 N:      meson
1080
1081 ARM/Annapurna Labs ALPINE ARCHITECTURE
1082 M:      Tsahee Zidenberg <[email protected]>
1083 M:      Antoine Tenart <[email protected]>
1084 L:      [email protected] (moderated for non-subscribers)
1085 S:      Maintained
1086 F:      arch/arm/mach-alpine/
1087 F:      arch/arm/boot/dts/alpine*
1088 F:      arch/arm64/boot/dts/al/
1089 F:      drivers/*/*alpine*
1090
1091 ARM/ARTPEC MACHINE SUPPORT
1092 M:      Jesper Nilsson <[email protected]>
1093 M:      Lars Persson <[email protected]>
1094 M:      Niklas Cassel <[email protected]>
1095 S:      Maintained
1096 L:      [email protected]
1097 F:      arch/arm/mach-artpec
1098 F:      arch/arm/boot/dts/artpec6*
1099 F:      drivers/clk/axis
1100 F:      drivers/pinctrl/pinctrl-artpec*
1101 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1102
1103 ARM/ASPEED MACHINE SUPPORT
1104 M:      Joel Stanley <[email protected]>
1105 S:      Maintained
1106 F:      arch/arm/mach-aspeed/
1107 F:      arch/arm/boot/dts/aspeed-*
1108 F:      drivers/*/*aspeed*
1109
1110 ARM/ATMEL AT91RM9200, AT91SAM9 AND SAMA5 SOC SUPPORT
1111 M:      Nicolas Ferre <[email protected]>
1112 M:      Alexandre Belloni <[email protected]>
1113 M:      Jean-Christophe Plagniol-Villard <[email protected]>
1114 L:      [email protected] (moderated for non-subscribers)
1115 W:      http://www.linux4sam.org
1116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nferre/linux-at91.git
1117 S:      Supported
1118 F:      arch/arm/mach-at91/
1119 F:      include/soc/at91/
1120 F:      arch/arm/boot/dts/at91*.dts
1121 F:      arch/arm/boot/dts/at91*.dtsi
1122 F:      arch/arm/boot/dts/sama*.dts
1123 F:      arch/arm/boot/dts/sama*.dtsi
1124 F:      arch/arm/include/debug/at91.S
1125
1126 ARM/ATMEL AT91 Clock Support
1127 M:      Boris Brezillon <[email protected]>
1128 S:      Maintained
1129 F:      drivers/clk/at91
1130
1131 ARM/CALXEDA HIGHBANK ARCHITECTURE
1132 M:      Rob Herring <[email protected]>
1133 L:      [email protected] (moderated for non-subscribers)
1134 S:      Maintained
1135 F:      arch/arm/mach-highbank/
1136 F:      arch/arm/boot/dts/highbank.dts
1137 F:      arch/arm/boot/dts/ecx-*.dts*
1138
1139 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1140 M:      Krzysztof Halasa <[email protected]>
1141 S:      Maintained
1142 F:      arch/arm/mach-cns3xxx/
1143
1144 ARM/CAVIUM THUNDER NETWORK DRIVER
1145 M:      Sunil Goutham <[email protected]>
1146 M:      Robert Richter <[email protected]>
1147 L:      [email protected] (moderated for non-subscribers)
1148 S:      Supported
1149 F:      drivers/net/ethernet/cavium/thunder/
1150
1151 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1152 M:      Alexander Shiyan <[email protected]>
1153 L:      [email protected] (moderated for non-subscribers)
1154 S:      Odd Fixes
1155 N:      clps711x
1156
1157 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1158 M:      Hartley Sweeten <[email protected]>
1159 M:      Ryan Mallon <[email protected]>
1160 L:      [email protected] (moderated for non-subscribers)
1161 S:      Maintained
1162 F:      arch/arm/mach-ep93xx/
1163 F:      arch/arm/mach-ep93xx/include/mach/
1164
1165 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1166 M:      Lennert Buytenhek <[email protected]>
1167 L:      [email protected] (moderated for non-subscribers)
1168 S:      Maintained
1169
1170 ARM/CLKDEV SUPPORT
1171 M:      Russell King <[email protected]>
1172 L:      [email protected] (moderated for non-subscribers)
1173 S:      Maintained
1174 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1175 F:      arch/arm/include/asm/clkdev.h
1176 F:      drivers/clk/clkdev.c
1177
1178 ARM/COMPULAB CM-X270/EM-X270 and CM-X300 MACHINE SUPPORT
1179 M:      Mike Rapoport <[email protected]>
1180 L:      [email protected] (moderated for non-subscribers)
1181 S:      Maintained
1182
1183 ARM/CONTEC MICRO9 MACHINE SUPPORT
1184 M:      Hubert Feurstein <[email protected]>
1185 S:      Maintained
1186 F:      arch/arm/mach-ep93xx/micro9.c
1187
1188 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1189 M:      Mathieu Poirier <[email protected]>
1190 L:      [email protected] (moderated for non-subscribers)
1191 S:      Maintained
1192 F:      drivers/hwtracing/coresight/*
1193 F:      Documentation/trace/coresight.txt
1194 F:      Documentation/devicetree/bindings/arm/coresight.txt
1195 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1196 F:      tools/perf/arch/arm/util/pmu.c
1197 F:      tools/perf/arch/arm/util/auxtrace.c
1198 F:      tools/perf/arch/arm/util/cs-etm.c
1199 F:      tools/perf/arch/arm/util/cs-etm.h
1200 F:      tools/perf/util/cs-etm.h
1201
1202 ARM/CORGI MACHINE SUPPORT
1203 M:      Richard Purdie <[email protected]>
1204 S:      Maintained
1205
1206 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1207 M:      Hans Ulli Kroll <[email protected]>
1208 L:      [email protected] (moderated for non-subscribers)
1209 T:      git git://github.com/ulli-kroll/linux.git
1210 S:      Maintained
1211 F:      arch/arm/mach-gemini/
1212 F:      drivers/rtc/rtc-gemini.c
1213
1214 ARM/CSR SIRFPRIMA2 MACHINE SUPPORT
1215 M:      Barry Song <[email protected]>
1216 L:      [email protected] (moderated for non-subscribers)
1217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/baohua/linux.git
1218 S:      Maintained
1219 F:      arch/arm/boot/dts/prima2*
1220 F:      arch/arm/mach-prima2/
1221 F:      drivers/clk/sirf/
1222 F:      drivers/clocksource/timer-prima2.c
1223 F:      drivers/clocksource/timer-atlas7.c
1224 N:      [^a-z]sirf
1225
1226 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1227 M:      Baruch Siach <[email protected]>
1228 L:      [email protected] (moderated for non-subscribers)
1229 S:      Maintained
1230 F:      arch/arm/boot/dts/cx92755*
1231 N:      digicolor
1232
1233 ARM/EBSA110 MACHINE SUPPORT
1234 M:      Russell King <[email protected]>
1235 L:      [email protected] (moderated for non-subscribers)
1236 W:      http://www.armlinux.org.uk/
1237 S:      Maintained
1238 F:      arch/arm/mach-ebsa110/
1239 F:      drivers/net/ethernet/amd/am79c961a.*
1240
1241 ARM/ENERGY MICRO (SILICON LABS) EFM32 SUPPORT
1242 M:      Uwe Kleine-König <[email protected]>
1243 L:      [email protected] (moderated for non-subscribers)
1244 S:      Maintained
1245 N:      efm32
1246
1247 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1248 M:      Robert Jarzmik <[email protected]>
1249 L:      [email protected] (moderated for non-subscribers)
1250 S:      Maintained
1251 F:      arch/arm/mach-pxa/ezx.c
1252
1253 ARM/FARADAY FA526 PORT
1254 M:      Hans Ulli Kroll <[email protected]>
1255 L:      [email protected] (moderated for non-subscribers)
1256 S:      Maintained
1257 T:      git git://git.berlios.de/gemini-board
1258 F:      arch/arm/mm/*-fa*
1259
1260 ARM/FOOTBRIDGE ARCHITECTURE
1261 M:      Russell King <[email protected]>
1262 L:      [email protected] (moderated for non-subscribers)
1263 W:      http://www.armlinux.org.uk/
1264 S:      Maintained
1265 F:      arch/arm/include/asm/hardware/dec21285.h
1266 F:      arch/arm/mach-footbridge/
1267
1268 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1269 M:      Shawn Guo <[email protected]>
1270 M:      Sascha Hauer <[email protected]>
1271 R:      Fabio Estevam <[email protected]>
1272 L:      [email protected] (moderated for non-subscribers)
1273 S:      Maintained
1274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1275 F:      arch/arm/mach-imx/
1276 F:      arch/arm/mach-mxs/
1277 F:      arch/arm/boot/dts/imx*
1278 F:      arch/arm/configs/imx*_defconfig
1279 F:      drivers/clk/imx/
1280 F:      include/soc/imx/
1281
1282 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1283 M:      Shawn Guo <[email protected]>
1284 M:      Sascha Hauer <[email protected]>
1285 R:      Stefan Agner <[email protected]>
1286 L:      [email protected] (moderated for non-subscribers)
1287 S:      Maintained
1288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1289 F:      arch/arm/mach-imx/*vf610*
1290 F:      arch/arm/boot/dts/vf*
1291
1292 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1293 M:      Lennert Buytenhek <[email protected]>
1294 L:      [email protected] (moderated for non-subscribers)
1295 S:      Maintained
1296
1297 ARM/GUMSTIX MACHINE SUPPORT
1298 M:      Steve Sakoman <[email protected]>
1299 L:      [email protected] (moderated for non-subscribers)
1300 S:      Maintained
1301
1302 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1303 M:      Philipp Zabel <[email protected]>
1304 M:      Paul Parsons <[email protected]>
1305 L:      [email protected] (moderated for non-subscribers)
1306 S:      Maintained
1307 F:      arch/arm/mach-pxa/hx4700.c
1308 F:      arch/arm/mach-pxa/include/mach/hx4700.h
1309 F:      sound/soc/pxa/hx4700.c
1310
1311 ARM/HISILICON SOC SUPPORT
1312 M:      Wei Xu <[email protected]>
1313 L:      [email protected] (moderated for non-subscribers)
1314 W:      http://www.hisilicon.com
1315 S:      Supported
1316 T:      git git://github.com/hisilicon/linux-hisi.git
1317 F:      arch/arm/mach-hisi/
1318 F:      arch/arm/boot/dts/hi3*
1319 F:      arch/arm/boot/dts/hip*
1320 F:      arch/arm/boot/dts/hisi*
1321 F:      arch/arm64/boot/dts/hisilicon/
1322
1323 ARM/HP JORNADA 7XX MACHINE SUPPORT
1324 M:      Kristoffer Ericson <[email protected]>
1325 W:      www.jlime.com
1326 S:      Maintained
1327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
1328 F:      arch/arm/mach-sa1100/jornada720.c
1329 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
1330
1331 ARM/IGEP MACHINE SUPPORT
1332 M:      Enric Balletbo i Serra <[email protected]>
1333 M:      Javier Martinez Canillas <[email protected]>
1334 L:      [email protected]
1335 L:      [email protected] (moderated for non-subscribers)
1336 S:      Maintained
1337 F:      arch/arm/boot/dts/omap3-igep*
1338
1339 ARM/INCOME PXA270 SUPPORT
1340 M:      Marek Vasut <[email protected]>
1341 L:      [email protected] (moderated for non-subscribers)
1342 S:      Maintained
1343 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
1344
1345 ARM/INTEL IOP32X ARM ARCHITECTURE
1346 M:      Lennert Buytenhek <[email protected]>
1347 L:      [email protected] (moderated for non-subscribers)
1348 S:      Maintained
1349
1350 ARM/INTEL IOP33X ARM ARCHITECTURE
1351 L:      [email protected] (moderated for non-subscribers)
1352 S:      Orphan
1353
1354 ARM/INTEL IOP13XX ARM ARCHITECTURE
1355 M:      Lennert Buytenhek <[email protected]>
1356 L:      [email protected] (moderated for non-subscribers)
1357 S:      Maintained
1358
1359 ARM/INTEL IQ81342EX MACHINE SUPPORT
1360 M:      Lennert Buytenhek <[email protected]>
1361 L:      [email protected] (moderated for non-subscribers)
1362 S:      Maintained
1363
1364 ARM/INTEL IXDP2850 MACHINE SUPPORT
1365 M:      Lennert Buytenhek <[email protected]>
1366 L:      [email protected] (moderated for non-subscribers)
1367 S:      Maintained
1368
1369 ARM/INTEL IXP4XX ARM ARCHITECTURE
1370 M:      Imre Kaloz <[email protected]>
1371 M:      Krzysztof Halasa <[email protected]>
1372 L:      [email protected] (moderated for non-subscribers)
1373 S:      Maintained
1374 F:      arch/arm/mach-ixp4xx/
1375
1376 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
1377 M:      Jonathan Cameron <[email protected]>
1378 L:      [email protected] (moderated for non-subscribers)
1379 S:      Maintained
1380 F:      arch/arm/mach-pxa/stargate2.c
1381 F:      drivers/pcmcia/pxa2xx_stargate2.c
1382
1383 ARM/INTEL XSC3 (MANZANO) ARM CORE
1384 M:      Lennert Buytenhek <[email protected]>
1385 L:      [email protected] (moderated for non-subscribers)
1386 S:      Maintained
1387
1388 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
1389 M:      Lennert Buytenhek <[email protected]>
1390 L:      [email protected] (moderated for non-subscribers)
1391 S:      Maintained
1392
1393 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
1394 M:      Santosh Shilimkar <[email protected]>
1395 L:      [email protected] (moderated for non-subscribers)
1396 S:      Maintained
1397 F:      arch/arm/mach-keystone/
1398 F:      arch/arm/boot/dts/keystone-*
1399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
1400
1401 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
1402 M:      Santosh Shilimkar <[email protected]>
1403 L:      [email protected]
1404 S:      Maintained
1405 F:      drivers/clk/keystone/
1406
1407 ARM/TEXAS INSTRUMENT KEYSTONE ClOCKSOURCE
1408 M:      Santosh Shilimkar <[email protected]>
1409 L:      [email protected] (moderated for non-subscribers)
1410 L:      [email protected]
1411 S:      Maintained
1412 F:      drivers/clocksource/timer-keystone.c
1413
1414 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
1415 M:      Santosh Shilimkar <[email protected]>
1416 L:      [email protected]
1417 S:      Maintained
1418 F:      drivers/power/reset/keystone-reset.c
1419
1420 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
1421 M:      Santosh Shilimkar <[email protected]>
1422 L:      [email protected]
1423 S:      Maintained
1424 F:      drivers/memory/*emif*
1425
1426 ARM/LG1K ARCHITECTURE
1427 M:      Chanho Min <[email protected]>
1428 L:      [email protected] (moderated for non-subscribers)
1429 S:      Maintained
1430 F:      arch/arm64/boot/dts/lg/
1431
1432 ARM/LOGICPD PXA270 MACHINE SUPPORT
1433 M:      Lennert Buytenhek <[email protected]>
1434 L:      [email protected] (moderated for non-subscribers)
1435 S:      Maintained
1436
1437 ARM/LPC18XX ARCHITECTURE
1438 M:      Joachim Eastwood <[email protected]>
1439 L:      [email protected] (moderated for non-subscribers)
1440 S:      Maintained
1441 F:      arch/arm/boot/dts/lpc43*
1442 F:      drivers/clk/nxp/clk-lpc18xx*
1443 F:      drivers/clocksource/time-lpc32xx.c
1444 F:      drivers/i2c/busses/i2c-lpc2k.c
1445 F:      drivers/memory/pl172.c
1446 F:      drivers/mtd/spi-nor/nxp-spifi.c
1447 F:      drivers/rtc/rtc-lpc24xx.c
1448 N:      lpc18xx
1449
1450 ARM/LPC32XX SOC SUPPORT
1451 M:      Vladimir Zapolskiy <[email protected]>
1452 M:      Sylvain Lemieux <[email protected]>
1453 L:      [email protected] (moderated for non-subscribers)
1454 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
1455 S:      Maintained
1456 F:      arch/arm/boot/dts/lpc32*
1457 F:      arch/arm/mach-lpc32xx/
1458 F:      drivers/i2c/busses/i2c-pnx.c
1459 F:      drivers/net/ethernet/nxp/lpc_eth.c
1460 F:      drivers/usb/host/ohci-nxp.c
1461 F:      drivers/watchdog/pnx4008_wdt.c
1462 N:      lpc32xx
1463
1464 ARM/MAGICIAN MACHINE SUPPORT
1465 M:      Philipp Zabel <[email protected]>
1466 S:      Maintained
1467
1468 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K SOC support
1469 M:      Jason Cooper <[email protected]>
1470 M:      Andrew Lunn <[email protected]>
1471 M:      Gregory Clement <[email protected]>
1472 M:      Sebastian Hesselbarth <[email protected]>
1473 L:      [email protected] (moderated for non-subscribers)
1474 S:      Maintained
1475 F:      arch/arm/mach-mvebu/
1476 F:      drivers/rtc/rtc-armada38x.c
1477 F:      arch/arm/boot/dts/armada*
1478 F:      arch/arm/boot/dts/kirkwood*
1479 F:      arch/arm64/boot/dts/marvell/armada*
1480 F:      drivers/cpufreq/mvebu-cpufreq.c
1481 F:      arch/arm/configs/mvebu_*_defconfig
1482
1483 ARM/Marvell Berlin SoC support
1484 M:      Jisheng Zhang <[email protected]>
1485 M:      Sebastian Hesselbarth <[email protected]>
1486 L:      [email protected] (moderated for non-subscribers)
1487 S:      Maintained
1488 F:      arch/arm/mach-berlin/
1489 F:      arch/arm/boot/dts/berlin*
1490 F:      arch/arm64/boot/dts/marvell/berlin*
1491
1492
1493 ARM/Marvell Dove/MV78xx0/Orion SOC support
1494 M:      Jason Cooper <[email protected]>
1495 M:      Andrew Lunn <[email protected]>
1496 M:      Sebastian Hesselbarth <[email protected]>
1497 M:      Gregory Clement <[email protected]>
1498 L:      [email protected] (moderated for non-subscribers)
1499 S:      Maintained
1500 F:      arch/arm/mach-dove/
1501 F:      arch/arm/mach-mv78xx0/
1502 F:      arch/arm/mach-orion5x/
1503 F:      arch/arm/plat-orion/
1504 F:      arch/arm/boot/dts/dove*
1505 F:      arch/arm/boot/dts/orion5x*
1506
1507
1508 ARM/Orion SoC/Technologic Systems TS-78xx platform support
1509 M:      Alexander Clouter <[email protected]>
1510 L:      [email protected] (moderated for non-subscribers)
1511 W:      http://www.digriz.org.uk/ts78xx/kernel
1512 S:      Maintained
1513 F:      arch/arm/mach-orion5x/ts78xx-*
1514
1515 ARM/OXNAS platform support
1516 M:      Neil Armstrong <[email protected]>
1517 L:      [email protected] (moderated for non-subscribers)
1518 L:      [email protected] (moderated for non-subscribers)
1519 S:      Maintained
1520 F:      arch/arm/mach-oxnas/
1521 F:      arch/arm/boot/dts/ox8*.dtsi
1522 F:      arch/arm/boot/dts/wd-mbwe.dts
1523 F:      arch/arm/boot/dts/cloudengines-pogoplug-series-3.dts
1524 N:      oxnas
1525
1526 ARM/Mediatek RTC DRIVER
1527 M:      Eddie Huang <[email protected]>
1528 L:      [email protected] (moderated for non-subscribers)
1529 L:      [email protected] (moderated for non-subscribers)
1530 S:      Maintained
1531 F:      drivers/rtc/rtc-mt6397.c
1532
1533 ARM/Mediatek SoC support
1534 M:      Matthias Brugger <[email protected]>
1535 L:      [email protected] (moderated for non-subscribers)
1536 L:      [email protected] (moderated for non-subscribers)
1537 S:      Maintained
1538 F:      arch/arm/boot/dts/mt6*
1539 F:      arch/arm/boot/dts/mt7*
1540 F:      arch/arm/boot/dts/mt8*
1541 F:      arch/arm/mach-mediatek/
1542 F:      arch/arm64/boot/dts/mediatek/
1543 N:      mtk
1544 K:      mediatek
1545
1546 ARM/Mediatek USB3 PHY DRIVER
1547 M:      Chunfeng Yun <[email protected]>
1548 L:      [email protected] (moderated for non-subscribers)
1549 L:      [email protected] (moderated for non-subscribers)
1550 S:      Maintained
1551 F:      drivers/phy/phy-mt65xx-usb3.c
1552
1553 ARM/MICREL KS8695 ARCHITECTURE
1554 M:      Greg Ungerer <[email protected]>
1555 L:      [email protected] (moderated for non-subscribers)
1556 F:      arch/arm/mach-ks8695/
1557 S:      Odd Fixes
1558
1559 ARM/MIOA701 MACHINE SUPPORT
1560 M:      Robert Jarzmik <[email protected]>
1561 L:      [email protected] (moderated for non-subscribers)
1562 F:      arch/arm/mach-pxa/mioa701.c
1563 S:      Maintained
1564
1565 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
1566 M:      Michael Petchkovsky <[email protected]>
1567 S:      Maintained
1568
1569 ARM/NOMADIK ARCHITECTURE
1570 M:      Alessandro Rubini <[email protected]>
1571 M:      Linus Walleij <[email protected]>
1572 L:      [email protected] (moderated for non-subscribers)
1573 S:      Maintained
1574 F:      arch/arm/mach-nomadik/
1575 F:      drivers/pinctrl/nomadik/
1576 F:      drivers/i2c/busses/i2c-nomadik.c
1577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
1578
1579 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
1580 M:      Nelson Castillo <[email protected]>
1581 L:      [email protected] (subscribers-only)
1582 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
1583 S:      Supported
1584
1585 ARM/TOSA MACHINE SUPPORT
1586 M:      Dmitry Eremin-Solenikov <[email protected]>
1587 M:      Dirk Opfer <[email protected]>
1588 S:      Maintained
1589
1590 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
1591 M:      Marek Vasut <[email protected]>
1592 L:      [email protected]
1593 W:      http://hackndev.com
1594 S:      Maintained
1595 F:      arch/arm/mach-pxa/include/mach/palmtx.h
1596 F:      arch/arm/mach-pxa/palmtx.c
1597 F:      arch/arm/mach-pxa/include/mach/palmt5.h
1598 F:      arch/arm/mach-pxa/palmt5.c
1599 F:      arch/arm/mach-pxa/include/mach/palmld.h
1600 F:      arch/arm/mach-pxa/palmld.c
1601 F:      arch/arm/mach-pxa/include/mach/palmte2.h
1602 F:      arch/arm/mach-pxa/palmte2.c
1603 F:      arch/arm/mach-pxa/include/mach/palmtc.h
1604 F:      arch/arm/mach-pxa/palmtc.c
1605
1606 ARM/PALM TREO SUPPORT
1607 M:      Tomas Cech <[email protected]>
1608 L:      [email protected]
1609 W:      http://hackndev.com
1610 S:      Maintained
1611 F:      arch/arm/mach-pxa/include/mach/palmtreo.h
1612 F:      arch/arm/mach-pxa/palmtreo.c
1613
1614 ARM/PALMZ72 SUPPORT
1615 M:      Sergey Lapin <[email protected]>
1616 L:      [email protected]
1617 W:      http://hackndev.com
1618 S:      Maintained
1619 F:      arch/arm/mach-pxa/include/mach/palmz72.h
1620 F:      arch/arm/mach-pxa/palmz72.c
1621
1622 ARM/PLEB SUPPORT
1623 M:      Peter Chubb <[email protected]>
1624 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
1625 S:      Maintained
1626
1627 ARM/PT DIGITAL BOARD PORT
1628 M:      Stefan Eletzhofer <[email protected]>
1629 L:      [email protected] (moderated for non-subscribers)
1630 W:      http://www.armlinux.org.uk/
1631 S:      Maintained
1632
1633 ARM/QUALCOMM SUPPORT
1634 M:      Andy Gross <[email protected]>
1635 M:      David Brown <[email protected]>
1636 L:      [email protected]
1637 L:      [email protected]
1638 S:      Maintained
1639 F:      Documentation/devicetree/bindings/soc/qcom/
1640 F:      arch/arm/boot/dts/qcom-*.dts
1641 F:      arch/arm/boot/dts/qcom-*.dtsi
1642 F:      arch/arm/mach-qcom/
1643 F:      arch/arm64/boot/dts/qcom/*
1644 F:      drivers/i2c/busses/i2c-qup.c
1645 F:      drivers/clk/qcom/
1646 F:      drivers/pinctrl/qcom/
1647 F:      drivers/dma/qcom/
1648 F:      drivers/soc/qcom/
1649 F:      drivers/spi/spi-qup.c
1650 F:      drivers/tty/serial/msm_serial.h
1651 F:      drivers/tty/serial/msm_serial.c
1652 F:      drivers/*/pm8???-*
1653 F:      drivers/mfd/ssbi.c
1654 F:      drivers/firmware/qcom_scm.c
1655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux.git
1656
1657 ARM/RADISYS ENP2611 MACHINE SUPPORT
1658 M:      Lennert Buytenhek <[email protected]>
1659 L:      [email protected] (moderated for non-subscribers)
1660 S:      Maintained
1661
1662 ARM/RENESAS ARM64 ARCHITECTURE
1663 M:      Simon Horman <[email protected]>
1664 M:      Magnus Damm <[email protected]>
1665 L:      [email protected]
1666 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1668 S:      Supported
1669 F:      arch/arm64/boot/dts/renesas/
1670 F:      drivers/soc/renesas/
1671 F:      include/linux/soc/renesas/
1672
1673 ARM/RISCPC ARCHITECTURE
1674 M:      Russell King <[email protected]>
1675 L:      [email protected] (moderated for non-subscribers)
1676 W:      http://www.armlinux.org.uk/
1677 S:      Maintained
1678 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
1679 F:      arch/arm/include/asm/hardware/ioc.h
1680 F:      arch/arm/include/asm/hardware/iomd.h
1681 F:      arch/arm/include/asm/hardware/memc.h
1682 F:      arch/arm/mach-rpc/
1683 F:      drivers/net/ethernet/8390/etherh.c
1684 F:      drivers/net/ethernet/i825xx/ether1*
1685 F:      drivers/net/ethernet/seeq/ether3*
1686 F:      drivers/scsi/arm/
1687
1688 ARM/Rockchip SoC support
1689 M:      Heiko Stuebner <[email protected]>
1690 L:      [email protected] (moderated for non-subscribers)
1691 L:      [email protected]
1692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
1693 S:      Maintained
1694 F:      arch/arm/boot/dts/rk3*
1695 F:      arch/arm/mach-rockchip/
1696 F:      drivers/clk/rockchip/
1697 F:      drivers/i2c/busses/i2c-rk3x.c
1698 F:      drivers/*/*rockchip*
1699 F:      drivers/*/*/*rockchip*
1700 F:      sound/soc/rockchip/
1701 N:      rockchip
1702
1703 ARM/SAMSUNG EXYNOS ARM ARCHITECTURES
1704 M:      Kukjin Kim <[email protected]>
1705 M:      Krzysztof Kozlowski <[email protected]>
1706 R:      Javier Martinez Canillas <[email protected]>
1707 L:      [email protected] (moderated for non-subscribers)
1708 L:      [email protected] (moderated for non-subscribers)
1709 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
1710 S:      Maintained
1711 F:      arch/arm/boot/dts/s3c*
1712 F:      arch/arm/boot/dts/s5p*
1713 F:      arch/arm/boot/dts/samsung*
1714 F:      arch/arm/boot/dts/exynos*
1715 F:      arch/arm64/boot/dts/exynos/
1716 F:      arch/arm/plat-samsung/
1717 F:      arch/arm/mach-s3c24*/
1718 F:      arch/arm/mach-s3c64xx/
1719 F:      arch/arm/mach-s5p*/
1720 F:      arch/arm/mach-exynos*/
1721 F:      drivers/*/*s3c24*
1722 F:      drivers/*/*/*s3c24*
1723 F:      drivers/*/*s3c64xx*
1724 F:      drivers/*/*s5pv210*
1725 F:      drivers/memory/samsung/*
1726 F:      drivers/soc/samsung/*
1727 F:      Documentation/arm/Samsung/
1728 F:      Documentation/devicetree/bindings/arm/samsung/
1729 F:      Documentation/devicetree/bindings/sram/samsung-sram.txt
1730 F:      Documentation/devicetree/bindings/power/pd-samsung.txt
1731 N:      exynos
1732
1733 ARM/SAMSUNG MOBILE MACHINE SUPPORT
1734 M:      Kyungmin Park <[email protected]>
1735 L:      [email protected] (moderated for non-subscribers)
1736 S:      Maintained
1737 F:      arch/arm/mach-s5pv210/
1738
1739 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
1740 M:      Kyungmin Park <[email protected]>
1741 M:      Kamil Debski <[email protected]>
1742 M:      Andrzej Hajda <[email protected]>
1743 L:      [email protected]
1744 L:      [email protected]
1745 S:      Maintained
1746 F:      drivers/media/platform/s5p-g2d/
1747
1748 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
1749 M:      Kyungmin Park <[email protected]>
1750 M:      Kamil Debski <[email protected]>
1751 M:      Jeongtae Park <[email protected]>
1752 M:      Andrzej Hajda <[email protected]>
1753 L:      [email protected]
1754 L:      [email protected]
1755 S:      Maintained
1756 F:      arch/arm/plat-samsung/s5p-dev-mfc.c
1757 F:      drivers/media/platform/s5p-mfc/
1758
1759 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
1760 M:      Kyungmin Park <[email protected]>
1761 L:      [email protected]
1762 L:      [email protected]
1763 S:      Maintained
1764 F:      drivers/staging/media/platform/s5p-cec/
1765
1766 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
1767 M:      Andrzej Pietrasiewicz <[email protected]>
1768 M:      Jacek Anaszewski <[email protected]>
1769 L:      [email protected]
1770 L:      [email protected]
1771 S:      Maintained
1772 F:      drivers/media/platform/s5p-jpeg/
1773
1774 ARM/SHMOBILE ARM ARCHITECTURE
1775 M:      Simon Horman <[email protected]>
1776 M:      Magnus Damm <[email protected]>
1777 L:      [email protected]
1778 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
1779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git next
1780 S:      Supported
1781 F:      arch/arm/boot/dts/emev2*
1782 F:      arch/arm/boot/dts/r7s*
1783 F:      arch/arm/boot/dts/r8a*
1784 F:      arch/arm/boot/dts/sh*
1785 F:      arch/arm/configs/shmobile_defconfig
1786 F:      arch/arm/include/debug/renesas-scif.S
1787 F:      arch/arm/mach-shmobile/
1788 F:      drivers/soc/renesas/
1789 F:      include/linux/soc/renesas/
1790
1791 ARM/SOCFPGA ARCHITECTURE
1792 M:      Dinh Nguyen <[email protected]>
1793 S:      Maintained
1794 F:      arch/arm/mach-socfpga/
1795 F:      arch/arm/boot/dts/socfpga*
1796 F:      arch/arm/configs/socfpga_defconfig
1797 F:      arch/arm64/boot/dts/altera/
1798 W:      http://www.rocketboards.org
1799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
1800
1801 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
1802 M:      Dinh Nguyen <[email protected]>
1803 S:      Maintained
1804 F:      drivers/clk/socfpga/
1805
1806 ARM/SOCFPGA EDAC SUPPORT
1807 M:      Thor Thayer <[email protected]>
1808 S:      Maintained
1809 F:      drivers/edac/altera_edac.
1810
1811 ARM/STI ARCHITECTURE
1812 M:      Patrice Chotard <[email protected]>
1813 L:      [email protected] (moderated for non-subscribers)
1814 L:      [email protected]
1815 W:      http://www.stlinux.com
1816 S:      Maintained
1817 F:      arch/arm/mach-sti/
1818 F:      arch/arm/boot/dts/sti*
1819 F:      drivers/char/hw_random/st-rng.c
1820 F:      drivers/clocksource/arm_global_timer.c
1821 F:      drivers/clocksource/clksrc_st_lpc.c
1822 F:      drivers/cpufreq/sti-cpufreq.c
1823 F:      drivers/dma/st_fdma*
1824 F:      drivers/i2c/busses/i2c-st.c
1825 F:      drivers/media/rc/st_rc.c
1826 F:      drivers/media/platform/sti/c8sectpfe/
1827 F:      drivers/mmc/host/sdhci-st.c
1828 F:      drivers/phy/phy-miphy28lp.c
1829 F:      drivers/phy/phy-stih407-usb.c
1830 F:      drivers/pinctrl/pinctrl-st.c
1831 F:      drivers/remoteproc/st_remoteproc.c
1832 F:      drivers/remoteproc/st_slim_rproc.c
1833 F:      drivers/reset/sti/
1834 F:      drivers/rtc/rtc-st-lpc.c
1835 F:      drivers/tty/serial/st-asc.c
1836 F:      drivers/usb/dwc3/dwc3-st.c
1837 F:      drivers/usb/host/ehci-st.c
1838 F:      drivers/usb/host/ohci-st.c
1839 F:      drivers/watchdog/st_lpc_wdt.c
1840 F:      drivers/ata/ahci_st.c
1841 F:      include/linux/remoteproc/st_slim_rproc.h
1842
1843 ARM/STM32 ARCHITECTURE
1844 M:      Maxime Coquelin <[email protected]>
1845 M:      Alexandre Torgue <[email protected]>
1846 L:      [email protected] (moderated for non-subscribers)
1847 S:      Maintained
1848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcoquelin/stm32.git
1849 N:      stm32
1850 F:      drivers/clocksource/armv7m_systick.c
1851
1852 ARM/TANGO ARCHITECTURE
1853 M:      Marc Gonzalez <[email protected]>
1854 L:      [email protected]
1855 S:      Maintained
1856 N:      tango
1857
1858 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
1859 M:      Lennert Buytenhek <[email protected]>
1860 L:      [email protected] (moderated for non-subscribers)
1861 S:      Maintained
1862
1863 ARM/TETON BGA MACHINE SUPPORT
1864 M:      "Mark F. Brown" <[email protected]>
1865 L:      [email protected] (moderated for non-subscribers)
1866 S:      Maintained
1867
1868 ARM/THECUS N2100 MACHINE SUPPORT
1869 M:      Lennert Buytenhek <[email protected]>
1870 L:      [email protected] (moderated for non-subscribers)
1871 S:      Maintained
1872
1873 ARM/NUVOTON W90X900 ARM ARCHITECTURE
1874 M:      Wan ZongShun <[email protected]>
1875 L:      [email protected] (moderated for non-subscribers)
1876 W:      http://www.mcuos.com
1877 S:      Maintained
1878 F:      arch/arm/mach-w90x900/
1879 F:      drivers/input/keyboard/w90p910_keypad.c
1880 F:      drivers/input/touchscreen/w90p910_ts.c
1881 F:      drivers/watchdog/nuc900_wdt.c
1882 F:      drivers/net/ethernet/nuvoton/w90p910_ether.c
1883 F:      drivers/mtd/nand/nuc900_nand.c
1884 F:      drivers/rtc/rtc-nuc900.c
1885 F:      drivers/spi/spi-nuc900.c
1886 F:      drivers/usb/host/ehci-w90x900.c
1887 F:      drivers/video/fbdev/nuc900fb.c
1888
1889 ARM/U300 MACHINE SUPPORT
1890 M:      Linus Walleij <[email protected]>
1891 L:      [email protected] (moderated for non-subscribers)
1892 S:      Supported
1893 F:      arch/arm/mach-u300/
1894 F:      drivers/clocksource/timer-u300.c
1895 F:      drivers/i2c/busses/i2c-stu300.c
1896 F:      drivers/rtc/rtc-coh901331.c
1897 F:      drivers/watchdog/coh901327_wdt.c
1898 F:      drivers/dma/coh901318*
1899 F:      drivers/mfd/ab3100*
1900 F:      drivers/rtc/rtc-ab3100.c
1901 F:      drivers/rtc/rtc-coh901331.c
1902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1903
1904 ARM/UNIPHIER ARCHITECTURE
1905 M:      Masahiro Yamada <[email protected]>
1906 L:      [email protected] (moderated for non-subscribers)
1907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-uniphier.git
1908 S:      Maintained
1909 F:      arch/arm/boot/dts/uniphier*
1910 F:      arch/arm/include/asm/hardware/cache-uniphier.h
1911 F:      arch/arm/mach-uniphier/
1912 F:      arch/arm/mm/cache-uniphier.c
1913 F:      arch/arm64/boot/dts/socionext/
1914 F:      drivers/bus/uniphier-system-bus.c
1915 F:      drivers/clk/uniphier/
1916 F:      drivers/i2c/busses/i2c-uniphier*
1917 F:      drivers/pinctrl/uniphier/
1918 F:      drivers/reset/reset-uniphier.c
1919 F:      drivers/tty/serial/8250/8250_uniphier.c
1920 N:      uniphier
1921
1922 ARM/Ux500 ARM ARCHITECTURE
1923 M:      Linus Walleij <[email protected]>
1924 L:      [email protected] (moderated for non-subscribers)
1925 S:      Maintained
1926 F:      arch/arm/mach-ux500/
1927 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
1928 F:      drivers/dma/ste_dma40*
1929 F:      drivers/hwspinlock/u8500_hsem.c
1930 F:      drivers/mfd/abx500*
1931 F:      drivers/mfd/ab8500*
1932 F:      drivers/mfd/dbx500*
1933 F:      drivers/mfd/db8500*
1934 F:      drivers/pinctrl/nomadik/pinctrl-ab*
1935 F:      drivers/pinctrl/nomadik/pinctrl-nomadik*
1936 F:      drivers/rtc/rtc-ab8500.c
1937 F:      drivers/rtc/rtc-pl031.c
1938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-stericsson.git
1939
1940 ARM/Ux500 CLOCK FRAMEWORK SUPPORT
1941 M:      Ulf Hansson <[email protected]>
1942 L:      [email protected] (moderated for non-subscribers)
1943 T:      git git://git.linaro.org/people/ulfh/clk.git
1944 S:      Maintained
1945 F:      drivers/clk/ux500/
1946
1947 ARM/VERSATILE EXPRESS PLATFORM
1948 M:      Liviu Dudau <[email protected]>
1949 M:      Sudeep Holla <[email protected]>
1950 M:      Lorenzo Pieralisi <[email protected]>
1951 L:      [email protected] (moderated for non-subscribers)
1952 S:      Maintained
1953 F:      arch/arm/boot/dts/vexpress*
1954 F:      arch/arm64/boot/dts/arm/
1955 F:      arch/arm/mach-vexpress/
1956 F:      */*/vexpress*
1957 F:      */*/*/vexpress*
1958 F:      drivers/clk/versatile/clk-vexpress-osc.c
1959 F:      drivers/clocksource/versatile.c
1960 N:      mps2
1961
1962 ARM/VFP SUPPORT
1963 M:      Russell King <[email protected]>
1964 L:      [email protected] (moderated for non-subscribers)
1965 W:      http://www.armlinux.org.uk/
1966 S:      Maintained
1967 F:      arch/arm/vfp/
1968
1969 ARM/VOIPAC PXA270 SUPPORT
1970 M:      Marek Vasut <[email protected]>
1971 L:      [email protected] (moderated for non-subscribers)
1972 S:      Maintained
1973 F:      arch/arm/mach-pxa/vpac270.c
1974 F:      arch/arm/mach-pxa/include/mach/vpac270.h
1975
1976 ARM/VT8500 ARM ARCHITECTURE
1977 M:      Tony Prisk <[email protected]>
1978 L:      [email protected] (moderated for non-subscribers)
1979 S:      Maintained
1980 F:      arch/arm/mach-vt8500/
1981 F:      drivers/clocksource/vt8500_timer.c
1982 F:      drivers/i2c/busses/i2c-wmt.c
1983 F:      drivers/mmc/host/wmt-sdmmc.c
1984 F:      drivers/pwm/pwm-vt8500.c
1985 F:      drivers/rtc/rtc-vt8500.c
1986 F:      drivers/tty/serial/vt8500_serial.c
1987 F:      drivers/usb/host/ehci-platform.c
1988 F:      drivers/usb/host/uhci-platform.c
1989 F:      drivers/video/fbdev/vt8500lcdfb.*
1990 F:      drivers/video/fbdev/wm8505fb*
1991 F:      drivers/video/fbdev/wmt_ge_rops.*
1992
1993 ARM/ZIPIT Z2 SUPPORT
1994 M:      Marek Vasut <[email protected]>
1995 L:      [email protected] (moderated for non-subscribers)
1996 S:      Maintained
1997 F:      arch/arm/mach-pxa/z2.c
1998 F:      arch/arm/mach-pxa/include/mach/z2.h
1999
2000 ARM/ZTE ARCHITECTURE
2001 M:      Jun Nie <[email protected]>
2002 M:      Baoyou Xie <[email protected]>
2003 L:      [email protected] (moderated for non-subscribers)
2004 S:      Maintained
2005 F:      arch/arm/mach-zx/
2006 F:      drivers/clk/zte/
2007 F:      drivers/reset/reset-zx2967.c
2008 F:      drivers/soc/zte/
2009 F:      Documentation/devicetree/bindings/arm/zte.txt
2010 F:      Documentation/devicetree/bindings/clock/zx296702-clk.txt
2011 F:      Documentation/devicetree/bindings/reset/zte,zx2967-reset.txt
2012 F:      Documentation/devicetree/bindings/soc/zte/
2013 F:      include/dt-bindings/soc/zx*.h
2014
2015 ARM/ZYNQ ARCHITECTURE
2016 M:      Michal Simek <[email protected]>
2017 R:      Sören Brinkmann <[email protected]>
2018 L:      [email protected] (moderated for non-subscribers)
2019 W:      http://wiki.xilinx.com
2020 T:      git https://github.com/Xilinx/linux-xlnx.git
2021 S:      Supported
2022 F:      arch/arm/mach-zynq/
2023 F:      drivers/cpuidle/cpuidle-zynq.c
2024 F:      drivers/block/xsysace.c
2025 N:      zynq
2026 N:      xilinx
2027 F:      drivers/clocksource/cadence_ttc_timer.c
2028 F:      drivers/i2c/busses/i2c-cadence.c
2029 F:      drivers/mmc/host/sdhci-of-arasan.c
2030 F:      drivers/edac/synopsys_edac.c
2031
2032 ARM SMMU DRIVERS
2033 M:      Will Deacon <[email protected]>
2034 R:      Robin Murphy <[email protected]>
2035 L:      [email protected] (moderated for non-subscribers)
2036 S:      Maintained
2037 F:      drivers/iommu/arm-smmu.c
2038 F:      drivers/iommu/arm-smmu-v3.c
2039 F:      drivers/iommu/io-pgtable-arm.c
2040 F:      drivers/iommu/io-pgtable-arm-v7s.c
2041
2042 ARM64 PORT (AARCH64 ARCHITECTURE)
2043 M:      Catalin Marinas <[email protected]>
2044 M:      Will Deacon <[email protected]>
2045 L:      [email protected] (moderated for non-subscribers)
2046 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2047 S:      Maintained
2048 F:      arch/arm64/
2049 F:      Documentation/arm64/
2050
2051 AS3645A LED FLASH CONTROLLER DRIVER
2052 M:      Laurent Pinchart <[email protected]>
2053 L:      [email protected]
2054 T:      git git://linuxtv.org/media_tree.git
2055 S:      Maintained
2056 F:      drivers/media/i2c/as3645a.c
2057 F:      include/media/i2c/as3645a.h
2058
2059 ASAHI KASEI AK8974 DRIVER
2060 M:      Linus Walleij <[email protected]>
2061 L:      [email protected]
2062 W:      http://www.akm.com/
2063 S:      Supported
2064 F:      drivers/iio/magnetometer/ak8974.c
2065
2066 ASC7621 HARDWARE MONITOR DRIVER
2067 M:      George Joseph <[email protected]>
2068 L:      [email protected]
2069 S:      Maintained
2070 F:      Documentation/hwmon/asc7621
2071 F:      drivers/hwmon/asc7621.c
2072
2073 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2074 M:      Corentin Chary <[email protected]>
2075 L:      [email protected]
2076 L:      [email protected]
2077 W:      http://acpi4asus.sf.net
2078 S:      Maintained
2079 F:      drivers/platform/x86/asus*.c
2080 F:      drivers/platform/x86/eeepc*.c
2081
2082 ASUS WIRELESS RADIO CONTROL DRIVER
2083 M:      João Paulo Rechi Vita <[email protected]>
2084 L:      [email protected]
2085 S:      Maintained
2086 F:      drivers/platform/x86/asus-wireless.c
2087
2088 ASYMMETRIC KEYS
2089 M:      David Howells <[email protected]>
2090 L:      [email protected]
2091 S:      Maintained
2092 F:      Documentation/crypto/asymmetric-keys.txt
2093 F:      include/linux/verification.h
2094 F:      include/crypto/public_key.h
2095 F:      include/crypto/pkcs7.h
2096 F:      crypto/asymmetric_keys/
2097
2098 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2099 R:      Dan Williams <[email protected]>
2100 W:      http://sourceforge.net/projects/xscaleiop
2101 S:      Odd fixes
2102 F:      Documentation/crypto/async-tx-api.txt
2103 F:      crypto/async_tx/
2104 F:      drivers/dma/
2105 F:      include/linux/dmaengine.h
2106 F:      include/linux/async_tx.h
2107
2108 AT24 EEPROM DRIVER
2109 M:      Wolfram Sang <[email protected]>
2110 L:      [email protected]
2111 S:      Maintained
2112 F:      drivers/misc/eeprom/at24.c
2113 F:      include/linux/platform_data/at24.h
2114
2115 ATA OVER ETHERNET (AOE) DRIVER
2116 M:      "Ed L. Cashin" <[email protected]>
2117 W:      http://www.openaoe.org/
2118 S:      Supported
2119 F:      Documentation/aoe/
2120 F:      drivers/block/aoe/
2121
2122 ATHEROS 71XX/9XXX GPIO DRIVER
2123 M:      Alban Bedel <[email protected]>
2124 W:      https://github.com/AlbanBedel/linux
2125 T:      git git://github.com/AlbanBedel/linux
2126 S:      Maintained
2127 F:      drivers/gpio/gpio-ath79.c
2128 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
2129
2130 ATHEROS ATH GENERIC UTILITIES
2131 M:      "Luis R. Rodriguez" <[email protected]>
2132 L:      [email protected]
2133 S:      Supported
2134 F:      drivers/net/wireless/ath/*
2135
2136 ATHEROS ATH5K WIRELESS DRIVER
2137 M:      Jiri Slaby <[email protected]>
2138 M:      Nick Kossifidis <[email protected]>
2139 M:      "Luis R. Rodriguez" <[email protected]>
2140 L:      [email protected]
2141 W:      http://wireless.kernel.org/en/users/Drivers/ath5k
2142 S:      Maintained
2143 F:      drivers/net/wireless/ath/ath5k/
2144
2145 ATHEROS ATH6KL WIRELESS DRIVER
2146 M:      Kalle Valo <[email protected]>
2147 L:      [email protected]
2148 W:      http://wireless.kernel.org/en/users/Drivers/ath6kl
2149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
2150 S:      Supported
2151 F:      drivers/net/wireless/ath/ath6kl/
2152
2153 WILOCITY WIL6210 WIRELESS DRIVER
2154 M:      Maya Erez <[email protected]>
2155 L:      [email protected]
2156 L:      [email protected]
2157 S:      Supported
2158 W:      http://wireless.kernel.org/en/users/Drivers/wil6210
2159 F:      drivers/net/wireless/ath/wil6210/
2160 F:      include/uapi/linux/wil6210_uapi.h
2161
2162 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
2163 M:      Christian Lamparter <[email protected]>
2164 L:      [email protected]
2165 W:      http://wireless.kernel.org/en/users/Drivers/carl9170
2166 S:      Maintained
2167 F:      drivers/net/wireless/ath/carl9170/
2168
2169 ATK0110 HWMON DRIVER
2170 M:      Luca Tettamanti <[email protected]>
2171 L:      [email protected]
2172 S:      Maintained
2173 F:      drivers/hwmon/asus_atk0110.c
2174
2175 ATI_REMOTE2 DRIVER
2176 M:      Ville Syrjala <[email protected]>
2177 S:      Maintained
2178 F:      drivers/input/misc/ati_remote2.c
2179
2180 ATLX ETHERNET DRIVERS
2181 M:      Jay Cliburn <[email protected]>
2182 M:      Chris Snook <[email protected]>
2183 L:      [email protected]
2184 W:      http://sourceforge.net/projects/atl1
2185 W:      http://atl1.sourceforge.net
2186 S:      Maintained
2187 F:      drivers/net/ethernet/atheros/
2188
2189 ATM
2190 M:      Chas Williams <[email protected]>
2191 L:      [email protected] (moderated for non-subscribers)
2192 L:      [email protected]
2193 W:      http://linux-atm.sourceforge.net
2194 S:      Maintained
2195 F:      drivers/atm/
2196 F:      include/linux/atm*
2197 F:      include/uapi/linux/atm*
2198
2199 ATMEL AT91 / AT32 MCI DRIVER
2200 M:      Ludovic Desroches <[email protected]>
2201 S:      Maintained
2202 F:      drivers/mmc/host/atmel-mci.c
2203
2204 ATMEL AT91 SAMA5D2-Compatible Shutdown Controller
2205 M:      Nicolas Ferre <[email protected]>
2206 S:      Supported
2207 F:      drivers/power/reset/at91-sama5d2_shdwc.c
2208
2209 ATMEL SAMA5D2 ADC DRIVER
2210 M:      Ludovic Desroches <[email protected]>
2211 L:      [email protected]
2212 S:      Supported
2213 F:      drivers/iio/adc/at91-sama5d2_adc.c
2214
2215 ATMEL Audio ALSA driver
2216 M:      Nicolas Ferre <[email protected]>
2217 L:      [email protected] (moderated for non-subscribers)
2218 S:      Supported
2219 F:      sound/soc/atmel
2220
2221 ATMEL XDMA DRIVER
2222 M:      Ludovic Desroches <[email protected]>
2223 L:      [email protected]
2224 L:      [email protected]
2225 S:      Supported
2226 F:      drivers/dma/at_xdmac.c
2227
2228 ATMEL I2C DRIVER
2229 M:      Ludovic Desroches <[email protected]>
2230 L:      [email protected]
2231 S:      Supported
2232 F:      drivers/i2c/busses/i2c-at91.c
2233
2234 ATMEL ISI DRIVER
2235 M:      Ludovic Desroches <[email protected]>
2236 L:      [email protected]
2237 S:      Supported
2238 F:      drivers/media/platform/atmel/atmel-isi.c
2239 F:      include/media/atmel-isi.h
2240
2241 ATMEL LCDFB DRIVER
2242 M:      Nicolas Ferre <[email protected]>
2243 L:      [email protected]
2244 S:      Maintained
2245 F:      drivers/video/fbdev/atmel_lcdfb.c
2246 F:      include/video/atmel_lcdc.h
2247
2248 ATMEL MACB ETHERNET DRIVER
2249 M:      Nicolas Ferre <[email protected]>
2250 S:      Supported
2251 F:      drivers/net/ethernet/cadence/
2252
2253 ATMEL NAND DRIVER
2254 M:      Wenyou Yang <[email protected]>
2255 M:      Josh Wu <[email protected]>
2256 L:      [email protected]
2257 S:      Supported
2258 F:      drivers/mtd/nand/atmel_nand*
2259
2260 ATMEL SDMMC DRIVER
2261 M:      Ludovic Desroches <[email protected]>
2262 L:      [email protected]
2263 S:      Supported
2264 F:      drivers/mmc/host/sdhci-of-at91.c
2265
2266 ATMEL SPI DRIVER
2267 M:      Nicolas Ferre <[email protected]>
2268 S:      Supported
2269 F:      drivers/spi/spi-atmel.*
2270
2271 ATMEL SSC DRIVER
2272 M:      Nicolas Ferre <[email protected]>
2273 L:      [email protected] (moderated for non-subscribers)
2274 S:      Supported
2275 F:      drivers/misc/atmel-ssc.c
2276 F:      include/linux/atmel-ssc.h
2277
2278 ATMEL Timer Counter (TC) AND CLOCKSOURCE DRIVERS
2279 M:      Nicolas Ferre <[email protected]>
2280 L:      [email protected] (moderated for non-subscribers)
2281 S:      Supported
2282 F:      drivers/misc/atmel_tclib.c
2283 F:      drivers/clocksource/tcb_clksrc.c
2284
2285 ATMEL USBA UDC DRIVER
2286 M:      Nicolas Ferre <[email protected]>
2287 L:      [email protected] (moderated for non-subscribers)
2288 S:      Supported
2289 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
2290
2291 ATMEL WIRELESS DRIVER
2292 M:      Simon Kelley <[email protected]>
2293 L:      [email protected]
2294 W:      http://www.thekelleys.org.uk/atmel
2295 W:      http://atmelwlandriver.sourceforge.net/
2296 S:      Maintained
2297 F:      drivers/net/wireless/atmel/atmel*
2298
2299 ATMEL MAXTOUCH DRIVER
2300 M:      Nick Dyer <[email protected]>
2301 T:      git git://github.com/ndyer/linux.git
2302 S:      Maintained
2303 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.txt
2304 F:      drivers/input/touchscreen/atmel_mxt_ts.c
2305 F:      include/linux/platform_data/atmel_mxt_ts.h
2306
2307 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
2308 M:      Bradley Grove <[email protected]>
2309 L:      [email protected]
2310 W:      http://www.attotech.com
2311 S:      Supported
2312 F:      drivers/scsi/esas2r
2313
2314 ATUSB IEEE 802.15.4 RADIO DRIVER
2315 M:      Stefan Schmidt <[email protected]>
2316 L:      [email protected]
2317 S:      Maintained
2318 F:      drivers/net/ieee802154/atusb.c
2319 F:      drivers/net/ieee802154/atusb.h
2320 F:      drivers/net/ieee802154/at86rf230.h
2321
2322 AUDIT SUBSYSTEM
2323 M:      Paul Moore <[email protected]>
2324 M:      Eric Paris <[email protected]>
2325 L:      [email protected] (moderated for non-subscribers)
2326 W:      http://people.redhat.com/sgrubb/audit/
2327 T:      git git://git.infradead.org/users/pcmoore/audit
2328 S:      Maintained
2329 F:      include/linux/audit.h
2330 F:      include/uapi/linux/audit.h
2331 F:      kernel/audit*
2332
2333 AUXILIARY DISPLAY DRIVERS
2334 M:      Miguel Ojeda Sandonis <[email protected]>
2335 W:      http://miguelojeda.es/auxdisplay.htm
2336 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2337 S:      Maintained
2338 F:      drivers/auxdisplay/
2339 F:      include/linux/cfag12864b.h
2340
2341 AX.25 NETWORK LAYER
2342 M:      Ralf Baechle <[email protected]>
2343 L:      [email protected]
2344 W:      http://www.linux-ax25.org/
2345 S:      Maintained
2346 F:      include/uapi/linux/ax25.h
2347 F:      include/net/ax25.h
2348 F:      net/ax25/
2349
2350 AXENTIA ASOC DRIVERS
2351 M:      Peter Rosin <[email protected]>
2352 L:      [email protected] (moderated for non-subscribers)
2353 S:      Maintained
2354 F:      Documentation/devicetree/bindings/sound/axentia,*
2355 F:      sound/soc/atmel/tse850-pcm5142.c
2356
2357 AXENTIA ARM DEVICES
2358 M:      Peter Rosin <[email protected]>
2359 L:      [email protected] (moderated for non-subscribers)
2360 S:      Maintained
2361 F:      Documentation/devicetree/bindings/arm/axentia.txt
2362 F:      arch/arm/boot/dts/at91-linea.dtsi
2363 F:      arch/arm/boot/dts/at91-tse850-3.dts
2364
2365 AZ6007 DVB DRIVER
2366 M:      Mauro Carvalho Chehab <[email protected]>
2367 M:      Mauro Carvalho Chehab <[email protected]>
2368 L:      [email protected]
2369 W:      https://linuxtv.org
2370 T:      git git://linuxtv.org/media_tree.git
2371 S:      Maintained
2372 F:      drivers/media/usb/dvb-usb-v2/az6007.c
2373
2374 AZTECH FM RADIO RECEIVER DRIVER
2375 M:      Hans Verkuil <[email protected]>
2376 L:      [email protected]
2377 T:      git git://linuxtv.org/media_tree.git
2378 W:      https://linuxtv.org
2379 S:      Maintained
2380 F:      drivers/media/radio/radio-aztech*
2381
2382 B43 WIRELESS DRIVER
2383 L:      [email protected]
2384 L:      [email protected]
2385 W:      http://wireless.kernel.org/en/users/Drivers/b43
2386 S:      Odd Fixes
2387 F:      drivers/net/wireless/broadcom/b43/
2388
2389 B43LEGACY WIRELESS DRIVER
2390 M:      Larry Finger <[email protected]>
2391 L:      [email protected]
2392 L:      [email protected]
2393 W:      http://wireless.kernel.org/en/users/Drivers/b43
2394 S:      Maintained
2395 F:      drivers/net/wireless/broadcom/b43legacy/
2396
2397 BACKLIGHT CLASS/SUBSYSTEM
2398 M:      Lee Jones <[email protected]>
2399 M:      Daniel Thompson <[email protected]>
2400 M:      Jingoo Han <[email protected]>
2401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
2402 S:      Maintained
2403 F:      drivers/video/backlight/
2404 F:      include/linux/backlight.h
2405 F:      include/linux/pwm_backlight.h
2406 F:      Documentation/devicetree/bindings/leds/backlight
2407
2408 BATMAN ADVANCED
2409 M:      Marek Lindner <[email protected]>
2410 M:      Simon Wunderlich <[email protected]>
2411 M:      Antonio Quartulli <[email protected]>
2412 L:      [email protected] (moderated for non-subscribers)
2413 W:      https://www.open-mesh.org/
2414 Q:      https://patchwork.open-mesh.org/project/batman/list/
2415 S:      Maintained
2416 F:      Documentation/ABI/testing/sysfs-class-net-batman-adv
2417 F:      Documentation/ABI/testing/sysfs-class-net-mesh
2418 F:      Documentation/networking/batman-adv.txt
2419 F:      include/uapi/linux/batman_adv.h
2420 F:      net/batman-adv/
2421
2422 BAYCOM/HDLCDRV DRIVERS FOR AX.25
2423 M:      Thomas Sailer <[email protected]>
2424 L:      [email protected]
2425 W:      http://www.baycom.org/~tom/ham/ham.html
2426 S:      Maintained
2427 F:      drivers/net/hamradio/baycom*
2428
2429 BCACHE (BLOCK LAYER CACHE)
2430 M:      Kent Overstreet <[email protected]>
2431 L:      [email protected]
2432 W:      http://bcache.evilpiepirate.org
2433 S:      Orphan
2434 F:      drivers/md/bcache/
2435
2436 BDISP ST MEDIA DRIVER
2437 M:      Fabien Dessenne <[email protected]>
2438 L:      [email protected]
2439 T:      git git://linuxtv.org/media_tree.git
2440 W:      https://linuxtv.org
2441 S:      Supported
2442 F:      drivers/media/platform/sti/bdisp
2443
2444 DELTA ST MEDIA DRIVER
2445 M:      Hugues Fruchet <[email protected]>
2446 L:      [email protected]
2447 T:      git git://linuxtv.org/media_tree.git
2448 W:      https://linuxtv.org
2449 S:      Supported
2450 F:      drivers/media/platform/sti/delta
2451
2452 BEFS FILE SYSTEM
2453 M:      Luis de Bethencourt <[email protected]>
2454 M:      Salah Triki <[email protected]>
2455 S:      Maintained
2456 T:      git git://github.com/luisbg/linux-befs.git
2457 F:      Documentation/filesystems/befs.txt
2458 F:      fs/befs/
2459
2460 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
2461 M:      Dariusz Marcinkiewicz <[email protected]>
2462 L:      [email protected]
2463 S:      Maintained
2464 F:      drivers/net/ethernet/ec_bhf.c
2465
2466 BFS FILE SYSTEM
2467 M:      "Tigran A. Aivazian" <[email protected]>
2468 S:      Maintained
2469 F:      Documentation/filesystems/bfs.txt
2470 F:      fs/bfs/
2471 F:      include/uapi/linux/bfs_fs.h
2472
2473 BLACKFIN ARCHITECTURE
2474 M:      Steven Miao <[email protected]>
2475 L:      [email protected] (moderated for non-subscribers)
2476 T:      git git://git.code.sf.net/p/adi-linux/code
2477 W:      http://blackfin.uclinux.org
2478 S:      Supported
2479 F:      arch/blackfin/
2480
2481 BLACKFIN EMAC DRIVER
2482 L:      [email protected] (moderated for non-subscribers)
2483 W:      http://blackfin.uclinux.org
2484 S:      Supported
2485 F:      drivers/net/ethernet/adi/
2486
2487 BLACKFIN RTC DRIVER
2488 L:      [email protected] (moderated for non-subscribers)
2489 W:      http://blackfin.uclinux.org
2490 S:      Supported
2491 F:      drivers/rtc/rtc-bfin.c
2492
2493 BLACKFIN SDH DRIVER
2494 M:      Sonic Zhang <[email protected]>
2495 L:      [email protected] (moderated for non-subscribers)
2496 W:      http://blackfin.uclinux.org
2497 S:      Supported
2498 F:      drivers/mmc/host/bfin_sdh.c
2499
2500 BLACKFIN SERIAL DRIVER
2501 M:      Sonic Zhang <[email protected]>
2502 L:      [email protected] (moderated for non-subscribers)
2503 W:      http://blackfin.uclinux.org
2504 S:      Supported
2505 F:      drivers/tty/serial/bfin_uart.c
2506
2507 BLACKFIN WATCHDOG DRIVER
2508 L:      [email protected] (moderated for non-subscribers)
2509 W:      http://blackfin.uclinux.org
2510 S:      Supported
2511 F:      drivers/watchdog/bfin_wdt.c
2512
2513 BLACKFIN I2C TWI DRIVER
2514 M:      Sonic Zhang <[email protected]>
2515 L:      [email protected] (moderated for non-subscribers)
2516 W:      http://blackfin.uclinux.org/
2517 S:      Supported
2518 F:      drivers/i2c/busses/i2c-bfin-twi.c
2519
2520 BLACKFIN MEDIA DRIVER
2521 M:      Scott Jiang <[email protected]>
2522 L:      [email protected] (moderated for non-subscribers)
2523 W:      http://blackfin.uclinux.org/
2524 S:      Supported
2525 F:      drivers/media/platform/blackfin/
2526 F:      drivers/media/i2c/adv7183*
2527 F:      drivers/media/i2c/vs6624*
2528
2529 BLINKM RGB LED DRIVER
2530 M:      Jan-Simon Moeller <[email protected]>
2531 S:      Maintained
2532 F:      drivers/leds/leds-blinkm.c
2533
2534 BLOCK LAYER
2535 M:      Jens Axboe <[email protected]>
2536 L:      [email protected]
2537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
2538 S:      Maintained
2539 F:      block/
2540 F:      kernel/trace/blktrace.c
2541 F:      lib/sbitmap.c
2542
2543 BFQ I/O SCHEDULER
2544 M:      Paolo Valente <[email protected]>
2545 M:      Jens Axboe <[email protected]>
2546 L:      [email protected]
2547 S:      Maintained
2548 F:      block/bfq-*
2549 F:      Documentation/block/bfq-iosched.txt
2550
2551 BLOCK2MTD DRIVER
2552 M:      Joern Engel <[email protected]>
2553 L:      [email protected]
2554 S:      Maintained
2555 F:      drivers/mtd/devices/block2mtd.c
2556
2557 BLUETOOTH DRIVERS
2558 M:      Marcel Holtmann <[email protected]>
2559 M:      Gustavo Padovan <[email protected]>
2560 M:      Johan Hedberg <[email protected]>
2561 L:      [email protected]
2562 W:      http://www.bluez.org/
2563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2565 S:      Maintained
2566 F:      drivers/bluetooth/
2567
2568 BLUETOOTH SUBSYSTEM
2569 M:      Marcel Holtmann <[email protected]>
2570 M:      Gustavo Padovan <[email protected]>
2571 M:      Johan Hedberg <[email protected]>
2572 L:      [email protected]
2573 W:      http://www.bluez.org/
2574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
2575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
2576 S:      Maintained
2577 F:      net/bluetooth/
2578 F:      include/net/bluetooth/
2579
2580 BONDING DRIVER
2581 M:      Jay Vosburgh <[email protected]>
2582 M:      Veaceslav Falico <[email protected]>
2583 M:      Andy Gospodarek <[email protected]>
2584 L:      [email protected]
2585 W:      http://sourceforge.net/projects/bonding/
2586 S:      Supported
2587 F:      drivers/net/bonding/
2588 F:      include/uapi/linux/if_bonding.h
2589
2590 BPF (Safe dynamic programs and tools)
2591 M:      Alexei Starovoitov <[email protected]>
2592 M:      Daniel Borkmann <[email protected]>
2593 L:      [email protected]
2594 L:      [email protected]
2595 S:      Supported
2596 F:      arch/x86/net/bpf_jit*
2597 F:      Documentation/networking/filter.txt
2598 F:      include/linux/bpf*
2599 F:      include/linux/filter.h
2600 F:      include/uapi/linux/bpf*
2601 F:      include/uapi/linux/filter.h
2602 F:      kernel/bpf/
2603 F:      kernel/trace/bpf_trace.c
2604 F:      lib/test_bpf.c
2605 F:      net/bpf/
2606 F:      net/core/filter.c
2607 F:      net/sched/act_bpf.c
2608 F:      net/sched/cls_bpf.c
2609 F:      samples/bpf/
2610 F:      tools/net/bpf*
2611 F:      tools/testing/selftests/bpf/
2612
2613 BROADCOM B44 10/100 ETHERNET DRIVER
2614 M:      Michael Chan <[email protected]>
2615 L:      [email protected]
2616 S:      Supported
2617 F:      drivers/net/ethernet/broadcom/b44.*
2618
2619 BROADCOM B53 ETHERNET SWITCH DRIVER
2620 M:      Florian Fainelli <[email protected]>
2621 L:      [email protected]
2622 L:      [email protected] (subscribers-only)
2623 S:      Supported
2624 F:      drivers/net/dsa/b53/*
2625 F:      include/linux/platform_data/b53.h
2626
2627 BROADCOM GENET ETHERNET DRIVER
2628 M:      Florian Fainelli <[email protected]>
2629 L:      [email protected]
2630 S:      Supported
2631 F:      drivers/net/ethernet/broadcom/genet/
2632
2633 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
2634 M:      Rasesh Mody <[email protected]>
2635 M:      Harish Patil <[email protected]>
2636 M:      [email protected]
2637 L:      [email protected]
2638 S:      Supported
2639 F:      drivers/net/ethernet/broadcom/bnx2.*
2640 F:      drivers/net/ethernet/broadcom/bnx2_*
2641
2642 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
2643 M:      Yuval Mintz <[email protected]>
2644 M:      Ariel Elior <[email protected]>
2645 M:      [email protected]
2646 L:      [email protected]
2647 S:      Supported
2648 F:      drivers/net/ethernet/broadcom/bnx2x/
2649
2650 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
2651 M:      Michael Chan <[email protected]>
2652 L:      [email protected]
2653 S:      Supported
2654 F:      drivers/net/ethernet/broadcom/bnxt/
2655
2656 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
2657 M:      Florian Fainelli <[email protected]>
2658 M:      Ray Jui <[email protected]>
2659 M:      Scott Branden <[email protected]>
2660 M:      [email protected]
2661 T:      git git://github.com/broadcom/mach-bcm
2662 S:      Maintained
2663 N:      bcm281*
2664 N:      bcm113*
2665 N:      bcm216*
2666 N:      kona
2667 F:      arch/arm/mach-bcm/
2668
2669 BROADCOM BCM2835 ARM ARCHITECTURE
2670 M:      Stephen Warren <[email protected]>
2671 M:      Lee Jones <[email protected]>
2672 M:      Eric Anholt <[email protected]>
2673 L:      [email protected] (moderated for non-subscribers)
2674 L:      [email protected] (moderated for non-subscribers)
2675 T:      git git://github.com/anholt/linux
2676 S:      Maintained
2677 N:      bcm2835
2678 F:      drivers/staging/vc04_services
2679
2680 BROADCOM BCM47XX MIPS ARCHITECTURE
2681 M:      Hauke Mehrtens <[email protected]>
2682 M:      Rafał Miłecki <[email protected]>
2683 L:      [email protected]
2684 S:      Maintained
2685 F:      Documentation/devicetree/bindings/mips/brcm/
2686 F:      arch/mips/bcm47xx/*
2687 F:      arch/mips/include/asm/mach-bcm47xx/*
2688
2689 BROADCOM BCM5301X ARM ARCHITECTURE
2690 M:      Hauke Mehrtens <[email protected]>
2691 M:      Rafał Miłecki <[email protected]>
2692 M:      [email protected]
2693 L:      [email protected]
2694 S:      Maintained
2695 F:      arch/arm/mach-bcm/bcm_5301x.c
2696 F:      arch/arm/boot/dts/bcm5301x*.dtsi
2697 F:      arch/arm/boot/dts/bcm470*
2698
2699 BROADCOM BCM53573 ARM ARCHITECTURE
2700 M:      Rafał Miłecki <[email protected]>
2701 L:      [email protected]
2702 S:      Maintained
2703 F:      arch/arm/boot/dts/bcm53573*
2704 F:      arch/arm/boot/dts/bcm47189*
2705
2706 BROADCOM BCM63XX ARM ARCHITECTURE
2707 M:      Florian Fainelli <[email protected]>
2708 M:      [email protected]
2709 L:      [email protected] (moderated for non-subscribers)
2710 T:      git git://github.com/broadcom/stblinux.git
2711 S:      Maintained
2712 N:      bcm63xx
2713
2714 BROADCOM BCM63XX/BCM33XX UDC DRIVER
2715 M:      Kevin Cernekee <[email protected]>
2716 L:      [email protected]
2717 S:      Maintained
2718 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
2719
2720 BROADCOM BCM7XXX ARM ARCHITECTURE
2721 M:      Brian Norris <[email protected]>
2722 M:      Gregory Fong <[email protected]>
2723 M:      Florian Fainelli <[email protected]>
2724 M:      [email protected]
2725 L:      [email protected] (moderated for non-subscribers)
2726 T:      git git://github.com/broadcom/stblinux.git
2727 S:      Maintained
2728 F:      arch/arm/mach-bcm/*brcmstb*
2729 F:      arch/arm/boot/dts/bcm7*.dts*
2730 F:      drivers/bus/brcmstb_gisb.c
2731 N:      brcmstb
2732
2733 BROADCOM BMIPS MIPS ARCHITECTURE
2734 M:      Kevin Cernekee <[email protected]>
2735 M:      Florian Fainelli <[email protected]>
2736 L:      [email protected]
2737 T:      git git://github.com/broadcom/stblinux.git
2738 S:      Maintained
2739 F:      arch/mips/bmips/*
2740 F:      arch/mips/include/asm/mach-bmips/*
2741 F:      arch/mips/kernel/*bmips*
2742 F:      arch/mips/boot/dts/brcm/bcm*.dts*
2743 F:      drivers/irqchip/irq-bcm63*
2744 F:      drivers/irqchip/irq-bcm7*
2745 F:      drivers/irqchip/irq-brcmstb*
2746 F:      include/linux/bcm963xx_nvram.h
2747 F:      include/linux/bcm963xx_tag.h
2748
2749 BROADCOM BMIPS CPUFREQ DRIVER
2750 M:      Markus Mayer <[email protected]>
2751 M:      [email protected]
2752 L:      [email protected]
2753 S:      Maintained
2754 F:      drivers/cpufreq/bmips-cpufreq.c
2755
2756 BROADCOM TG3 GIGABIT ETHERNET DRIVER
2757 M:      Siva Reddy Kallam <[email protected]>
2758 M:      Prashant Sreedharan <[email protected]>
2759 M:      Michael Chan <[email protected]>
2760 L:      [email protected]
2761 S:      Supported
2762 F:      drivers/net/ethernet/broadcom/tg3.*
2763
2764 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
2765 M:      Arend van Spriel <[email protected]>
2766 M:      Franky Lin <[email protected]>
2767 M:      Hante Meuleman <[email protected]>
2768 L:      [email protected]
2769 L:      [email protected]
2770 S:      Supported
2771 F:      drivers/net/wireless/broadcom/brcm80211/
2772
2773 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
2774 M:      [email protected]
2775 L:      [email protected]
2776 S:      Supported
2777 F:      drivers/scsi/bnx2fc/
2778
2779 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
2780 M:      [email protected]
2781 L:      [email protected]
2782 S:      Supported
2783 F:      drivers/scsi/bnx2i/
2784
2785 BROADCOM IPROC ARM ARCHITECTURE
2786 M:      Ray Jui <[email protected]>
2787 M:      Scott Branden <[email protected]>
2788 M:      Jon Mason <[email protected]>
2789 M:      [email protected]
2790 L:      [email protected] (moderated for non-subscribers)
2791 T:      git git://github.com/broadcom/cygnus-linux.git
2792 S:      Maintained
2793 N:      iproc
2794 N:      cygnus
2795 N:      bcm[-_]nsp
2796 N:      bcm9113*
2797 N:      bcm9583*
2798 N:      bcm9585*
2799 N:      bcm9586*
2800 N:      bcm988312
2801 N:      bcm113*
2802 N:      bcm583*
2803 N:      bcm585*
2804 N:      bcm586*
2805 N:      bcm88312
2806 F:      arch/arm64/boot/dts/broadcom/ns2*
2807 F:      drivers/clk/bcm/clk-ns*
2808 F:      drivers/pinctrl/bcm/pinctrl-ns*
2809
2810 BROADCOM BRCMSTB GPIO DRIVER
2811 M:      Gregory Fong <[email protected]>
2812 L:      [email protected]
2813 S:      Supported
2814 F:      drivers/gpio/gpio-brcmstb.c
2815 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
2816
2817 BROADCOM KONA GPIO DRIVER
2818 M:      Ray Jui <[email protected]>
2819 L:      [email protected]
2820 S:      Supported
2821 F:      drivers/gpio/gpio-bcm-kona.c
2822 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
2823
2824 BROADCOM NVRAM DRIVER
2825 M:      Rafał Miłecki <[email protected]>
2826 L:      [email protected]
2827 S:      Maintained
2828 F:      drivers/firmware/broadcom/*
2829
2830 BROADCOM STB NAND FLASH DRIVER
2831 M:      Brian Norris <[email protected]>
2832 M:      Kamal Dasu <[email protected]>
2833 L:      [email protected]
2834 L:      [email protected]
2835 S:      Maintained
2836 F:      drivers/mtd/nand/brcmnand/
2837
2838 BROADCOM STB AVS CPUFREQ DRIVER
2839 M:      Markus Mayer <[email protected]>
2840 M:      [email protected]
2841 L:      [email protected]
2842 S:      Maintained
2843 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
2844 F:      drivers/cpufreq/brcmstb*
2845
2846 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
2847 M:      Rafał Miłecki <[email protected]>
2848 L:      [email protected]
2849 S:      Maintained
2850 F:      drivers/bcma/
2851 F:      include/linux/bcma/
2852
2853 BROADCOM SYSTEMPORT ETHERNET DRIVER
2854 M:      Florian Fainelli <[email protected]>
2855 L:      [email protected]
2856 S:      Supported
2857 F:      drivers/net/ethernet/broadcom/bcmsysport.*
2858
2859 BROADCOM VULCAN ARM64 SOC
2860 M:      Jayachandran C. <[email protected]>
2861 M:      [email protected]
2862 L:      [email protected] (moderated for non-subscribers)
2863 S:      Maintained
2864 F:      arch/arm64/boot/dts/broadcom/vulcan*
2865
2866 BROADCOM NETXTREME-E ROCE DRIVER
2867 M:      Selvin Xavier <[email protected]>
2868 M:      Devesh Sharma <[email protected]>
2869 M:      Somnath Kotur <[email protected]>
2870 M:      Sriharsha Basavapatna <[email protected]>
2871 L:      [email protected]
2872 W:      http://www.broadcom.com
2873 S:      Supported
2874 F:      drivers/infiniband/hw/bnxt_re/
2875 F:      include/uapi/rdma/bnxt_re-abi.h
2876
2877 BROCADE BFA FC SCSI DRIVER
2878 M:      Anil Gurumurthy <[email protected]>
2879 M:      Sudarsana Kalluru <[email protected]>
2880 L:      [email protected]
2881 S:      Supported
2882 F:      drivers/scsi/bfa/
2883
2884 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
2885 M:      Rasesh Mody <[email protected]>
2886 M:      Sudarsana Kalluru <[email protected]>
2887 M:      [email protected]
2888 L:      [email protected]
2889 S:      Supported
2890 F:      drivers/net/ethernet/brocade/bna/
2891
2892 BSG (block layer generic sg v4 driver)
2893 M:      FUJITA Tomonori <[email protected]>
2894 L:      [email protected]
2895 S:      Supported
2896 F:      block/bsg.c
2897 F:      include/linux/bsg.h
2898 F:      include/uapi/linux/bsg.h
2899
2900 BT87X AUDIO DRIVER
2901 M:      Clemens Ladisch <[email protected]>
2902 L:      [email protected] (moderated for non-subscribers)
2903 T:      git git://git.alsa-project.org/alsa-kernel.git
2904 S:      Maintained
2905 F:      Documentation/sound/alsa/Bt87x.txt
2906 F:      sound/pci/bt87x.c
2907
2908 BT8XXGPIO DRIVER
2909 M:      Michael Buesch <[email protected]>
2910 W:      http://bu3sch.de/btgpio.php
2911 S:      Maintained
2912 F:      drivers/gpio/gpio-bt8xx.c
2913
2914 BTRFS FILE SYSTEM
2915 M:      Chris Mason <[email protected]>
2916 M:      Josef Bacik <[email protected]>
2917 M:      David Sterba <[email protected]>
2918 L:      [email protected]
2919 W:      http://btrfs.wiki.kernel.org/
2920 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
2921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mason/linux-btrfs.git
2922 S:      Maintained
2923 F:      Documentation/filesystems/btrfs.txt
2924 F:      fs/btrfs/
2925
2926 BTTV VIDEO4LINUX DRIVER
2927 M:      Mauro Carvalho Chehab <[email protected]>
2928 M:      Mauro Carvalho Chehab <[email protected]>
2929 L:      [email protected]
2930 W:      https://linuxtv.org
2931 T:      git git://linuxtv.org/media_tree.git
2932 S:      Odd fixes
2933 F:      Documentation/media/v4l-drivers/bttv*
2934 F:      drivers/media/pci/bt8xx/bttv*
2935
2936 BUSLOGIC SCSI DRIVER
2937 M:      Khalid Aziz <[email protected]>
2938 L:      [email protected]
2939 S:      Maintained
2940 F:      drivers/scsi/BusLogic.*
2941 F:      drivers/scsi/FlashPoint.*
2942
2943 C-MEDIA CMI8788 DRIVER
2944 M:      Clemens Ladisch <[email protected]>
2945 L:      [email protected] (moderated for non-subscribers)
2946 T:      git git://git.alsa-project.org/alsa-kernel.git
2947 S:      Maintained
2948 F:      sound/pci/oxygen/
2949
2950 C6X ARCHITECTURE
2951 M:      Mark Salter <[email protected]>
2952 M:      Aurelien Jacquiot <[email protected]>
2953 L:      [email protected]
2954 W:      http://www.linux-c6x.org/wiki/index.php/Main_Page
2955 S:      Maintained
2956 F:      arch/c6x/
2957
2958 CA8210 IEEE-802.15.4 RADIO DRIVER
2959 M:      Harry Morris <[email protected]>
2960 M:      [email protected]
2961 L:      [email protected]
2962 W:      https://github.com/Cascoda/ca8210-linux.git
2963 S:      Maintained
2964 F:      drivers/net/ieee802154/ca8210.c
2965 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
2966
2967 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
2968 M:      David Howells <[email protected]>
2969 L:      [email protected] (moderated for non-subscribers)
2970 S:      Supported
2971 F:      Documentation/filesystems/caching/cachefiles.txt
2972 F:      fs/cachefiles/
2973
2974 CADET FM/AM RADIO RECEIVER DRIVER
2975 M:      Hans Verkuil <[email protected]>
2976 L:      [email protected]
2977 T:      git git://linuxtv.org/media_tree.git
2978 W:      https://linuxtv.org
2979 S:      Maintained
2980 F:      drivers/media/radio/radio-cadet*
2981
2982 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
2983 M:      Jonathan Corbet <[email protected]>
2984 L:      [email protected]
2985 T:      git git://linuxtv.org/media_tree.git
2986 S:      Maintained
2987 F:      Documentation/media/v4l-drivers/cafe_ccic*
2988 F:      drivers/media/platform/marvell-ccic/
2989
2990 CAIF NETWORK LAYER
2991 M:      Dmitry Tarnyagin <[email protected]>
2992 L:      [email protected]
2993 S:      Supported
2994 F:      Documentation/networking/caif/
2995 F:      drivers/net/caif/
2996 F:      include/uapi/linux/caif/
2997 F:      include/net/caif/
2998 F:      net/caif/
2999
3000 CALGARY x86-64 IOMMU
3001 M:      Muli Ben-Yehuda <[email protected]>
3002 M:      Jon Mason <[email protected]>
3003 L:      [email protected]
3004 S:      Maintained
3005 F:      arch/x86/kernel/pci-calgary_64.c
3006 F:      arch/x86/kernel/tce_64.c
3007 F:      arch/x86/include/asm/calgary.h
3008 F:      arch/x86/include/asm/tce.h
3009
3010 CAN NETWORK LAYER
3011 M:      Oliver Hartkopp <[email protected]>
3012 M:      Marc Kleine-Budde <[email protected]>
3013 L:      [email protected]
3014 W:      https://github.com/linux-can
3015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3017 S:      Maintained
3018 F:      Documentation/networking/can.txt
3019 F:      net/can/
3020 F:      include/linux/can/core.h
3021 F:      include/uapi/linux/can.h
3022 F:      include/uapi/linux/can/bcm.h
3023 F:      include/uapi/linux/can/raw.h
3024 F:      include/uapi/linux/can/gw.h
3025
3026 CAN NETWORK DRIVERS
3027 M:      Wolfgang Grandegger <[email protected]>
3028 M:      Marc Kleine-Budde <[email protected]>
3029 L:      [email protected]
3030 W:      https://github.com/linux-can
3031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
3032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
3033 S:      Maintained
3034 F:      Documentation/devicetree/bindings/net/can/
3035 F:      drivers/net/can/
3036 F:      include/linux/can/dev.h
3037 F:      include/linux/can/platform/
3038 F:      include/uapi/linux/can/error.h
3039 F:      include/uapi/linux/can/netlink.h
3040
3041 CAPABILITIES
3042 M:      Serge Hallyn <[email protected]>
3043 L:      [email protected]
3044 S:      Supported
3045 F:      include/linux/capability.h
3046 F:      include/uapi/linux/capability.h
3047 F:      security/commoncap.c
3048 F:      kernel/capability.c
3049
3050 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
3051 M:      Kevin Tsai <[email protected]>
3052 S:      Maintained
3053 F:      drivers/iio/light/cm*
3054
3055 CAVIUM THUNDERX2 ARM64 SOC
3056 M:      Jayachandran C <[email protected]>
3057 L:      [email protected] (moderated for non-subscribers)
3058 S:      Maintained
3059 F:      arch/arm64/boot/dts/cavium/thunder-99xx*
3060 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
3061
3062 CAVIUM I2C DRIVER
3063 M:      Jan Glauber <[email protected]>
3064 M:      David Daney <[email protected]>
3065 W:      http://www.cavium.com
3066 S:      Supported
3067 F:      drivers/i2c/busses/i2c-octeon*
3068 F:      drivers/i2c/busses/i2c-thunderx*
3069
3070 CAVIUM MMC DRIVER
3071 M:      Jan Glauber <[email protected]>
3072 M:      David Daney <[email protected]>
3073 M:      Steven J. Hill <[email protected]>
3074 W:      http://www.cavium.com
3075 S:      Supported
3076 F:      drivers/mmc/host/cavium*
3077
3078 CAVIUM LIQUIDIO NETWORK DRIVER
3079 M:     Derek Chickles <[email protected]>
3080 M:     Satanand Burla <[email protected]>
3081 M:     Felix Manlunas <[email protected]>
3082 M:     Raghu Vatsavayi <[email protected]>
3083 L:     [email protected]
3084 W:     http://www.cavium.com
3085 S:     Supported
3086 F:     drivers/net/ethernet/cavium/liquidio/
3087
3088 CAVIUM OCTEON-TX CRYPTO DRIVER
3089 M:      George Cherian <[email protected]>
3090 L:      [email protected]
3091 W:      http://www.cavium.com
3092 S:      Supported
3093 F:      drivers/crypto/cavium/cpt/
3094
3095 CC2520 IEEE-802.15.4 RADIO DRIVER
3096 M:      Varka Bhadram <[email protected]>
3097 L:      [email protected]
3098 S:      Maintained
3099 F:      drivers/net/ieee802154/cc2520.c
3100 F:      include/linux/spi/cc2520.h
3101 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
3102
3103 CEC FRAMEWORK
3104 M:      Hans Verkuil <[email protected]>
3105 L:      [email protected]
3106 T:      git git://linuxtv.org/media_tree.git
3107 W:      http://linuxtv.org
3108 S:      Supported
3109 F:      Documentation/media/kapi/cec-core.rst
3110 F:      Documentation/media/uapi/cec
3111 F:      drivers/media/cec/
3112 F:      drivers/media/rc/keymaps/rc-cec.c
3113 F:      include/media/cec.h
3114 F:      include/media/cec-notifier.h
3115 F:      include/uapi/linux/cec.h
3116 F:      include/uapi/linux/cec-funcs.h
3117
3118 CELL BROADBAND ENGINE ARCHITECTURE
3119 M:      Arnd Bergmann <[email protected]>
3120 L:      [email protected]
3121 W:      http://www.ibm.com/developerworks/power/cell/
3122 S:      Supported
3123 F:      arch/powerpc/include/asm/cell*.h
3124 F:      arch/powerpc/include/asm/spu*.h
3125 F:      arch/powerpc/include/uapi/asm/spu*.h
3126 F:      arch/powerpc/oprofile/*cell*
3127 F:      arch/powerpc/platforms/cell/
3128
3129 CEPH COMMON CODE (LIBCEPH)
3130 M:      Ilya Dryomov <[email protected]>
3131 M:      "Yan, Zheng" <[email protected]>
3132 M:      Sage Weil <[email protected]>
3133 L:      [email protected]
3134 W:      http://ceph.com/
3135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3136 T:      git git://github.com/ceph/ceph-client.git
3137 S:      Supported
3138 F:      net/ceph/
3139 F:      include/linux/ceph/
3140 F:      include/linux/crush/
3141
3142 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
3143 M:      "Yan, Zheng" <[email protected]>
3144 M:      Sage Weil <[email protected]>
3145 M:      Ilya Dryomov <[email protected]>
3146 L:      [email protected]
3147 W:      http://ceph.com/
3148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
3149 T:      git git://github.com/ceph/ceph-client.git
3150 S:      Supported
3151 F:      Documentation/filesystems/ceph.txt
3152 F:      fs/ceph/
3153
3154 CERTIFICATE HANDLING:
3155 M:      David Howells <[email protected]>
3156 M:      David Woodhouse <[email protected]>
3157 L:      [email protected]
3158 S:      Maintained
3159 F:      Documentation/module-signing.txt
3160 F:      certs/
3161 F:      scripts/sign-file.c
3162 F:      scripts/extract-cert.c
3163
3164 CERTIFIED WIRELESS USB (WUSB) SUBSYSTEM:
3165 L:      [email protected]
3166 S:      Orphan
3167 F:      Documentation/usb/WUSB-Design-overview.txt
3168 F:      Documentation/usb/wusb-cbaf
3169 F:      drivers/usb/host/hwa-hc.c
3170 F:      drivers/usb/host/whci/
3171 F:      drivers/usb/wusbcore/
3172 F:      include/linux/usb/wusb*
3173
3174 HT16K33 LED CONTROLLER DRIVER
3175 M:      Robin van der Gracht <[email protected]>
3176 S:      Maintained
3177 F:      drivers/auxdisplay/ht16k33.c
3178 F:      Documentation/devicetree/bindings/display/ht16k33.txt
3179
3180 CFAG12864B LCD DRIVER
3181 M:      Miguel Ojeda Sandonis <[email protected]>
3182 W:      http://miguelojeda.es/auxdisplay.htm
3183 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3184 S:      Maintained
3185 F:      drivers/auxdisplay/cfag12864b.c
3186 F:      include/linux/cfag12864b.h
3187
3188 CFAG12864BFB LCD FRAMEBUFFER DRIVER
3189 M:      Miguel Ojeda Sandonis <[email protected]>
3190 W:      http://miguelojeda.es/auxdisplay.htm
3191 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
3192 S:      Maintained
3193 F:      drivers/auxdisplay/cfag12864bfb.c
3194 F:      include/linux/cfag12864b.h
3195
3196 CFG80211 and NL80211
3197 M:      Johannes Berg <[email protected]>
3198 L:      [email protected]
3199 W:      http://wireless.kernel.org/
3200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
3201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
3202 S:      Maintained
3203 F:      include/uapi/linux/nl80211.h
3204 F:      include/net/cfg80211.h
3205 F:      net/wireless/*
3206 X:      net/wireless/wext*
3207
3208 CHAR and MISC DRIVERS
3209 M:      Arnd Bergmann <[email protected]>
3210 M:      Greg Kroah-Hartman <[email protected]>
3211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
3212 S:      Supported
3213 F:      drivers/char/*
3214 F:      drivers/misc/*
3215 F:      include/linux/miscdevice.h
3216
3217 CHECKPATCH
3218 M:      Andy Whitcroft <[email protected]>
3219 M:      Joe Perches <[email protected]>
3220 S:      Maintained
3221 F:      scripts/checkpatch.pl
3222
3223 CHINESE DOCUMENTATION
3224 M:      Harry Wei <[email protected]>
3225 L:      [email protected] (subscribers-only)
3226 L:      [email protected] (moderated for non-subscribers)
3227 S:      Maintained
3228 F:      Documentation/translations/zh_CN/
3229
3230 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
3231 M:      Peter Chen <[email protected]>
3232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
3233 L:      [email protected]
3234 S:      Maintained
3235 F:      drivers/usb/chipidea/
3236
3237 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
3238 M:      Hans de Goede <[email protected]>
3239 L:      [email protected]
3240 S:      Maintained
3241 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
3242 F:      drivers/input/touchscreen/chipone_icn8318.c
3243
3244 CHROME HARDWARE PLATFORM SUPPORT
3245 M:      Olof Johansson <[email protected]>
3246 S:      Maintained
3247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/olof/chrome-platform.git
3248 F:      drivers/platform/chrome/
3249
3250 CISCO VIC ETHERNET NIC DRIVER
3251 M:      Christian Benvenuti <[email protected]>
3252 M:      Govindarajulu Varadarajan <[email protected]>
3253 M:      Neel Patel <[email protected]>
3254 S:      Supported
3255 F:      drivers/net/ethernet/cisco/enic/
3256
3257 CISCO VIC LOW LATENCY NIC DRIVER
3258 M:      Christian Benvenuti <[email protected]>
3259 M:      Dave Goodell <[email protected]>
3260 S:      Supported
3261 F:      drivers/infiniband/hw/usnic/
3262
3263 CIRRUS LOGIC EP93XX ETHERNET DRIVER
3264 M:      Hartley Sweeten <[email protected]>
3265 L:      [email protected]
3266 S:      Maintained
3267 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
3268
3269 CIRRUS LOGIC AUDIO CODEC DRIVERS
3270 M:      Brian Austin <[email protected]>
3271 M:      Paul Handrigan <[email protected]>
3272 L:      [email protected] (moderated for non-subscribers)
3273 S:      Maintained
3274 F:      sound/soc/codecs/cs*
3275
3276 CLEANCACHE API
3277 M:      Konrad Rzeszutek Wilk <[email protected]>
3278 L:      [email protected]
3279 S:      Maintained
3280 F:      mm/cleancache.c
3281 F:      include/linux/cleancache.h
3282
3283 CLK API
3284 M:      Russell King <[email protected]>
3285 L:      [email protected]
3286 S:      Maintained
3287 F:      include/linux/clk.h
3288
3289 CLOCKSOURCE, CLOCKEVENT DRIVERS
3290 M:      Daniel Lezcano <[email protected]>
3291 M:      Thomas Gleixner <[email protected]>
3292 L:      [email protected]
3293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
3294 S:      Supported
3295 F:      drivers/clocksource
3296
3297 CISCO FCOE HBA DRIVER
3298 M:      Satish Kharat <[email protected]>
3299 M:      Sesidhar Baddela <[email protected]>
3300 M:      Karan Tilak Kumar <[email protected]>
3301 L:      [email protected]
3302 S:      Supported
3303 F:      drivers/scsi/fnic/
3304
3305 CISCO SCSI HBA DRIVER
3306 M:      Karan Tilak Kumar <[email protected]>
3307 M:      Sesidhar Baddela <[email protected]>
3308 L:      [email protected]
3309 S:      Supported
3310 F:      drivers/scsi/snic/
3311
3312 CMPC ACPI DRIVER
3313 M:      Thadeu Lima de Souza Cascardo <[email protected]>
3314 M:      Daniel Oliveira Nascimento <[email protected]>
3315 L:      [email protected]
3316 S:      Supported
3317 F:      drivers/platform/x86/classmate-laptop.c
3318
3319 COBALT MEDIA DRIVER
3320 M:      Hans Verkuil <[email protected]>
3321 L:      [email protected]
3322 T:      git git://linuxtv.org/media_tree.git
3323 W:      https://linuxtv.org
3324 S:      Supported
3325 F:      drivers/media/pci/cobalt/
3326
3327 COCCINELLE/Semantic Patches (SmPL)
3328 M:      Julia Lawall <[email protected]>
3329 M:      Gilles Muller <[email protected]>
3330 M:      Nicolas Palix <[email protected]>
3331 M:      Michal Marek <[email protected]>
3332 L:      [email protected] (moderated for non-subscribers)
3333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
3334 W:      http://coccinelle.lip6.fr/
3335 S:      Supported
3336 F:      Documentation/dev-tools/coccinelle.rst
3337 F:      scripts/coccinelle/
3338 F:      scripts/coccicheck
3339
3340 CODA FILE SYSTEM
3341 M:      Jan Harkes <[email protected]>
3342 M:      [email protected]
3343 L:      [email protected]
3344 W:      http://www.coda.cs.cmu.edu/
3345 S:      Maintained
3346 F:      Documentation/filesystems/coda.txt
3347 F:      fs/coda/
3348 F:      include/linux/coda*.h
3349 F:      include/uapi/linux/coda*.h
3350
3351 CODA V4L2 MEM2MEM DRIVER
3352 M:      Philipp Zabel <[email protected]>
3353 L:      [email protected]
3354 S:      Maintained
3355 F:      Documentation/devicetree/bindings/media/coda.txt
3356 F:      drivers/media/platform/coda/
3357
3358 COMMON CLK FRAMEWORK
3359 M:      Michael Turquette <[email protected]>
3360 M:      Stephen Boyd <[email protected]>
3361 L:      [email protected]
3362 Q:      http://patchwork.kernel.org/project/linux-clk/list/
3363 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
3364 S:      Maintained
3365 F:      Documentation/devicetree/bindings/clock/
3366 F:      drivers/clk/
3367 X:      drivers/clk/clkdev.c
3368 F:      include/linux/clk-pr*
3369 F:      include/linux/clk/
3370
3371 COMMON INTERNET FILE SYSTEM (CIFS)
3372 M:      Steve French <[email protected]>
3373 L:      [email protected]
3374 L:      [email protected] (moderated for non-subscribers)
3375 W:      http://linux-cifs.samba.org/
3376 T:      git git://git.samba.org/sfrench/cifs-2.6.git
3377 S:      Supported
3378 F:      Documentation/filesystems/cifs/
3379 F:      fs/cifs/
3380
3381 COMPACTPCI HOTPLUG CORE
3382 M:      Scott Murray <[email protected]>
3383 L:      [email protected]
3384 S:      Maintained
3385 F:      drivers/pci/hotplug/cpci_hotplug*
3386
3387 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
3388 M:      Scott Murray <[email protected]>
3389 L:      [email protected]
3390 S:      Maintained
3391 F:      drivers/pci/hotplug/cpcihp_zt5550.*
3392
3393 COMPACTPCI HOTPLUG GENERIC DRIVER
3394 M:      Scott Murray <[email protected]>
3395 L:      [email protected]
3396 S:      Maintained
3397 F:      drivers/pci/hotplug/cpcihp_generic.c
3398
3399 COMPAL LAPTOP SUPPORT
3400 M:      Cezary Jackiewicz <[email protected]>
3401 L:      [email protected]
3402 S:      Maintained
3403 F:      drivers/platform/x86/compal-laptop.c
3404
3405 CONEXANT ACCESSRUNNER USB DRIVER
3406 L:      [email protected]
3407 W:      http://accessrunner.sourceforge.net/
3408 S:      Orphan
3409 F:      drivers/usb/atm/cxacru.c
3410
3411 CONFIGFS
3412 M:      Joel Becker <[email protected]>
3413 M:      Christoph Hellwig <[email protected]>
3414 T:      git git://git.infradead.org/users/hch/configfs.git
3415 S:      Supported
3416 F:      fs/configfs/
3417 F:      include/linux/configfs.h
3418
3419 CONNECTOR
3420 M:      Evgeniy Polyakov <[email protected]>
3421 L:      [email protected]
3422 S:      Maintained
3423 F:      drivers/connector/
3424
3425 CONTROL GROUP (CGROUP)
3426 M:      Tejun Heo <[email protected]>
3427 M:      Li Zefan <[email protected]>
3428 M:      Johannes Weiner <[email protected]>
3429 L:      [email protected]
3430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3431 S:      Maintained
3432 F:      Documentation/cgroup*
3433 F:      include/linux/cgroup*
3434 F:      kernel/cgroup*
3435
3436 CONTROL GROUP - CPUSET
3437 M:      Li Zefan <[email protected]>
3438 L:      [email protected]
3439 W:      http://www.bullopensource.org/cpuset/
3440 W:      http://oss.sgi.com/projects/cpusets/
3441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
3442 S:      Maintained
3443 F:      Documentation/cgroup-v1/cpusets.txt
3444 F:      include/linux/cpuset.h
3445 F:      kernel/cpuset.c
3446
3447 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
3448 M:      Johannes Weiner <[email protected]>
3449 M:      Michal Hocko <[email protected]>
3450 M:      Vladimir Davydov <[email protected]>
3451 L:      [email protected]
3452 L:      [email protected]
3453 S:      Maintained
3454 F:      mm/memcontrol.c
3455 F:      mm/swap_cgroup.c
3456
3457 CORETEMP HARDWARE MONITORING DRIVER
3458 M:      Fenghua Yu <[email protected]>
3459 L:      [email protected]
3460 S:      Maintained
3461 F:      Documentation/hwmon/coretemp
3462 F:      drivers/hwmon/coretemp.c
3463
3464 COSA/SRP SYNC SERIAL DRIVER
3465 M:      Jan "Yenya" Kasprzak <[email protected]>
3466 W:      http://www.fi.muni.cz/~kas/cosa/
3467 S:      Maintained
3468 F:      drivers/net/wan/cosa*
3469
3470 CPMAC ETHERNET DRIVER
3471 M:      Florian Fainelli <[email protected]>
3472 L:      [email protected]
3473 S:      Maintained
3474 F:      drivers/net/ethernet/ti/cpmac.c
3475
3476 CPU FREQUENCY DRIVERS
3477 M:      "Rafael J. Wysocki" <[email protected]>
3478 M:      Viresh Kumar <[email protected]>
3479 L:      [email protected]
3480 S:      Maintained
3481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3482 T:      git git://git.linaro.org/people/vireshk/linux.git (For ARM Updates)
3483 B:      https://bugzilla.kernel.org
3484 F:      Documentation/cpu-freq/
3485 F:      Documentation/devicetree/bindings/cpufreq/
3486 F:      drivers/cpufreq/
3487 F:      include/linux/cpufreq.h
3488 F:      tools/testing/selftests/cpufreq/
3489
3490 CPU FREQUENCY DRIVERS - ARM BIG LITTLE
3491 M:      Viresh Kumar <[email protected]>
3492 M:      Sudeep Holla <[email protected]>
3493 L:      [email protected]
3494 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
3495 S:      Maintained
3496 F:      drivers/cpufreq/arm_big_little.h
3497 F:      drivers/cpufreq/arm_big_little.c
3498 F:      drivers/cpufreq/arm_big_little_dt.c
3499
3500 CPUIDLE DRIVER - ARM BIG LITTLE
3501 M:      Lorenzo Pieralisi <[email protected]>
3502 M:      Daniel Lezcano <[email protected]>
3503 L:      [email protected]
3504 L:      [email protected]
3505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3506 S:      Maintained
3507 F:      drivers/cpuidle/cpuidle-big_little.c
3508
3509 CPUIDLE DRIVER - ARM EXYNOS
3510 M:      Bartlomiej Zolnierkiewicz <[email protected]>
3511 M:      Daniel Lezcano <[email protected]>
3512 M:      Kukjin Kim <[email protected]>
3513 L:      [email protected]
3514 L:      [email protected]
3515 S:      Supported
3516 F:      drivers/cpuidle/cpuidle-exynos.c
3517 F:      arch/arm/mach-exynos/pm.c
3518
3519 CPUIDLE DRIVERS
3520 M:      "Rafael J. Wysocki" <[email protected]>
3521 M:      Daniel Lezcano <[email protected]>
3522 L:      [email protected]
3523 S:      Maintained
3524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
3525 B:      https://bugzilla.kernel.org
3526 F:      drivers/cpuidle/*
3527 F:      include/linux/cpuidle.h
3528
3529 CPUID/MSR DRIVER
3530 M:      "H. Peter Anvin" <[email protected]>
3531 S:      Maintained
3532 F:      arch/x86/kernel/cpuid.c
3533 F:      arch/x86/kernel/msr.c
3534
3535 CPU POWER MONITORING SUBSYSTEM
3536 M:      Thomas Renninger <[email protected]>
3537 L:      [email protected]
3538 S:      Maintained
3539 F:      tools/power/cpupower/
3540
3541 CRAMFS FILESYSTEM
3542 W:      http://sourceforge.net/projects/cramfs/
3543 S:      Orphan / Obsolete
3544 F:      Documentation/filesystems/cramfs.txt
3545 F:      fs/cramfs/
3546
3547 CRIS PORT
3548 M:      Mikael Starvik <[email protected]>
3549 M:      Jesper Nilsson <[email protected]>
3550 L:      [email protected]
3551 W:      http://developer.axis.com
3552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jesper/cris.git
3553 S:      Maintained
3554 F:      arch/cris/
3555 F:      drivers/tty/serial/crisv10.*
3556
3557 CRYPTO API
3558 M:      Herbert Xu <[email protected]>
3559 M:      "David S. Miller" <[email protected]>
3560 L:      [email protected]
3561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
3562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
3563 S:      Maintained
3564 F:      Documentation/crypto/
3565 F:      Documentation/devicetree/bindings/crypto/
3566 F:      Documentation/DocBook/crypto-API.tmpl
3567 F:      arch/*/crypto/
3568 F:      crypto/
3569 F:      drivers/crypto/
3570 F:      include/crypto/
3571 F:      include/linux/crypto*
3572
3573 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
3574 M:      Neil Horman <[email protected]>
3575 L:      [email protected]
3576 S:      Maintained
3577 F:      crypto/ansi_cprng.c
3578 F:      crypto/rng.c
3579
3580 CS3308 MEDIA DRIVER
3581 M:      Hans Verkuil <[email protected]>
3582 L:      [email protected]
3583 T:      git git://linuxtv.org/media_tree.git
3584 W:      http://linuxtv.org
3585 S:      Odd Fixes
3586 F:      drivers/media/i2c/cs3308.c
3587 F:      drivers/media/i2c/cs3308.h
3588
3589 CS5535 Audio ALSA driver
3590 M:      Jaya Kumar <[email protected]>
3591 S:      Maintained
3592 F:      sound/pci/cs5535audio/
3593
3594 CW1200 WLAN driver
3595 M:      Solomon Peachy <[email protected]>
3596 S:      Maintained
3597 F:      drivers/net/wireless/st/cw1200/
3598
3599 CX18 VIDEO4LINUX DRIVER
3600 M:      Andy Walls <[email protected]>
3601 L:      [email protected] (subscribers-only)
3602 L:      [email protected]
3603 T:      git git://linuxtv.org/media_tree.git
3604 W:      https://linuxtv.org
3605 W:      http://www.ivtvdriver.org/index.php/Cx18
3606 S:      Maintained
3607 F:      Documentation/media/v4l-drivers/cx18*
3608 F:      drivers/media/pci/cx18/
3609 F:      include/uapi/linux/ivtv*
3610
3611 CX2341X MPEG ENCODER HELPER MODULE
3612 M:      Hans Verkuil <[email protected]>
3613 L:      [email protected]
3614 T:      git git://linuxtv.org/media_tree.git
3615 W:      https://linuxtv.org
3616 S:      Maintained
3617 F:      drivers/media/common/cx2341x*
3618 F:      include/media/cx2341x*
3619
3620 CX24120 MEDIA DRIVER
3621 M:      Jemma Denson <[email protected]>
3622 M:      Patrick Boettcher <[email protected]>
3623 L:      [email protected]
3624 W:      https://linuxtv.org
3625 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3626 S:      Maintained
3627 F:      drivers/media/dvb-frontends/cx24120*
3628
3629 CX88 VIDEO4LINUX DRIVER
3630 M:      Mauro Carvalho Chehab <[email protected]>
3631 M:      Mauro Carvalho Chehab <[email protected]>
3632 L:      [email protected]
3633 W:      https://linuxtv.org
3634 T:      git git://linuxtv.org/media_tree.git
3635 S:      Odd fixes
3636 F:      Documentation/media/v4l-drivers/cx88*
3637 F:      drivers/media/pci/cx88/
3638
3639 CXD2820R MEDIA DRIVER
3640 M:      Antti Palosaari <[email protected]>
3641 L:      [email protected]
3642 W:      https://linuxtv.org
3643 W:      http://palosaari.fi/linux/
3644 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3645 T:      git git://linuxtv.org/anttip/media_tree.git
3646 S:      Maintained
3647 F:      drivers/media/dvb-frontends/cxd2820r*
3648
3649 CXGB3 ETHERNET DRIVER (CXGB3)
3650 M:      Santosh Raspatur <[email protected]>
3651 L:      [email protected]
3652 W:      http://www.chelsio.com
3653 S:      Supported
3654 F:      drivers/net/ethernet/chelsio/cxgb3/
3655
3656 CXGB3 ISCSI DRIVER (CXGB3I)
3657 M:      Karen Xie <[email protected]>
3658 L:      [email protected]
3659 W:      http://www.chelsio.com
3660 S:      Supported
3661 F:      drivers/scsi/cxgbi/cxgb3i
3662
3663 CXGB3 IWARP RNIC DRIVER (IW_CXGB3)
3664 M:      Steve Wise <[email protected]>
3665 L:      [email protected]
3666 W:      http://www.openfabrics.org
3667 S:      Supported
3668 F:      drivers/infiniband/hw/cxgb3/
3669 F:      include/uapi/rdma/cxgb3-abi.h
3670
3671 CXGB4 ETHERNET DRIVER (CXGB4)
3672 M:      Ganesh Goudar <[email protected]>
3673 L:      [email protected]
3674 W:      http://www.chelsio.com
3675 S:      Supported
3676 F:      drivers/net/ethernet/chelsio/cxgb4/
3677
3678 CXGB4 ISCSI DRIVER (CXGB4I)
3679 M:      Karen Xie <[email protected]>
3680 L:      [email protected]
3681 W:      http://www.chelsio.com
3682 S:      Supported
3683 F:      drivers/scsi/cxgbi/cxgb4i
3684
3685 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
3686 M:      Steve Wise <[email protected]>
3687 L:      [email protected]
3688 W:      http://www.openfabrics.org
3689 S:      Supported
3690 F:      drivers/infiniband/hw/cxgb4/
3691 F:      include/uapi/rdma/cxgb4-abi.h
3692
3693 CXGB4VF ETHERNET DRIVER (CXGB4VF)
3694 M:      Casey Leedom <[email protected]>
3695 L:      [email protected]
3696 W:      http://www.chelsio.com
3697 S:      Supported
3698 F:      drivers/net/ethernet/chelsio/cxgb4vf/
3699
3700 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
3701 M:      Ian Munsie <[email protected]>
3702 M:      Frederic Barrat <[email protected]>
3703 L:      [email protected]
3704 S:      Supported
3705 F:      arch/powerpc/platforms/powernv/pci-cxl.c
3706 F:      drivers/misc/cxl/
3707 F:      include/misc/cxl*
3708 F:      include/uapi/misc/cxl.h
3709 F:      Documentation/powerpc/cxl.txt
3710 F:      Documentation/ABI/testing/sysfs-class-cxl
3711
3712 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
3713 M:      Manoj N. Kumar <[email protected]>
3714 M:      Matthew R. Ochs <[email protected]>
3715 M:      Uma Krishnan <[email protected]>
3716 L:      [email protected]
3717 S:      Supported
3718 F:      drivers/scsi/cxlflash/
3719 F:      include/uapi/scsi/cxlflash_ioctls.h
3720 F:      Documentation/powerpc/cxlflash.txt
3721
3722 STMMAC ETHERNET DRIVER
3723 M:      Giuseppe Cavallaro <[email protected]>
3724 M:      Alexandre Torgue <[email protected]>
3725 L:      [email protected]
3726 W:      http://www.stlinux.com
3727 S:      Supported
3728 F:      drivers/net/ethernet/stmicro/stmmac/
3729
3730 CYBERPRO FB DRIVER
3731 M:      Russell King <[email protected]>
3732 L:      [email protected] (moderated for non-subscribers)
3733 W:      http://www.armlinux.org.uk/
3734 S:      Maintained
3735 F:      drivers/video/fbdev/cyber2000fb.*
3736
3737 CYCLADES ASYNC MUX DRIVER
3738 W:      http://www.cyclades.com/
3739 S:      Orphan
3740 F:      drivers/tty/cyclades.c
3741 F:      include/linux/cyclades.h
3742 F:      include/uapi/linux/cyclades.h
3743
3744 CYCLADES PC300 DRIVER
3745 W:      http://www.cyclades.com/
3746 S:      Orphan
3747 F:      drivers/net/wan/pc300*
3748
3749 CYPRESS_FIRMWARE MEDIA DRIVER
3750 M:      Antti Palosaari <[email protected]>
3751 L:      [email protected]
3752 W:      https://linuxtv.org
3753 W:      http://palosaari.fi/linux/
3754 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
3755 T:      git git://linuxtv.org/anttip/media_tree.git
3756 S:      Maintained
3757 F:      drivers/media/common/cypress_firmware*
3758
3759 CYTTSP TOUCHSCREEN DRIVER
3760 M:      Ferruh Yigit <[email protected]>
3761 L:      [email protected]
3762 S:      Supported
3763 F:      drivers/input/touchscreen/cyttsp*
3764 F:      include/linux/input/cyttsp.h
3765
3766 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
3767 M:      Joshua Kinard <[email protected]>
3768 S:      Maintained
3769 F:      drivers/rtc/rtc-ds1685.c
3770 F:      include/linux/rtc/ds1685.h
3771
3772 DAMA SLAVE for AX.25
3773 M:      Joerg Reuter <[email protected]>
3774 W:      http://yaina.de/jreuter/
3775 W:      http://www.qsl.net/dl1bke/
3776 L:      [email protected]
3777 S:      Maintained
3778 F:      net/ax25/af_ax25.c
3779 F:      net/ax25/ax25_dev.c
3780 F:      net/ax25/ax25_ds_*
3781 F:      net/ax25/ax25_in.c
3782 F:      net/ax25/ax25_out.c
3783 F:      net/ax25/ax25_timer.c
3784 F:      net/ax25/sysctl_net_ax25.c
3785
3786 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
3787 L:      [email protected]
3788 S:      Orphan
3789 F:      Documentation/networking/dmfe.txt
3790 F:      drivers/net/ethernet/dec/tulip/dmfe.c
3791
3792 DC390/AM53C974 SCSI driver
3793 M:      Hannes Reinecke <[email protected]>
3794 L:      [email protected]
3795 S:      Maintained
3796 F:      drivers/scsi/am53c974.c
3797
3798 DC395x SCSI driver
3799 M:      Oliver Neukum <[email protected]>
3800 M:      Ali Akcaagac <[email protected]>
3801 M:      Jamie Lenehan <[email protected]>
3802 L:      [email protected]
3803 W:      http://twibble.org/dist/dc395x/
3804 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
3805 S:      Maintained
3806 F:      Documentation/scsi/dc395x.txt
3807 F:      drivers/scsi/dc395x.*
3808
3809 DCCP PROTOCOL
3810 M:      Gerrit Renker <[email protected]>
3811 L:      [email protected]
3812 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
3813 S:      Maintained
3814 F:      include/linux/dccp.h
3815 F:      include/uapi/linux/dccp.h
3816 F:      include/linux/tfrc.h
3817 F:      net/dccp/
3818
3819 DECnet NETWORK LAYER
3820 W:      http://linux-decnet.sourceforge.net
3821 L:      [email protected]
3822 S:      Orphan
3823 F:      Documentation/networking/decnet.txt
3824 F:      net/decnet/
3825
3826 DECSTATION PLATFORM SUPPORT
3827 M:      "Maciej W. Rozycki" <[email protected]>
3828 L:      [email protected]
3829 W:      http://www.linux-mips.org/wiki/DECstation
3830 S:      Maintained
3831 F:      arch/mips/dec/
3832 F:      arch/mips/include/asm/dec/
3833 F:      arch/mips/include/asm/mach-dec/
3834
3835 DEFXX FDDI NETWORK DRIVER
3836 M:      "Maciej W. Rozycki" <[email protected]>
3837 S:      Maintained
3838 F:      drivers/net/fddi/defxx.*
3839
3840 DELL LAPTOP DRIVER
3841 M:      Matthew Garrett <[email protected]>
3842 M:      Pali Rohár <[email protected]>
3843 L:      [email protected]
3844 S:      Maintained
3845 F:      drivers/platform/x86/dell-laptop.c
3846
3847 DELL LAPTOP RBTN DRIVER
3848 M:      Pali Rohár <[email protected]>
3849 S:      Maintained
3850 F:      drivers/platform/x86/dell-rbtn.*
3851
3852 DELL LAPTOP FREEFALL DRIVER
3853 M:      Pali Rohár <[email protected]>
3854 S:      Maintained
3855 F:      drivers/platform/x86/dell-smo8800.c
3856
3857 DELL LAPTOP SMM DRIVER
3858 M:      Pali Rohár <[email protected]>
3859 S:      Maintained
3860 F:      drivers/hwmon/dell-smm-hwmon.c
3861 F:      include/uapi/linux/i8k.h
3862
3863 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
3864 M:      Doug Warzecha <[email protected]>
3865 S:      Maintained
3866 F:      Documentation/dcdbas.txt
3867 F:      drivers/firmware/dcdbas.*
3868
3869 DELL WMI EXTRAS DRIVER
3870 M:      Matthew Garrett <[email protected]>
3871 M:      Pali Rohár <[email protected]>
3872 S:      Maintained
3873 F:      drivers/platform/x86/dell-wmi.c
3874
3875 DESIGNWARE USB2 DRD IP DRIVER
3876 M:      John Youn <[email protected]>
3877 L:      [email protected]
3878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3879 S:      Maintained
3880 F:      drivers/usb/dwc2/
3881
3882 DESIGNWARE USB3 DRD IP DRIVER
3883 M:      Felipe Balbi <[email protected]>
3884 L:      [email protected]
3885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
3886 S:      Maintained
3887 F:      drivers/usb/dwc3/
3888
3889 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
3890 M:      Andreas Klinger <[email protected]>
3891 L:      [email protected]
3892 S:      Maintained
3893 F:      drivers/iio/proximity/srf*.c
3894
3895 DEVICE COREDUMP (DEV_COREDUMP)
3896 M:      Johannes Berg <[email protected]>
3897 L:      [email protected]
3898 S:      Maintained
3899 F:      drivers/base/devcoredump.c
3900 F:      include/linux/devcoredump.h
3901
3902 DEVICE FREQUENCY (DEVFREQ)
3903 M:      MyungJoo Ham <[email protected]>
3904 M:      Kyungmin Park <[email protected]>
3905 R:      Chanwoo Choi <[email protected]>
3906 L:      [email protected]
3907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3908 S:      Maintained
3909 F:      drivers/devfreq/
3910 F:      include/linux/devfreq.h
3911 F:      Documentation/devicetree/bindings/devfreq/
3912
3913 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
3914 M:      Chanwoo Choi <[email protected]>
3915 L:      [email protected]
3916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3917 S:      Supported
3918 F:      drivers/devfreq/event/
3919 F:      drivers/devfreq/devfreq-event.c
3920 F:      include/linux/devfreq-event.h
3921 F:      Documentation/devicetree/bindings/devfreq/event/
3922
3923 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
3924 M:      Chanwoo Choi <[email protected]>
3925 L:      [email protected]
3926 L:      [email protected]
3927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mzx/devfreq.git
3928 S:      Maintained
3929 F:      drivers/devfreq/exynos-bus.c
3930 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
3931
3932 DEVICE NUMBER REGISTRY
3933 M:      Torben Mathiasen <[email protected]>
3934 W:      http://lanana.org/docs/device-list/index.html
3935 S:      Maintained
3936
3937 DEVICE-MAPPER  (LVM)
3938 M:      Alasdair Kergon <[email protected]>
3939 M:      Mike Snitzer <[email protected]>
3940 M:      [email protected]
3941 L:      [email protected]
3942 W:      http://sources.redhat.com/dm
3943 Q:      http://patchwork.kernel.org/project/dm-devel/list/
3944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
3945 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
3946 S:      Maintained
3947 F:      Documentation/device-mapper/
3948 F:      drivers/md/dm*
3949 F:      drivers/md/persistent-data/
3950 F:      include/linux/device-mapper.h
3951 F:      include/linux/dm-*.h
3952 F:      include/uapi/linux/dm-*.h
3953
3954 DEVLINK
3955 M:      Jiri Pirko <[email protected]>
3956 L:      [email protected]
3957 S:      Supported
3958 F:      net/core/devlink.c
3959 F:      include/net/devlink.h
3960 F:      include/uapi/linux/devlink.h
3961
3962 DIALOG SEMICONDUCTOR DRIVERS
3963 M:      Support Opensource <[email protected]>
3964 W:      http://www.dialog-semiconductor.com/products
3965 S:      Supported
3966 F:      Documentation/hwmon/da90??
3967 F:      Documentation/devicetree/bindings/mfd/da90*.txt
3968 F:      Documentation/devicetree/bindings/regulator/da92*.txt
3969 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
3970 F:      drivers/gpio/gpio-da90??.c
3971 F:      drivers/hwmon/da90??-hwmon.c
3972 F:      drivers/iio/adc/da91??-*.c
3973 F:      drivers/input/misc/da90??_onkey.c
3974 F:      drivers/input/touchscreen/da9052_tsi.c
3975 F:      drivers/leds/leds-da90??.c
3976 F:      drivers/mfd/da903x.c
3977 F:      drivers/mfd/da90??-*.c
3978 F:      drivers/mfd/da91??-*.c
3979 F:      drivers/power/supply/da9052-battery.c
3980 F:      drivers/power/supply/da91??-*.c
3981 F:      drivers/regulator/da903x.c
3982 F:      drivers/regulator/da9???-regulator.[ch]
3983 F:      drivers/rtc/rtc-da90??.c
3984 F:      drivers/video/backlight/da90??_bl.c
3985 F:      drivers/watchdog/da90??_wdt.c
3986 F:      include/linux/mfd/da903x.h
3987 F:      include/linux/mfd/da9052/
3988 F:      include/linux/mfd/da9055/
3989 F:      include/linux/mfd/da9062/
3990 F:      include/linux/mfd/da9063/
3991 F:      include/linux/mfd/da9150/
3992 F:      include/linux/regulator/da9211.h
3993 F:      include/sound/da[79]*.h
3994 F:      sound/soc/codecs/da[79]*.[ch]
3995
3996 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
3997 M:      William Breathitt Gray <[email protected]>
3998 L:      [email protected]
3999 S:      Maintained
4000 F:      drivers/gpio/gpio-gpio-mm.c
4001
4002 DIGI NEO AND CLASSIC PCI PRODUCTS
4003 M:      Lidza Louina <[email protected]>
4004 M:      Mark Hounschell <[email protected]>
4005 L:      [email protected]
4006 S:      Maintained
4007 F:      drivers/staging/dgnc/
4008
4009 DIOLAN U2C-12 I2C DRIVER
4010 M:      Guenter Roeck <[email protected]>
4011 L:      [email protected]
4012 S:      Maintained
4013 F:      drivers/i2c/busses/i2c-diolan-u2c.c
4014
4015 DIRECT ACCESS (DAX)
4016 M:      Matthew Wilcox <[email protected]>
4017 M:      Ross Zwisler <[email protected]>
4018 L:      [email protected]
4019 S:      Supported
4020 F:      fs/dax.c
4021 F:      include/linux/dax.h
4022 F:      include/trace/events/fs_dax.h
4023
4024 DIRECTORY NOTIFICATION (DNOTIFY)
4025 M:      Eric Paris <[email protected]>
4026 S:      Maintained
4027 F:      Documentation/filesystems/dnotify.txt
4028 F:      fs/notify/dnotify/
4029 F:      include/linux/dnotify.h
4030
4031 DISK GEOMETRY AND PARTITION HANDLING
4032 M:      Andries Brouwer <[email protected]>
4033 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
4034 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
4035 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
4036 S:      Maintained
4037
4038 DISKQUOTA
4039 M:      Jan Kara <[email protected]>
4040 S:      Maintained
4041 F:      Documentation/filesystems/quota.txt
4042 F:      fs/quota/
4043 F:      include/linux/quota*.h
4044 F:      include/uapi/linux/quota*.h
4045
4046 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
4047 M:      Bernie Thompson <[email protected]>
4048 L:      [email protected]
4049 S:      Maintained
4050 W:      http://plugable.com/category/projects/udlfb/
4051 F:      drivers/video/fbdev/udlfb.c
4052 F:      include/video/udlfb.h
4053 F:      Documentation/fb/udlfb.txt
4054
4055 DISTRIBUTED LOCK MANAGER (DLM)
4056 M:      Christine Caulfield <[email protected]>
4057 M:      David Teigland <[email protected]>
4058 L:      [email protected]
4059 W:      http://sources.redhat.com/cluster/
4060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
4061 S:      Supported
4062 F:      fs/dlm/
4063
4064 DMA BUFFER SHARING FRAMEWORK
4065 M:      Sumit Semwal <[email protected]>
4066 S:      Maintained
4067 L:      [email protected]
4068 L:      [email protected]
4069 L:      [email protected] (moderated for non-subscribers)
4070 F:      drivers/dma-buf/
4071 F:      include/linux/dma-buf*
4072 F:      include/linux/reservation.h
4073 F:      include/linux/*fence.h
4074 F:      Documentation/driver-api/dma-buf.rst
4075 T:      git git://anongit.freedesktop.org/drm/drm-misc
4076
4077 SYNC FILE FRAMEWORK
4078 M:      Sumit Semwal <[email protected]>
4079 R:      Gustavo Padovan <[email protected]>
4080 S:      Maintained
4081 L:      [email protected]
4082 L:      [email protected]
4083 F:      drivers/dma-buf/sync_*
4084 F:      drivers/dma-buf/dma-fence*
4085 F:      drivers/dma-buf/sw_sync.c
4086 F:      include/linux/sync_file.h
4087 F:      include/uapi/linux/sync_file.h
4088 F:      Documentation/sync_file.txt
4089 T:      git git://anongit.freedesktop.org/drm/drm-misc
4090
4091 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
4092 M:      Vinod Koul <[email protected]>
4093 L:      [email protected]
4094 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
4095 S:      Maintained
4096 F:      drivers/dma/
4097 F:      include/linux/dmaengine.h
4098 F:      Documentation/devicetree/bindings/dma/
4099 F:      Documentation/dmaengine/
4100 T:      git git://git.infradead.org/users/vkoul/slave-dma.git
4101
4102 DME1737 HARDWARE MONITOR DRIVER
4103 M:      Juerg Haefliger <[email protected]>
4104 L:      [email protected]
4105 S:      Maintained
4106 F:      Documentation/hwmon/dme1737
4107 F:      drivers/hwmon/dme1737.c
4108
4109 DMI/SMBIOS SUPPORT
4110 M:      Jean Delvare <[email protected]>
4111 S:      Maintained
4112 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-dmi/
4113 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
4114 F:      drivers/firmware/dmi-id.c
4115 F:      drivers/firmware/dmi_scan.c
4116 F:      include/linux/dmi.h
4117
4118 DOCUMENTATION
4119 M:      Jonathan Corbet <[email protected]>
4120 L:      [email protected]
4121 S:      Maintained
4122 F:      Documentation/
4123 F:      scripts/docproc.c
4124 F:      scripts/kernel-doc*
4125 X:      Documentation/ABI/
4126 X:      Documentation/devicetree/
4127 X:      Documentation/acpi
4128 X:      Documentation/power
4129 X:      Documentation/spi
4130 X:      Documentation/media
4131 T:      git git://git.lwn.net/linux.git docs-next
4132
4133 DOUBLETALK DRIVER
4134 M:      "James R. Van Zandt" <[email protected]>
4135 L:      [email protected]
4136 S:      Maintained
4137 F:      drivers/char/dtlk.c
4138 F:      include/linux/dtlk.h
4139
4140 DPAA2 DATAPATH I/O (DPIO) DRIVER
4141 M:      Roy Pledge <[email protected]>
4142 L:      [email protected]
4143 S:      Maintained
4144 F:      drivers/staging/fsl-mc/bus/dpio
4145
4146 DPAA2 ETHERNET DRIVER
4147 M:      Ioana Radulescu <[email protected]>
4148 L:      [email protected]
4149 S:      Maintained
4150 F:      drivers/staging/fsl-dpaa2/ethernet
4151
4152 DPT_I2O SCSI RAID DRIVER
4153 M:      Adaptec OEM Raid Solutions <[email protected]>
4154 L:      [email protected]
4155 W:      http://www.adaptec.com/
4156 S:      Maintained
4157 F:      drivers/scsi/dpt*
4158 F:      drivers/scsi/dpt/
4159
4160 DRBD DRIVER
4161 M:      Philipp Reisner <[email protected]>
4162 M:      Lars Ellenberg <[email protected]>
4163 L:      [email protected]
4164 W:      http://www.drbd.org
4165 T:      git git://git.linbit.com/linux-drbd.git
4166 T:      git git://git.linbit.com/drbd-8.4.git
4167 S:      Supported
4168 F:      drivers/block/drbd/
4169 F:      lib/lru_cache.c
4170 F:      Documentation/blockdev/drbd/
4171
4172 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
4173 M:      Greg Kroah-Hartman <[email protected]>
4174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
4175 S:      Supported
4176 F:      Documentation/kobject.txt
4177 F:      drivers/base/
4178 F:      fs/debugfs/
4179 F:      fs/sysfs/
4180 F:      include/linux/debugfs.h
4181 F:      include/linux/kobj*
4182 F:      lib/kobj*
4183
4184 DRM DRIVERS
4185 M:      David Airlie <[email protected]>
4186 L:      [email protected]
4187 T:      git git://people.freedesktop.org/~airlied/linux
4188 B:      https://bugs.freedesktop.org/
4189 C:      irc://chat.freenode.net/dri-devel
4190 S:      Maintained
4191 F:      drivers/gpu/drm/
4192 F:      drivers/gpu/vga/
4193 F:      Documentation/devicetree/bindings/display/
4194 F:      Documentation/devicetree/bindings/gpu/
4195 F:      Documentation/devicetree/bindings/video/
4196 F:      Documentation/gpu/
4197 F:      include/drm/
4198 F:      include/uapi/drm/
4199 F:      include/linux/vga*
4200
4201 DRM DRIVERS AND MISC GPU PATCHES
4202 M:      Daniel Vetter <[email protected]>
4203 M:      Jani Nikula <[email protected]>
4204 M:      Sean Paul <[email protected]>
4205 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
4206 S:      Maintained
4207 T:      git git://anongit.freedesktop.org/drm/drm-misc
4208 F:      Documentation/gpu/
4209 F:      drivers/gpu/vga/
4210 F:      drivers/gpu/drm/*
4211 F:      include/drm/drm*
4212 F:      include/uapi/drm/drm*
4213 F:      include/linux/vga*
4214
4215 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
4216 M:      Dave Airlie <[email protected]>
4217 S:      Odd Fixes
4218 F:      drivers/gpu/drm/ast/
4219
4220 DRM DRIVERS FOR BRIDGE CHIPS
4221 M:      Archit Taneja <[email protected]>
4222 S:      Maintained
4223 T:      git git://anongit.freedesktop.org/drm/drm-misc
4224 F:      drivers/gpu/drm/bridge/
4225
4226 DRM DRIVER FOR BOCHS VIRTUAL GPU
4227 M:      Gerd Hoffmann <[email protected]>
4228 L:      [email protected]
4229 T:      git git://anongit.freedesktop.org/drm/drm-misc
4230 S:      Maintained
4231 F:      drivers/gpu/drm/bochs/
4232
4233 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
4234 M:      Dave Airlie <[email protected]>
4235 M:      Gerd Hoffmann <[email protected]>
4236 L:      [email protected]
4237 T:      git git://anongit.freedesktop.org/drm/drm-misc
4238 S:      Obsolete
4239 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
4240 F:      drivers/gpu/drm/cirrus/
4241
4242 RADEON and AMDGPU DRM DRIVERS
4243 M:      Alex Deucher <[email protected]>
4244 M:      Christian König <[email protected]>
4245 L:      [email protected]
4246 T:      git git://people.freedesktop.org/~agd5f/linux
4247 S:      Supported
4248 F:      drivers/gpu/drm/radeon/
4249 F:      include/uapi/drm/radeon_drm.h
4250 F:      drivers/gpu/drm/amd/
4251 F:      include/uapi/drm/amdgpu_drm.h
4252
4253 DRM PANEL DRIVERS
4254 M:      Thierry Reding <[email protected]>
4255 L:      [email protected]
4256 T:      git git://anongit.freedesktop.org/tegra/linux.git
4257 S:      Maintained
4258 F:      drivers/gpu/drm/drm_panel.c
4259 F:      drivers/gpu/drm/panel/
4260 F:      include/drm/drm_panel.h
4261 F:      Documentation/devicetree/bindings/display/panel/
4262
4263 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
4264 M:      Daniel Vetter <[email protected]>
4265 M:      Jani Nikula <[email protected]>
4266 L:      [email protected]
4267 W:      https://01.org/linuxgraphics/
4268 B:      https://01.org/linuxgraphics/documentation/how-report-bugs
4269 C:      irc://chat.freenode.net/intel-gfx
4270 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
4271 T:      git git://anongit.freedesktop.org/drm-intel
4272 S:      Supported
4273 F:      drivers/gpu/drm/i915/
4274 F:      include/drm/i915*
4275 F:      include/uapi/drm/i915_drm.h
4276 F:      Documentation/gpu/i915.rst
4277
4278 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
4279 M:      Zhenyu Wang <[email protected]>
4280 M:      Zhi Wang <[email protected]>
4281 L:      [email protected]
4282 L:      [email protected]
4283 W:      https://01.org/igvt-g
4284 T:      git https://github.com/01org/gvt-linux.git
4285 S:      Supported
4286 F:      drivers/gpu/drm/i915/gvt/
4287
4288 DRM DRIVERS FOR ATMEL HLCDC
4289 M:      Boris Brezillon <[email protected]>
4290 L:      [email protected]
4291 S:      Supported
4292 F:      drivers/gpu/drm/atmel-hlcdc/
4293 F:      Documentation/devicetree/bindings/drm/atmel/
4294 T:      git git://anongit.freedesktop.org/drm/drm-misc
4295
4296 DRM DRIVERS FOR ALLWINNER A10
4297 M:      Maxime Ripard  <[email protected]>
4298 L:      [email protected]
4299 S:      Supported
4300 F:      drivers/gpu/drm/sun4i/
4301 F:      Documentation/devicetree/bindings/display/sunxi/sun4i-drm.txt
4302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux.git
4303
4304 DRM DRIVERS FOR AMLOGIC SOCS
4305 M:      Neil Armstrong <[email protected]>
4306 L:      [email protected]
4307 L:      [email protected]
4308 W:      http://linux-meson.com/
4309 S:      Supported
4310 F:      drivers/gpu/drm/meson/
4311 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.txt
4312 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.txt
4313 F:      Documentation/gpu/meson.rst
4314 T:      git git://anongit.freedesktop.org/drm/drm-misc
4315
4316 DRM DRIVERS FOR EXYNOS
4317 M:      Inki Dae <[email protected]>
4318 M:      Joonyoung Shim <[email protected]>
4319 M:      Seung-Woo Kim <[email protected]>
4320 M:      Kyungmin Park <[email protected]>
4321 L:      [email protected]
4322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
4323 S:      Supported
4324 F:      drivers/gpu/drm/exynos/
4325 F:      include/uapi/drm/exynos_drm.h
4326 F:      Documentation/devicetree/bindings/display/exynos/
4327
4328 DRM DRIVERS FOR FREESCALE DCU
4329 M:      Stefan Agner <[email protected]>
4330 M:      Alison Wang <[email protected]>
4331 L:      [email protected]
4332 S:      Supported
4333 F:      drivers/gpu/drm/fsl-dcu/
4334 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
4335 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
4336 F:      Documentation/devicetree/bindings/display/panel/nec,nl4827hc19_05b.txt
4337
4338 DRM DRIVERS FOR FREESCALE IMX
4339 M:      Philipp Zabel <[email protected]>
4340 L:      [email protected]
4341 S:      Maintained
4342 F:      drivers/gpu/drm/imx/
4343 F:      drivers/gpu/ipu-v3/
4344 F:      Documentation/devicetree/bindings/display/imx/
4345
4346 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
4347 M:      Patrik Jakobsson <[email protected]>
4348 L:      [email protected]
4349 T:      git git://github.com/patjak/drm-gma500
4350 S:      Maintained
4351 F:      drivers/gpu/drm/gma500/
4352
4353 DRM DRIVERS FOR HISILICON
4354 M:      Xinliang Liu <[email protected]>
4355 M:      Rongrong Zou <[email protected]>
4356 R:      Xinwei Kong <[email protected]>
4357 R:      Chen Feng <[email protected]>
4358 L:      [email protected]
4359 T:      git git://github.com/xin3liang/linux.git
4360 S:      Maintained
4361 F:      drivers/gpu/drm/hisilicon/
4362 F:      Documentation/devicetree/bindings/display/hisilicon/
4363
4364 DRM DRIVER FOR INTEL I810 VIDEO CARDS
4365 S:      Orphan / Obsolete
4366 F:      drivers/gpu/drm/i810/
4367 F:      include/uapi/drm/i810_drm.h
4368
4369 DRM DRIVERS FOR MEDIATEK
4370 M:      CK Hu <[email protected]>
4371 M:      Philipp Zabel <[email protected]>
4372 L:      [email protected]
4373 S:      Supported
4374 F:      drivers/gpu/drm/mediatek/
4375 F:      Documentation/devicetree/bindings/display/mediatek/
4376
4377 DRM DRIVER FOR MI0283QT
4378 M:      Noralf Trønnes <[email protected]>
4379 S:      Maintained
4380 F:      drivers/gpu/drm/tinydrm/mi0283qt.c
4381 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
4382
4383 DRM DRIVER FOR MSM ADRENO GPU
4384 M:      Rob Clark <[email protected]>
4385 L:      [email protected]
4386 L:      [email protected]
4387 L:      [email protected]
4388 T:      git git://people.freedesktop.org/~robclark/linux
4389 S:      Maintained
4390 F:      drivers/gpu/drm/msm/
4391 F:      include/uapi/drm/msm_drm.h
4392 F:      Documentation/devicetree/bindings/display/msm/
4393
4394 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
4395 M:      Ben Skeggs <[email protected]>
4396 L:      [email protected]
4397 L:      [email protected]
4398 T:      git git://github.com/skeggsb/linux
4399 S:      Supported
4400 F:      drivers/gpu/drm/nouveau/
4401 F:      include/uapi/drm/nouveau_drm.h
4402
4403 DRM DRIVERS FOR NVIDIA TEGRA
4404 M:      Thierry Reding <[email protected]>
4405 L:      [email protected]
4406 L:      [email protected]
4407 T:      git git://anongit.freedesktop.org/tegra/linux.git
4408 S:      Supported
4409 F:      drivers/gpu/drm/tegra/
4410 F:      drivers/gpu/host1x/
4411 F:      include/linux/host1x.h
4412 F:      include/uapi/drm/tegra_drm.h
4413 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
4414
4415 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
4416 S:      Orphan / Obsolete
4417 F:      drivers/gpu/drm/mga/
4418 F:      include/uapi/drm/mga_drm.h
4419
4420 DRM DRIVER FOR MGA G200 SERVER GRAPHICS CHIPS
4421 M:      Dave Airlie <[email protected]>
4422 S:      Odd Fixes
4423 F:      drivers/gpu/drm/mgag200/
4424
4425 DRM DRIVER FOR RAGE 128 VIDEO CARDS
4426 S:      Orphan / Obsolete
4427 F:      drivers/gpu/drm/r128/
4428 F:      include/uapi/drm/r128_drm.h
4429
4430 DRM DRIVERS FOR RENESAS
4431 M:      Laurent Pinchart <[email protected]>
4432 L:      [email protected]
4433 L:      [email protected]
4434 T:      git git://linuxtv.org/pinchartl/fbdev
4435 S:      Supported
4436 F:      drivers/gpu/drm/rcar-du/
4437 F:      drivers/gpu/drm/shmobile/
4438 F:      include/linux/platform_data/shmob_drm.h
4439 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.txt
4440 F:      Documentation/devicetree/bindings/display/renesas,du.txt
4441
4442 DRM DRIVER FOR QXL VIRTUAL GPU
4443 M:      Dave Airlie <[email protected]>
4444 M:      Gerd Hoffmann <[email protected]>
4445 L:      [email protected]
4446 T:      git git://anongit.freedesktop.org/drm/drm-misc
4447 S:      Maintained
4448 F:      drivers/gpu/drm/qxl/
4449 F:      include/uapi/drm/qxl_drm.h
4450
4451 DRM DRIVERS FOR ROCKCHIP
4452 M:      Mark Yao <[email protected]>
4453 L:      [email protected]
4454 S:      Maintained
4455 F:      drivers/gpu/drm/rockchip/
4456 F:      Documentation/devicetree/bindings/display/rockchip/
4457 T:      git git://anongit.freedesktop.org/drm/drm-misc
4458
4459 DRM DRIVER FOR SAVAGE VIDEO CARDS
4460 S:      Orphan / Obsolete
4461 F:      drivers/gpu/drm/savage/
4462 F:      include/uapi/drm/savage_drm.h
4463
4464 DRM DRIVER FOR SIS VIDEO CARDS
4465 S:      Orphan / Obsolete
4466 F:      drivers/gpu/drm/sis/
4467 F:      include/uapi/drm/sis_drm.h
4468
4469 DRM DRIVERS FOR STI
4470 M:      Benjamin Gaignard <[email protected]>
4471 M:      Vincent Abriou <[email protected]>
4472 L:      [email protected]
4473 T:      git git://anongit.freedesktop.org/drm/drm-misc
4474 S:      Maintained
4475 F:      drivers/gpu/drm/sti
4476 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
4477
4478 DRM DRIVER FOR TDFX VIDEO CARDS
4479 S:      Orphan / Obsolete
4480 F:      drivers/gpu/drm/tdfx/
4481
4482 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
4483 M:      Dave Airlie <[email protected]>
4484 S:      Odd Fixes
4485 F:      drivers/gpu/drm/udl/
4486
4487 DRM DRIVERS FOR VIVANTE GPU IP
4488 M:      Lucas Stach <[email protected]>
4489 R:      Russell King <[email protected]>
4490 R:      Christian Gmeiner <[email protected]>
4491 L:      [email protected]
4492 L:      [email protected]
4493 S:      Maintained
4494 F:      drivers/gpu/drm/etnaviv/
4495 F:      include/uapi/drm/etnaviv_drm.h
4496 F:      Documentation/devicetree/bindings/display/etnaviv/
4497
4498 DRM DRIVER FOR VMWARE VIRTUAL GPU
4499 M:      "VMware Graphics" <[email protected]>
4500 M:      Sinclair Yeh <[email protected]>
4501 M:      Thomas Hellstrom <[email protected]>
4502 L:      [email protected]
4503 T:      git git://people.freedesktop.org/~syeh/repos_linux
4504 T:      git git://people.freedesktop.org/~thomash/linux
4505 S:      Supported
4506 F:      drivers/gpu/drm/vmwgfx/
4507 F:      include/uapi/drm/vmwgfx_drm.h
4508
4509 DRM DRIVERS FOR VC4
4510 M:      Eric Anholt <[email protected]>
4511 T:      git git://github.com/anholt/linux
4512 S:      Supported
4513 F:      drivers/gpu/drm/vc4/
4514 F:      include/uapi/drm/vc4_drm.h
4515 F:      Documentation/devicetree/bindings/display/brcm,bcm-vc4.txt
4516 T:      git git://anongit.freedesktop.org/drm/drm-misc
4517
4518 DRM DRIVERS FOR TI OMAP
4519 M:      Tomi Valkeinen <[email protected]>
4520 L:      [email protected]
4521 S:      Maintained
4522 F:      drivers/gpu/drm/omapdrm/
4523 F:      Documentation/devicetree/bindings/display/ti/
4524
4525 DRM DRIVERS FOR TI LCDC
4526 M:      Jyri Sarha <[email protected]>
4527 R:      Tomi Valkeinen <[email protected]>
4528 L:      [email protected]
4529 S:      Maintained
4530 F:      drivers/gpu/drm/tilcdc/
4531 F:      Documentation/devicetree/bindings/display/tilcdc/
4532
4533 DRM DRIVERS FOR ZTE ZX
4534 M:      Shawn Guo <[email protected]>
4535 L:      [email protected]
4536 S:      Maintained
4537 F:      drivers/gpu/drm/zte/
4538 F:      Documentation/devicetree/bindings/display/zte,vou.txt
4539 T:      git git://anongit.freedesktop.org/drm/drm-misc
4540
4541 DSBR100 USB FM RADIO DRIVER
4542 M:      Alexey Klimov <[email protected]>
4543 L:      [email protected]
4544 T:      git git://linuxtv.org/media_tree.git
4545 S:      Maintained
4546 F:      drivers/media/radio/dsbr100.c
4547
4548 DSCC4 DRIVER
4549 M:      Francois Romieu <[email protected]>
4550 L:      [email protected]
4551 S:      Maintained
4552 F:      drivers/net/wan/dscc4.c
4553
4554 DT3155 MEDIA DRIVER
4555 M:      Hans Verkuil <[email protected]>
4556 L:      [email protected]
4557 T:      git git://linuxtv.org/media_tree.git
4558 W:      https://linuxtv.org
4559 S:      Odd Fixes
4560 F:      drivers/media/pci/dt3155/
4561
4562 DVB_USB_AF9015 MEDIA DRIVER
4563 M:      Antti Palosaari <[email protected]>
4564 L:      [email protected]
4565 W:      https://linuxtv.org
4566 W:      http://palosaari.fi/linux/
4567 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4568 T:      git git://linuxtv.org/anttip/media_tree.git
4569 S:      Maintained
4570 F:      drivers/media/usb/dvb-usb-v2/af9015*
4571
4572 DVB_USB_AF9035 MEDIA DRIVER
4573 M:      Antti Palosaari <[email protected]>
4574 L:      [email protected]
4575 W:      https://linuxtv.org
4576 W:      http://palosaari.fi/linux/
4577 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4578 T:      git git://linuxtv.org/anttip/media_tree.git
4579 S:      Maintained
4580 F:      drivers/media/usb/dvb-usb-v2/af9035*
4581
4582 DVB_USB_ANYSEE MEDIA DRIVER
4583 M:      Antti Palosaari <[email protected]>
4584 L:      [email protected]
4585 W:      https://linuxtv.org
4586 W:      http://palosaari.fi/linux/
4587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4588 T:      git git://linuxtv.org/anttip/media_tree.git
4589 S:      Maintained
4590 F:      drivers/media/usb/dvb-usb-v2/anysee*
4591
4592 DVB_USB_AU6610 MEDIA DRIVER
4593 M:      Antti Palosaari <[email protected]>
4594 L:      [email protected]
4595 W:      https://linuxtv.org
4596 W:      http://palosaari.fi/linux/
4597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4598 T:      git git://linuxtv.org/anttip/media_tree.git
4599 S:      Maintained
4600 F:      drivers/media/usb/dvb-usb-v2/au6610*
4601
4602 DVB_USB_CE6230 MEDIA DRIVER
4603 M:      Antti Palosaari <[email protected]>
4604 L:      [email protected]
4605 W:      https://linuxtv.org
4606 W:      http://palosaari.fi/linux/
4607 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4608 T:      git git://linuxtv.org/anttip/media_tree.git
4609 S:      Maintained
4610 F:      drivers/media/usb/dvb-usb-v2/ce6230*
4611
4612 DVB_USB_CXUSB MEDIA DRIVER
4613 M:      Michael Krufky <[email protected]>
4614 L:      [email protected]
4615 W:      https://linuxtv.org
4616 W:      http://github.com/mkrufky
4617 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4618 T:      git git://linuxtv.org/media_tree.git
4619 S:      Maintained
4620 F:      drivers/media/usb/dvb-usb/cxusb*
4621
4622 DVB_USB_EC168 MEDIA DRIVER
4623 M:      Antti Palosaari <[email protected]>
4624 L:      [email protected]
4625 W:      https://linuxtv.org
4626 W:      http://palosaari.fi/linux/
4627 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4628 T:      git git://linuxtv.org/anttip/media_tree.git
4629 S:      Maintained
4630 F:      drivers/media/usb/dvb-usb-v2/ec168*
4631
4632 DVB_USB_GL861 MEDIA DRIVER
4633 M:      Antti Palosaari <[email protected]>
4634 L:      [email protected]
4635 W:      https://linuxtv.org
4636 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4637 T:      git git://linuxtv.org/anttip/media_tree.git
4638 S:      Maintained
4639 F:      drivers/media/usb/dvb-usb-v2/gl861*
4640
4641 DVB_USB_MXL111SF MEDIA DRIVER
4642 M:      Michael Krufky <[email protected]>
4643 L:      [email protected]
4644 W:      https://linuxtv.org
4645 W:      http://github.com/mkrufky
4646 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4647 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
4648 S:      Maintained
4649 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
4650
4651 DVB_USB_RTL28XXU MEDIA DRIVER
4652 M:      Antti Palosaari <[email protected]>
4653 L:      [email protected]
4654 W:      https://linuxtv.org
4655 W:      http://palosaari.fi/linux/
4656 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4657 T:      git git://linuxtv.org/anttip/media_tree.git
4658 S:      Maintained
4659 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
4660
4661 DVB_USB_V2 MEDIA DRIVER
4662 M:      Antti Palosaari <[email protected]>
4663 L:      [email protected]
4664 W:      https://linuxtv.org
4665 W:      http://palosaari.fi/linux/
4666 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4667 T:      git git://linuxtv.org/anttip/media_tree.git
4668 S:      Maintained
4669 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
4670 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
4671
4672 DYNAMIC DEBUG
4673 M:      Jason Baron <[email protected]>
4674 S:      Maintained
4675 F:      lib/dynamic_debug.c
4676 F:      include/linux/dynamic_debug.h
4677
4678 DZ DECSTATION DZ11 SERIAL DRIVER
4679 M:      "Maciej W. Rozycki" <[email protected]>
4680 S:      Maintained
4681 F:      drivers/tty/serial/dz.*
4682
4683 E3X0 POWER BUTTON DRIVER
4684 M:      Moritz Fischer <[email protected]>
4685 L:      [email protected]
4686 W:      http://www.ettus.com
4687 S:      Supported
4688 F:      drivers/input/misc/e3x0-button.c
4689 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
4690
4691 E4000 MEDIA DRIVER
4692 M:      Antti Palosaari <[email protected]>
4693 L:      [email protected]
4694 W:      https://linuxtv.org
4695 W:      http://palosaari.fi/linux/
4696 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4697 T:      git git://linuxtv.org/anttip/media_tree.git
4698 S:      Maintained
4699 F:      drivers/media/tuners/e4000*
4700
4701 EATA ISA/EISA/PCI SCSI DRIVER
4702 M:      Dario Ballabio <[email protected]>
4703 L:      [email protected]
4704 S:      Maintained
4705 F:      drivers/scsi/eata.c
4706
4707 EC100 MEDIA DRIVER
4708 M:      Antti Palosaari <[email protected]>
4709 L:      [email protected]
4710 W:      https://linuxtv.org
4711 W:      http://palosaari.fi/linux/
4712 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
4713 T:      git git://linuxtv.org/anttip/media_tree.git
4714 S:      Maintained
4715 F:      drivers/media/dvb-frontends/ec100*
4716
4717 ECRYPT FILE SYSTEM
4718 M:      Tyler Hicks <[email protected]>
4719 L:      [email protected]
4720 W:      http://ecryptfs.org
4721 W:      https://launchpad.net/ecryptfs
4722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
4723 S:      Supported
4724 F:      Documentation/filesystems/ecryptfs.txt
4725 F:      fs/ecryptfs/
4726
4727 EDAC-CORE
4728 M:      Borislav Petkov <[email protected]>
4729 M:      Mauro Carvalho Chehab <[email protected]>
4730 M:      Mauro Carvalho Chehab <[email protected]>
4731 L:      [email protected]
4732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp.git for-next
4733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-edac.git linux_next
4734 S:      Supported
4735 F:      Documentation/admin-guide/ras.rst
4736 F:      Documentation/driver-api/edac.rst
4737 F:      drivers/edac/
4738 F:      include/linux/edac.h
4739
4740 EDAC-AMD64
4741 M:      Borislav Petkov <[email protected]>
4742 L:      [email protected]
4743 S:      Maintained
4744 F:      drivers/edac/amd64_edac*
4745
4746 EDAC-CALXEDA
4747 M:      Robert Richter <[email protected]>
4748 L:      [email protected]
4749 S:      Maintained
4750 F:      drivers/edac/highbank*
4751
4752 EDAC-CAVIUM
4753 M:      Ralf Baechle <[email protected]>
4754 M:      David Daney <[email protected]>
4755 L:      [email protected]
4756 L:      [email protected]
4757 S:      Supported
4758 F:      drivers/edac/octeon_edac*
4759 F:      drivers/edac/thunderx_edac*
4760
4761 EDAC-E752X
4762 M:      Mark Gross <[email protected]>
4763 L:      [email protected]
4764 S:      Maintained
4765 F:      drivers/edac/e752x_edac.c
4766
4767 EDAC-E7XXX
4768 L:      [email protected]
4769 S:      Maintained
4770 F:      drivers/edac/e7xxx_edac.c
4771
4772 EDAC-FSL_DDR
4773 M:      York Sun <[email protected]>
4774 L:      [email protected]
4775 S:      Maintained
4776 F:      drivers/edac/fsl_ddr_edac.*
4777
4778 EDAC-GHES
4779 M:      Mauro Carvalho Chehab <[email protected]>
4780 M:      Mauro Carvalho Chehab <[email protected]>
4781 L:      [email protected]
4782 S:      Maintained
4783 F:      drivers/edac/ghes_edac.c
4784
4785 EDAC-I82443BXGX
4786 M:      Tim Small <[email protected]>
4787 L:      [email protected]
4788 S:      Maintained
4789 F:      drivers/edac/i82443bxgx_edac.c
4790
4791 EDAC-I3000
4792 L:      [email protected]
4793 S:      Orphan
4794 F:      drivers/edac/i3000_edac.c
4795
4796 EDAC-I5000
4797 L:      [email protected]
4798 S:      Maintained
4799 F:      drivers/edac/i5000_edac.c
4800
4801 EDAC-I5400
4802 M:      Mauro Carvalho Chehab <[email protected]>
4803 M:      Mauro Carvalho Chehab <[email protected]>
4804 L:      [email protected]
4805 S:      Maintained
4806 F:      drivers/edac/i5400_edac.c
4807
4808 EDAC-I7300
4809 M:      Mauro Carvalho Chehab <[email protected]>
4810 M:      Mauro Carvalho Chehab <[email protected]>
4811 L:      [email protected]
4812 S:      Maintained
4813 F:      drivers/edac/i7300_edac.c
4814
4815 EDAC-I7CORE
4816 M:      Mauro Carvalho Chehab <[email protected]>
4817 M:      Mauro Carvalho Chehab <[email protected]>
4818 L:      [email protected]
4819 S:      Maintained
4820 F:      drivers/edac/i7core_edac.c
4821
4822 EDAC-I82975X
4823 M:      Ranganathan Desikan <[email protected]>
4824 M:      "Arvind R." <[email protected]>
4825 L:      [email protected]
4826 S:      Maintained
4827 F:      drivers/edac/i82975x_edac.c
4828
4829 EDAC-IE31200
4830 M:      Jason Baron <[email protected]>
4831 L:      [email protected]
4832 S:      Maintained
4833 F:      drivers/edac/ie31200_edac.c
4834
4835 EDAC-MPC85XX
4836 M:      Johannes Thumshirn <[email protected]>
4837 L:      [email protected]
4838 S:      Maintained
4839 F:      drivers/edac/mpc85xx_edac.[ch]
4840
4841 EDAC-PND2
4842 M:      Tony Luck <[email protected]>
4843 L:      [email protected]
4844 S:      Maintained
4845 F:      drivers/edac/pnd2_edac.[ch]
4846
4847 EDAC-PASEMI
4848 M:      Egor Martovetsky <[email protected]>
4849 L:      [email protected]
4850 S:      Maintained
4851 F:      drivers/edac/pasemi_edac.c
4852
4853 EDAC-R82600
4854 M:      Tim Small <[email protected]>
4855 L:      [email protected]
4856 S:      Maintained
4857 F:      drivers/edac/r82600_edac.c
4858
4859 EDAC-SBRIDGE
4860 M:      Mauro Carvalho Chehab <[email protected]>
4861 M:      Mauro Carvalho Chehab <[email protected]>
4862 L:      [email protected]
4863 S:      Maintained
4864 F:      drivers/edac/sb_edac.c
4865
4866 EDAC-SKYLAKE
4867 M:      Tony Luck <[email protected]>
4868 L:      [email protected]
4869 S:      Maintained
4870 F:      drivers/edac/skx_edac.c
4871
4872 EDAC-XGENE
4873 APPLIED MICRO (APM) X-GENE SOC EDAC
4874 M:     Loc Ho <[email protected]>
4875 S:     Supported
4876 F:     drivers/edac/xgene_edac.c
4877 F:     Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
4878
4879 EDIROL UA-101/UA-1000 DRIVER
4880 M:      Clemens Ladisch <[email protected]>
4881 L:      [email protected] (moderated for non-subscribers)
4882 T:      git git://git.alsa-project.org/alsa-kernel.git
4883 S:      Maintained
4884 F:      sound/usb/misc/ua101.c
4885
4886 EXTENSIBLE FIRMWARE INTERFACE (EFI)
4887 M:      Matt Fleming <[email protected]>
4888 M:      Ard Biesheuvel <[email protected]>
4889 L:      [email protected]
4890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
4891 S:      Maintained
4892 F:      Documentation/efi-stub.txt
4893 F:      arch/*/kernel/efi.c
4894 F:      arch/x86/boot/compressed/eboot.[ch]
4895 F:      arch/*/include/asm/efi.h
4896 F:      arch/x86/platform/efi/
4897 F:      drivers/firmware/efi/
4898 F:      include/linux/efi*.h
4899 F:      arch/arm/boot/compressed/efi-header.S
4900 F:      arch/arm64/kernel/efi-entry.S
4901
4902 EFI VARIABLE FILESYSTEM
4903 M:      Matthew Garrett <[email protected]>
4904 M:      Jeremy Kerr <[email protected]>
4905 M:      Matt Fleming <[email protected]>
4906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mfleming/efi.git
4907 L:      [email protected]
4908 S:      Maintained
4909 F:      fs/efivarfs/
4910
4911 EFIFB FRAMEBUFFER DRIVER
4912 L:      [email protected]
4913 M:      Peter Jones <[email protected]>
4914 S:      Maintained
4915 F:      drivers/video/fbdev/efifb.c
4916
4917 EFI TEST DRIVER
4918 L:      [email protected]
4919 M:      Ivan Hu <[email protected]>
4920 M:      Matt Fleming <[email protected]>
4921 S:      Maintained
4922 F:      drivers/firmware/efi/test/
4923
4924 EFS FILESYSTEM
4925 W:      http://aeschi.ch.eu.org/efs/
4926 S:      Orphan
4927 F:      fs/efs/
4928
4929 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
4930 M:      Douglas Miller <[email protected]>
4931 L:      [email protected]
4932 S:      Maintained
4933 F:      drivers/net/ethernet/ibm/ehea/
4934
4935 EM28XX VIDEO4LINUX DRIVER
4936 M:      Mauro Carvalho Chehab <[email protected]>
4937 M:      Mauro Carvalho Chehab <[email protected]>
4938 L:      [email protected]
4939 W:      https://linuxtv.org
4940 T:      git git://linuxtv.org/media_tree.git
4941 S:      Maintained
4942 F:      drivers/media/usb/em28xx/
4943 F:      Documentation/media/v4l-drivers/em28xx*
4944
4945 EMBEDDED LINUX
4946 M:      Paul Gortmaker <[email protected]>
4947 M:      Matt Mackall <[email protected]>
4948 M:      David Woodhouse <[email protected]>
4949 L:      [email protected]
4950 S:      Maintained
4951
4952 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
4953 M:      James Smart <[email protected]>
4954 M:      Dick Kennedy <[email protected]>
4955 L:      [email protected]
4956 W:      http://www.broadcom.com
4957 S:      Supported
4958 F:      drivers/scsi/lpfc/
4959
4960 ENE CB710 FLASH CARD READER DRIVER
4961 M:      Michał Mirosław <[email protected]>
4962 S:      Maintained
4963 F:      drivers/misc/cb710/
4964 F:      drivers/mmc/host/cb710-mmc.*
4965 F:      include/linux/cb710.h
4966
4967 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
4968 M:      Maxim Levitsky <[email protected]>
4969 S:      Maintained
4970 F:      drivers/media/rc/ene_ir.*
4971
4972 EPSON S1D13XXX FRAMEBUFFER DRIVER
4973 M:      Kristoffer Ericson <[email protected]>
4974 S:      Maintained
4975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
4976 F:      drivers/video/fbdev/s1d13xxxfb.c
4977 F:      include/video/s1d13xxxfb.h
4978
4979 ET131X NETWORK DRIVER
4980 M:      Mark Einon <[email protected]>
4981 S:      Odd Fixes
4982 F:      drivers/net/ethernet/agere/
4983
4984 ETHERNET BRIDGE
4985 M:      Stephen Hemminger <[email protected]>
4986 L:      [email protected] (moderated for non-subscribers)
4987 L:      [email protected]
4988 W:      http://www.linuxfoundation.org/en/Net:Bridge
4989 S:      Maintained
4990 F:      include/linux/netfilter_bridge/
4991 F:      net/bridge/
4992
4993 ETHERNET PHY LIBRARY
4994 M:      Andrew Lunn <[email protected]>
4995 M:      Florian Fainelli <[email protected]>
4996 L:      [email protected]
4997 S:      Maintained
4998 F:      include/linux/phy.h
4999 F:      include/linux/phy_fixed.h
5000 F:      drivers/net/phy/
5001 F:      Documentation/networking/phy.txt
5002 F:      drivers/of/of_mdio.c
5003 F:      drivers/of/of_net.c
5004
5005 EXT2 FILE SYSTEM
5006 M:      Jan Kara <[email protected]>
5007 L:      [email protected]
5008 S:      Maintained
5009 F:      Documentation/filesystems/ext2.txt
5010 F:      fs/ext2/
5011 F:      include/linux/ext2*
5012
5013 EXT4 FILE SYSTEM
5014 M:      "Theodore Ts'o" <[email protected]>
5015 M:      Andreas Dilger <[email protected]>
5016 L:      [email protected]
5017 W:      http://ext4.wiki.kernel.org
5018 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
5019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
5020 S:      Maintained
5021 F:      Documentation/filesystems/ext4.txt
5022 F:      fs/ext4/
5023
5024 Extended Verification Module (EVM)
5025 M:      Mimi Zohar <[email protected]>
5026 L:      [email protected]
5027 L:      [email protected]
5028 S:      Supported
5029 F:      security/integrity/evm/
5030
5031 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
5032 M:      MyungJoo Ham <[email protected]>
5033 M:      Chanwoo Choi <[email protected]>
5034 L:      [email protected]
5035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
5036 S:      Maintained
5037 F:      drivers/extcon/
5038 F:      include/linux/extcon/
5039 F:      include/linux/extcon.h
5040 F:      Documentation/extcon/
5041 F:      Documentation/devicetree/bindings/extcon/
5042
5043 EXYNOS DP DRIVER
5044 M:      Jingoo Han <[email protected]>
5045 L:      [email protected]
5046 S:      Maintained
5047 F:      drivers/gpu/drm/exynos/exynos_dp*
5048
5049 EXYNOS SYSMMU (IOMMU) driver
5050 M:      Marek Szyprowski <[email protected]>
5051 L:      [email protected]
5052 S:      Maintained
5053 F:      drivers/iommu/exynos-iommu.c
5054
5055 EZchip NPS platform support
5056 M:      Noam Camus <[email protected]>
5057 S:      Supported
5058 F:      arch/arc/plat-eznps
5059 F:      arch/arc/boot/dts/eznps.dts
5060
5061 F71805F HARDWARE MONITORING DRIVER
5062 M:      Jean Delvare <[email protected]>
5063 L:      [email protected]
5064 S:      Maintained
5065 F:      Documentation/hwmon/f71805f
5066 F:      drivers/hwmon/f71805f.c
5067
5068 FC0011 TUNER DRIVER
5069 M:      Michael Buesch <[email protected]>
5070 L:      [email protected]
5071 S:      Maintained
5072 F:      drivers/media/tuners/fc0011.h
5073 F:      drivers/media/tuners/fc0011.c
5074
5075 FC2580 MEDIA DRIVER
5076 M:      Antti Palosaari <[email protected]>
5077 L:      [email protected]
5078 W:      https://linuxtv.org
5079 W:      http://palosaari.fi/linux/
5080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5081 T:      git git://linuxtv.org/anttip/media_tree.git
5082 S:      Maintained
5083 F:      drivers/media/tuners/fc2580*
5084
5085 FANOTIFY
5086 M:      Eric Paris <[email protected]>
5087 S:      Maintained
5088 F:      fs/notify/fanotify/
5089 F:      include/linux/fanotify.h
5090 F:      include/uapi/linux/fanotify.h
5091
5092 FARSYNC SYNCHRONOUS DRIVER
5093 M:      Kevin Curtis <[email protected]>
5094 W:      http://www.farsite.co.uk/
5095 S:      Supported
5096 F:      drivers/net/wan/farsync.*
5097
5098 FAULT INJECTION SUPPORT
5099 M:      Akinobu Mita <[email protected]>
5100 S:      Supported
5101 F:      Documentation/fault-injection/
5102 F:      lib/fault-inject.c
5103
5104 FBTFT Framebuffer drivers
5105 M:      Thomas Petazzoni <[email protected]>
5106 S:      Maintained
5107 F:      drivers/staging/fbtft/
5108
5109 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
5110 M:      Johannes Thumshirn <[email protected]>
5111 L:      [email protected]
5112 W:      www.Open-FCoE.org
5113 S:      Supported
5114 F:      drivers/scsi/libfc/
5115 F:      drivers/scsi/fcoe/
5116 F:      include/scsi/fc/
5117 F:      include/scsi/libfc.h
5118 F:      include/scsi/libfcoe.h
5119 F:      include/uapi/scsi/fc/
5120
5121 FILE LOCKING (flock() and fcntl()/lockf())
5122 M:      Jeff Layton <[email protected]>
5123 M:      "J. Bruce Fields" <[email protected]>
5124 L:      [email protected]
5125 S:      Maintained
5126 F:      include/linux/fcntl.h
5127 F:      include/linux/fs.h
5128 F:      include/uapi/linux/fcntl.h
5129 F:      include/uapi/linux/fs.h
5130 F:      fs/fcntl.c
5131 F:      fs/locks.c
5132
5133 FILESYSTEMS (VFS and infrastructure)
5134 M:      Alexander Viro <[email protected]>
5135 L:      [email protected]
5136 S:      Maintained
5137 F:      fs/*
5138
5139 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
5140 M:      Riku Voipio <[email protected]>
5141 L:      [email protected]
5142 S:      Maintained
5143 F:      drivers/hwmon/f75375s.c
5144 F:      include/linux/f75375s.h
5145
5146 FIREWIRE AUDIO DRIVERS
5147 M:      Clemens Ladisch <[email protected]>
5148 L:      [email protected] (moderated for non-subscribers)
5149 T:      git git://git.alsa-project.org/alsa-kernel.git
5150 S:      Maintained
5151 F:      sound/firewire/
5152
5153 FIREWIRE MEDIA DRIVERS (firedtv)
5154 M:      Stefan Richter <[email protected]>
5155 L:      [email protected]
5156 L:      [email protected]
5157 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
5158 S:      Maintained
5159 F:      drivers/media/firewire/
5160
5161 FIREWIRE SBP-2 TARGET
5162 M:      Chris Boot <[email protected]>
5163 L:      [email protected]
5164 L:      [email protected]
5165 L:      [email protected]
5166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
5167 S:      Maintained
5168 F:      drivers/target/sbp/
5169
5170 FIREWIRE SUBSYSTEM
5171 M:      Stefan Richter <[email protected]>
5172 L:      [email protected]
5173 W:      http://ieee1394.wiki.kernel.org/
5174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
5175 S:      Maintained
5176 F:      drivers/firewire/
5177 F:      include/linux/firewire.h
5178 F:      include/uapi/linux/firewire*.h
5179 F:      tools/firewire/
5180
5181 FIRMWARE LOADER (request_firmware)
5182 M:      Luis R. Rodriguez <[email protected]>
5183 L:      [email protected]
5184 S:      Maintained
5185 F:      Documentation/firmware_class/
5186 F:      drivers/base/firmware*.c
5187 F:      include/linux/firmware.h
5188
5189 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
5190 M:      Joshua Morris <[email protected]>
5191 M:      Philip Kelleher <[email protected]>
5192 S:      Maintained
5193 F:      drivers/block/rsxx/
5194
5195 FLOPPY DRIVER
5196 M:      Jiri Kosina <[email protected]>
5197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/floppy.git
5198 S:      Odd fixes
5199 F:      drivers/block/floppy.c
5200
5201 FMC SUBSYSTEM
5202 M:      Alessandro Rubini <[email protected]>
5203 W:      http://www.ohwr.org/projects/fmc-bus
5204 S:      Supported
5205 F:      drivers/fmc/
5206 F:      include/linux/fmc*.h
5207 F:      include/linux/ipmi-fru.h
5208 K:      fmc_d.*register
5209
5210 FPGA MANAGER FRAMEWORK
5211 M:      Alan Tull <[email protected]>
5212 R:      Moritz Fischer <[email protected]>
5213 L:      [email protected]
5214 S:      Maintained
5215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atull/linux-fpga.git
5216 F:      Documentation/fpga/
5217 F:      Documentation/devicetree/bindings/fpga/
5218 F:      drivers/fpga/
5219 F:      include/linux/fpga/
5220 W:      http://www.rocketboards.org
5221
5222 FPU EMULATOR
5223 M:      Bill Metzenthen <[email protected]>
5224 W:      http://floatingpoint.sourceforge.net/emulator/index.html
5225 S:      Maintained
5226 F:      arch/x86/math-emu/
5227
5228 FRAME RELAY DLCI/FRAD (Sangoma drivers too)
5229 L:      [email protected]
5230 S:      Orphan
5231 F:      drivers/net/wan/dlci.c
5232 F:      drivers/net/wan/sdla.c
5233
5234 FRAMEBUFFER LAYER
5235 M:      Bartlomiej Zolnierkiewicz <[email protected]>
5236 L:      [email protected]
5237 T:      git git://github.com/bzolnier/linux.git
5238 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
5239 S:      Maintained
5240 F:      Documentation/fb/
5241 F:      drivers/video/
5242 F:      include/video/
5243 F:      include/linux/fb.h
5244 F:      include/uapi/video/
5245 F:      include/uapi/linux/fb.h
5246
5247 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
5248 M:      Horia Geantă <[email protected]>
5249 M:      Dan Douglass <[email protected]>
5250 L:      [email protected]
5251 S:      Maintained
5252 F:      drivers/crypto/caam/
5253 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
5254
5255 FREESCALE DIU FRAMEBUFFER DRIVER
5256 M:      Timur Tabi <[email protected]>
5257 L:      [email protected]
5258 S:      Maintained
5259 F:      drivers/video/fbdev/fsl-diu-fb.*
5260
5261 FREESCALE DMA DRIVER
5262 M:      Li Yang <[email protected]>
5263 M:      Zhang Wei <[email protected]>
5264 L:      [email protected]
5265 S:      Maintained
5266 F:      drivers/dma/fsldma.*
5267
5268 FREESCALE GPMI NAND DRIVER
5269 M:      Han Xu <[email protected]>
5270 L:      [email protected]
5271 S:      Maintained
5272 F:      drivers/mtd/nand/gpmi-nand/*
5273
5274 FREESCALE I2C CPM DRIVER
5275 M:      Jochen Friedrich <[email protected]>
5276 L:      [email protected]
5277 L:      [email protected]
5278 S:      Maintained
5279 F:      drivers/i2c/busses/i2c-cpm.c
5280
5281 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
5282 M:      Sascha Hauer <[email protected]>
5283 L:      [email protected]
5284 L:      [email protected] (moderated for non-subscribers)
5285 S:      Maintained
5286 F:      include/linux/platform_data/video-imxfb.h
5287 F:      drivers/video/fbdev/imxfb.c
5288
5289 FREESCALE QUAD SPI DRIVER
5290 M:      Han Xu <[email protected]>
5291 L:      [email protected]
5292 S:      Maintained
5293 F:      drivers/mtd/spi-nor/fsl-quadspi.c
5294
5295 FREESCALE SOC FS_ENET DRIVER
5296 M:      Pantelis Antoniou <[email protected]>
5297 M:      Vitaly Bordug <[email protected]>
5298 L:      [email protected]
5299 L:      [email protected]
5300 S:      Maintained
5301 F:      drivers/net/ethernet/freescale/fs_enet/
5302 F:      include/linux/fs_enet_pd.h
5303
5304 FREESCALE IMX / MXC FEC DRIVER
5305 M:      Fugang Duan <[email protected]>
5306 L:      [email protected]
5307 S:      Maintained
5308 F:      drivers/net/ethernet/freescale/fec_main.c
5309 F:      drivers/net/ethernet/freescale/fec_ptp.c
5310 F:      drivers/net/ethernet/freescale/fec.h
5311 F:      Documentation/devicetree/bindings/net/fsl-fec.txt
5312
5313 FREESCALE QORIQ DPAA FMAN DRIVER
5314 M:      Madalin Bucur <[email protected]>
5315 L:      [email protected]
5316 S:      Maintained
5317 F:      drivers/net/ethernet/freescale/fman
5318 F:      Documentation/devicetree/bindings/powerpc/fsl/fman.txt
5319
5320 FREESCALE QORIQ DPAA ETHERNET DRIVER
5321 M:      Madalin Bucur <[email protected]>
5322 L:      [email protected]
5323 S:      Maintained
5324 F:      drivers/net/ethernet/freescale/dpaa
5325
5326 FREESCALE SOC DRIVERS
5327 M:      Scott Wood <[email protected]>
5328 L:      [email protected]
5329 L:      [email protected]
5330 S:      Maintained
5331 F:      Documentation/devicetree/bindings/powerpc/fsl/
5332 F:      drivers/soc/fsl/
5333 F:      include/linux/fsl/
5334
5335 FREESCALE QUICC ENGINE LIBRARY
5336 M:      Qiang Zhao <[email protected]>
5337 L:      [email protected]
5338 S:      Maintained
5339 F:      drivers/soc/fsl/qe/
5340 F:      include/soc/fsl/*qe*.h
5341 F:      include/soc/fsl/*ucc*.h
5342
5343 FREESCALE USB PERIPHERAL DRIVERS
5344 M:      Li Yang <[email protected]>
5345 L:      [email protected]
5346 L:      [email protected]
5347 S:      Maintained
5348 F:      drivers/usb/gadget/udc/fsl*
5349
5350 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
5351 M:      Li Yang <[email protected]>
5352 L:      [email protected]
5353 L:      [email protected]
5354 S:      Maintained
5355 F:      drivers/net/ethernet/freescale/ucc_geth*
5356
5357 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
5358 M:      Claudiu Manoil <[email protected]>
5359 L:      [email protected]
5360 S:      Maintained
5361 F:      drivers/net/ethernet/freescale/gianfar*
5362 X:      drivers/net/ethernet/freescale/gianfar_ptp.c
5363 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
5364
5365 FREESCALE QUICC ENGINE UCC HDLC DRIVER
5366 M:      Zhao Qiang <[email protected]>
5367 L:      [email protected]
5368 L:      [email protected]
5369 S:      Maintained
5370 F:      drivers/net/wan/fsl_ucc_hdlc*
5371
5372 FREESCALE QUICC ENGINE UCC UART DRIVER
5373 M:      Timur Tabi <[email protected]>
5374 L:      [email protected]
5375 S:      Maintained
5376 F:      drivers/tty/serial/ucc_uart.c
5377
5378 FREESCALE SOC SOUND DRIVERS
5379 M:      Timur Tabi <[email protected]>
5380 M:      Nicolin Chen <[email protected]>
5381 M:      Xiubo Li <[email protected]>
5382 R:      Fabio Estevam <[email protected]>
5383 L:      [email protected] (moderated for non-subscribers)
5384 L:      [email protected]
5385 S:      Maintained
5386 F:      sound/soc/fsl/fsl*
5387 F:      sound/soc/fsl/imx*
5388 F:      sound/soc/fsl/mpc8610_hpcd.c
5389
5390 FREEVXFS FILESYSTEM
5391 M:      Christoph Hellwig <[email protected]>
5392 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
5393 S:      Maintained
5394 F:      fs/freevxfs/
5395
5396 FREEZER
5397 M:      "Rafael J. Wysocki" <[email protected]>
5398 M:      Pavel Machek <[email protected]>
5399 L:      [email protected]
5400 S:      Supported
5401 F:      Documentation/power/freezing-of-tasks.txt
5402 F:      include/linux/freezer.h
5403 F:      kernel/freezer.c
5404
5405 FRONTSWAP API
5406 M:      Konrad Rzeszutek Wilk <[email protected]>
5407 L:      [email protected]
5408 S:      Maintained
5409 F:      mm/frontswap.c
5410 F:      include/linux/frontswap.h
5411
5412 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
5413 M:      David Howells <[email protected]>
5414 L:      [email protected] (moderated for non-subscribers)
5415 S:      Supported
5416 F:      Documentation/filesystems/caching/
5417 F:      fs/fscache/
5418 F:      include/linux/fscache*.h
5419
5420 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
5421 M:      Theodore Y. Ts'o <[email protected]>
5422 M:      Jaegeuk Kim <[email protected]>
5423 L:      [email protected]
5424 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
5425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/fscrypt.git
5426 S:      Supported
5427 F:      fs/crypto/
5428 F:      include/linux/fscrypt*.h
5429
5430 F2FS FILE SYSTEM
5431 M:      Jaegeuk Kim <[email protected]>
5432 M:      Chao Yu <[email protected]>
5433 L:      [email protected]
5434 W:      https://f2fs.wiki.kernel.org/
5435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
5436 S:      Maintained
5437 F:      Documentation/filesystems/f2fs.txt
5438 F:      Documentation/ABI/testing/sysfs-fs-f2fs
5439 F:      fs/f2fs/
5440 F:      include/linux/f2fs_fs.h
5441 F:      include/trace/events/f2fs.h
5442
5443 FUJITSU FR-V (FRV) PORT
5444 S:      Orphan
5445 F:      arch/frv/
5446
5447 FUJITSU LAPTOP EXTRAS
5448 M:      Jonathan Woithe <[email protected]>
5449 L:      [email protected]
5450 S:      Maintained
5451 F:      drivers/platform/x86/fujitsu-laptop.c
5452
5453 FUJITSU M-5MO LS CAMERA ISP DRIVER
5454 M:      Kyungmin Park <[email protected]>
5455 M:      Heungjun Kim <[email protected]>
5456 L:      [email protected]
5457 S:      Maintained
5458 F:      drivers/media/i2c/m5mols/
5459 F:      include/media/i2c/m5mols.h
5460
5461 FUJITSU TABLET EXTRAS
5462 M:      Robert Gerlach <[email protected]>
5463 L:      [email protected]
5464 S:      Maintained
5465 F:      drivers/platform/x86/fujitsu-tablet.c
5466
5467 FUSE: FILESYSTEM IN USERSPACE
5468 M:      Miklos Szeredi <[email protected]>
5469 L:      [email protected]
5470 W:      http://fuse.sourceforge.net/
5471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
5472 S:      Maintained
5473 F:      fs/fuse/
5474 F:      include/uapi/linux/fuse.h
5475 F:      Documentation/filesystems/fuse.txt
5476
5477 FUTEX SUBSYSTEM
5478 M:      Thomas Gleixner <[email protected]>
5479 M:      Ingo Molnar <[email protected]>
5480 R:      Peter Zijlstra <[email protected]>
5481 R:      Darren Hart <[email protected]>
5482 L:      [email protected]
5483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
5484 S:      Maintained
5485 F:      kernel/futex.c
5486 F:      kernel/futex_compat.c
5487 F:      include/asm-generic/futex.h
5488 F:      include/linux/futex.h
5489 F:      include/uapi/linux/futex.h
5490 F:      tools/testing/selftests/futex/
5491 F:      tools/perf/bench/futex*
5492 F:      Documentation/*futex*
5493
5494 FUTURE DOMAIN TMC-16x0 SCSI DRIVER (16-bit)
5495 M:      Rik Faith <[email protected]>
5496 L:      [email protected]
5497 S:      Odd Fixes (e.g., new signatures)
5498 F:      drivers/scsi/fdomain.*
5499
5500 GCC PLUGINS
5501 M:      Kees Cook <[email protected]>
5502 R:      Emese Revfy <[email protected]>
5503 L:      [email protected]
5504 S:      Maintained
5505 F:      scripts/gcc-plugins/
5506 F:      scripts/gcc-plugin.sh
5507 F:      scripts/Makefile.gcc-plugins
5508 F:      Documentation/gcc-plugins.txt
5509
5510 GCOV BASED KERNEL PROFILING
5511 M:      Peter Oberparleiter <[email protected]>
5512 S:      Maintained
5513 F:      kernel/gcov/
5514 F:      Documentation/dev-tools/gcov.rst
5515
5516 GDT SCSI DISK ARRAY CONTROLLER DRIVER
5517 M:      Achim Leubner <[email protected]>
5518 L:      [email protected]
5519 W:      http://www.icp-vortex.com/
5520 S:      Supported
5521 F:      drivers/scsi/gdt*
5522
5523 GDB KERNEL DEBUGGING HELPER SCRIPTS
5524 M:      Jan Kiszka <[email protected]>
5525 M:      Kieran Bingham <[email protected]>
5526 S:      Supported
5527 F:      scripts/gdb/
5528
5529 GEMTEK FM RADIO RECEIVER DRIVER
5530 M:      Hans Verkuil <[email protected]>
5531 L:      [email protected]
5532 T:      git git://linuxtv.org/media_tree.git
5533 W:      https://linuxtv.org
5534 S:      Maintained
5535 F:      drivers/media/radio/radio-gemtek*
5536
5537 GENERIC GPIO I2C DRIVER
5538 M:      Haavard Skinnemoen <[email protected]>
5539 S:      Supported
5540 F:      drivers/i2c/busses/i2c-gpio.c
5541 F:      include/linux/i2c-gpio.h
5542
5543 GENERIC GPIO I2C MULTIPLEXER DRIVER
5544 M:      Peter Korsgaard <[email protected]>
5545 L:      [email protected]
5546 S:      Supported
5547 F:      drivers/i2c/muxes/i2c-mux-gpio.c
5548 F:      include/linux/i2c-mux-gpio.h
5549 F:      Documentation/i2c/muxes/i2c-mux-gpio
5550
5551 GENERIC HDLC (WAN) DRIVERS
5552 M:      Krzysztof Halasa <[email protected]>
5553 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
5554 S:      Maintained
5555 F:      drivers/net/wan/c101.c
5556 F:      drivers/net/wan/hd6457*
5557 F:      drivers/net/wan/hdlc*
5558 F:      drivers/net/wan/n2.c
5559 F:      drivers/net/wan/pc300too.c
5560 F:      drivers/net/wan/pci200syn.c
5561 F:      drivers/net/wan/wanxl*
5562
5563 GENERIC INCLUDE/ASM HEADER FILES
5564 M:      Arnd Bergmann <[email protected]>
5565 L:      [email protected]
5566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
5567 S:      Maintained
5568 F:      include/asm-generic/
5569 F:      include/uapi/asm-generic/
5570
5571 GENERIC PHY FRAMEWORK
5572 M:      Kishon Vijay Abraham I <[email protected]>
5573 L:      [email protected]
5574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git
5575 S:      Supported
5576 F:      drivers/phy/
5577 F:      include/linux/phy/
5578
5579 GENERIC PM DOMAINS
5580 M:      "Rafael J. Wysocki" <[email protected]>
5581 M:      Kevin Hilman <[email protected]>
5582 M:      Ulf Hansson <[email protected]>
5583 L:      [email protected]
5584 S:      Supported
5585 F:      drivers/base/power/domain*.c
5586 F:      include/linux/pm_domain.h
5587
5588 GENERIC UIO DRIVER FOR PCI DEVICES
5589 M:      "Michael S. Tsirkin" <[email protected]>
5590 L:      [email protected]
5591 S:      Supported
5592 F:      drivers/uio/uio_pci_generic.c
5593
5594 GET_MAINTAINER SCRIPT
5595 M:      Joe Perches <[email protected]>
5596 S:      Maintained
5597 F:      scripts/get_maintainer.pl
5598
5599 GENWQE (IBM Generic Workqueue Card)
5600 M:      Frank Haverkamp <[email protected]>
5601 M:      Gabriel Krisman Bertazi <[email protected]>
5602 S:      Supported
5603 F:      drivers/misc/genwqe/
5604
5605 GFS2 FILE SYSTEM
5606 M:      Steven Whitehouse <[email protected]>
5607 M:      Bob Peterson <[email protected]>
5608 L:      [email protected]
5609 W:      http://sources.redhat.com/cluster/
5610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
5611 S:      Supported
5612 F:      Documentation/filesystems/gfs2*.txt
5613 F:      fs/gfs2/
5614 F:      include/uapi/linux/gfs2_ondisk.h
5615
5616 GIGASET ISDN DRIVERS
5617 M:      Paul Bolle <[email protected]>
5618 L:      [email protected]
5619 W:      http://gigaset307x.sourceforge.net/
5620 S:      Odd Fixes
5621 F:      Documentation/isdn/README.gigaset
5622 F:      drivers/isdn/gigaset/
5623 F:      include/uapi/linux/gigaset_dev.h
5624
5625 GO7007 MPEG CODEC
5626 M:      Hans Verkuil <[email protected]>
5627 L:      [email protected]
5628 S:      Maintained
5629 F:      drivers/media/usb/go7007/
5630
5631 GOODIX TOUCHSCREEN
5632 M:      Bastien Nocera <[email protected]>
5633 L:      [email protected]
5634 S:      Maintained
5635 F:      drivers/input/touchscreen/goodix.c
5636
5637 GPIO MOCKUP DRIVER
5638 M:      Bamvor Jian Zhang <[email protected]>
5639 L:      [email protected]
5640 S:      Maintained
5641 F:      drivers/gpio/gpio-mockup.c
5642 F:      tools/testing/selftests/gpio/
5643
5644 GPIO SUBSYSTEM
5645 M:      Linus Walleij <[email protected]>
5646 M:      Alexandre Courbot <[email protected]>
5647 L:      [email protected]
5648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
5649 S:      Maintained
5650 F:      Documentation/devicetree/bindings/gpio/
5651 F:      Documentation/gpio/
5652 F:      Documentation/ABI/testing/gpio-cdev
5653 F:      Documentation/ABI/obsolete/sysfs-gpio
5654 F:      drivers/gpio/
5655 F:      include/linux/gpio/
5656 F:      include/linux/gpio.h
5657 F:      include/asm-generic/gpio.h
5658 F:      include/uapi/linux/gpio.h
5659 F:      tools/gpio/
5660
5661 GRE DEMULTIPLEXER DRIVER
5662 M:      Dmitry Kozlov <[email protected]>
5663 L:      [email protected]
5664 S:      Maintained
5665 F:      net/ipv4/gre_demux.c
5666 F:      net/ipv4/gre_offload.c
5667 F:      include/net/gre.h
5668
5669 GRETH 10/100/1G Ethernet MAC device driver
5670 M:      Andreas Larsson <[email protected]>
5671 L:      [email protected]
5672 S:      Maintained
5673 F:      drivers/net/ethernet/aeroflex/
5674
5675 GREYBUS SUBSYSTEM
5676 M:      Johan Hovold <[email protected]>
5677 M:      Alex Elder <[email protected]>
5678 M:      Greg Kroah-Hartman <[email protected]>
5679 S:      Maintained
5680 F:      drivers/staging/greybus/
5681 L:      [email protected]
5682
5683 GREYBUS AUDIO PROTOCOLS DRIVERS
5684 M:      Vaibhav Agarwal <[email protected]>
5685 M:      Mark Greer <[email protected]>
5686 S:      Maintained
5687 F:      drivers/staging/greybus/audio_apbridgea.c
5688 F:      drivers/staging/greybus/audio_apbridgea.h
5689 F:      drivers/staging/greybus/audio_codec.c
5690 F:      drivers/staging/greybus/audio_codec.h
5691 F:      drivers/staging/greybus/audio_gb.c
5692 F:      drivers/staging/greybus/audio_manager.c
5693 F:      drivers/staging/greybus/audio_manager.h
5694 F:      drivers/staging/greybus/audio_manager_module.c
5695 F:      drivers/staging/greybus/audio_manager_private.h
5696 F:      drivers/staging/greybus/audio_manager_sysfs.c
5697 F:      drivers/staging/greybus/audio_module.c
5698 F:      drivers/staging/greybus/audio_topology.c
5699
5700 GREYBUS PROTOCOLS DRIVERS
5701 M:      Rui Miguel Silva <[email protected]>
5702 S:      Maintained
5703 F:      drivers/staging/greybus/sdio.c
5704 F:      drivers/staging/greybus/light.c
5705 F:      drivers/staging/greybus/gpio.c
5706 F:      drivers/staging/greybus/power_supply.c
5707 F:      drivers/staging/greybus/spi.c
5708 F:      drivers/staging/greybus/spilib.c
5709
5710 GREYBUS PROTOCOLS DRIVERS
5711 M:      Bryan O'Donoghue <[email protected]>
5712 S:      Maintained
5713 F:      drivers/staging/greybus/loopback.c
5714 F:      drivers/staging/greybus/timesync.c
5715 F:      drivers/staging/greybus/timesync_platform.c
5716
5717 GREYBUS PROTOCOLS DRIVERS
5718 M:      Viresh Kumar <[email protected]>
5719 S:      Maintained
5720 F:      drivers/staging/greybus/authentication.c
5721 F:      drivers/staging/greybus/bootrom.c
5722 F:      drivers/staging/greybus/firmware.h
5723 F:      drivers/staging/greybus/fw-core.c
5724 F:      drivers/staging/greybus/fw-download.c
5725 F:      drivers/staging/greybus/fw-managament.c
5726 F:      drivers/staging/greybus/greybus_authentication.h
5727 F:      drivers/staging/greybus/greybus_firmware.h
5728 F:      drivers/staging/greybus/hid.c
5729 F:      drivers/staging/greybus/i2c.c
5730 F:      drivers/staging/greybus/spi.c
5731 F:      drivers/staging/greybus/spilib.c
5732 F:      drivers/staging/greybus/spilib.h
5733
5734 GREYBUS PROTOCOLS DRIVERS
5735 M:      David Lin <[email protected]>
5736 S:      Maintained
5737 F:      drivers/staging/greybus/uart.c
5738 F:      drivers/staging/greybus/log.c
5739
5740 GREYBUS PLATFORM DRIVERS
5741 M:      Vaibhav Hiremath <[email protected]>
5742 S:      Maintained
5743 F:      drivers/staging/greybus/arche-platform.c
5744 F:      drivers/staging/greybus/arche-apb-ctrl.c
5745 F:      drivers/staging/greybus/arche_platform.h
5746
5747 GS1662 VIDEO SERIALIZER
5748 M:      Charles-Antoine Couret <[email protected]>
5749 L:      [email protected]
5750 T:      git git://linuxtv.org/media_tree.git
5751 S:      Maintained
5752 F:      drivers/media/spi/gs1662.c
5753
5754 GSPCA FINEPIX SUBDRIVER
5755 M:      Frank Zago <[email protected]>
5756 L:      [email protected]
5757 T:      git git://linuxtv.org/media_tree.git
5758 S:      Maintained
5759 F:      drivers/media/usb/gspca/finepix.c
5760
5761 GSPCA GL860 SUBDRIVER
5762 M:      Olivier Lorin <[email protected]>
5763 L:      [email protected]
5764 T:      git git://linuxtv.org/media_tree.git
5765 S:      Maintained
5766 F:      drivers/media/usb/gspca/gl860/
5767
5768 GSPCA M5602 SUBDRIVER
5769 M:      Erik Andren <[email protected]>
5770 L:      [email protected]
5771 T:      git git://linuxtv.org/media_tree.git
5772 S:      Maintained
5773 F:      drivers/media/usb/gspca/m5602/
5774
5775 GSPCA PAC207 SONIXB SUBDRIVER
5776 M:      Hans Verkuil <[email protected]>
5777 L:      [email protected]
5778 T:      git git://linuxtv.org/media_tree.git
5779 S:      Odd Fixes
5780 F:      drivers/media/usb/gspca/pac207.c
5781
5782 GSPCA SN9C20X SUBDRIVER
5783 M:      Brian Johnson <[email protected]>
5784 L:      [email protected]
5785 T:      git git://linuxtv.org/media_tree.git
5786 S:      Maintained
5787 F:      drivers/media/usb/gspca/sn9c20x.c
5788
5789 GSPCA T613 SUBDRIVER
5790 M:      Leandro Costantino <[email protected]>
5791 L:      [email protected]
5792 T:      git git://linuxtv.org/media_tree.git
5793 S:      Maintained
5794 F:      drivers/media/usb/gspca/t613.c
5795
5796 GSPCA USB WEBCAM DRIVER
5797 M:      Hans Verkuil <[email protected]>
5798 L:      [email protected]
5799 T:      git git://linuxtv.org/media_tree.git
5800 S:      Odd Fixes
5801 F:      drivers/media/usb/gspca/
5802
5803 GTP (GPRS Tunneling Protocol)
5804 M:      Pablo Neira Ayuso <[email protected]>
5805 M:      Harald Welte <[email protected]>
5806 L:      [email protected]
5807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
5808 S:      Maintained
5809 F:      drivers/net/gtp.c
5810
5811 GUID PARTITION TABLE (GPT)
5812 M:      Davidlohr Bueso <[email protected]>
5813 L:      [email protected]
5814 S:      Maintained
5815 F:      block/partitions/efi.*
5816
5817 STK1160 USB VIDEO CAPTURE DRIVER
5818 M:      Ezequiel Garcia <[email protected]>
5819 L:      [email protected]
5820 T:      git git://linuxtv.org/media_tree.git
5821 S:      Maintained
5822 F:      drivers/media/usb/stk1160/
5823
5824 H8/300 ARCHITECTURE
5825 M:      Yoshinori Sato <[email protected]>
5826 L:      [email protected] (moderated for non-subscribers)
5827 W:      http://uclinux-h8.sourceforge.jp
5828 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
5829 S:      Maintained
5830 F:      arch/h8300/
5831 F:      drivers/clocksource/h8300_*.c
5832 F:      drivers/clk/h8300/
5833 F:      drivers/irqchip/irq-renesas-h8*.c
5834
5835 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
5836 M:      Frank Seidel <[email protected]>
5837 L:      [email protected]
5838 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
5839 S:      Maintained
5840 F:      drivers/platform/x86/hdaps.c
5841
5842 HDPVR USB VIDEO ENCODER DRIVER
5843 M:      Hans Verkuil <[email protected]>
5844 L:      [email protected]
5845 T:      git git://linuxtv.org/media_tree.git
5846 W:      https://linuxtv.org
5847 S:      Odd Fixes
5848 F:      drivers/media/usb/hdpvr/
5849
5850 HWPOISON MEMORY FAILURE HANDLING
5851 M:      Naoya Horiguchi <[email protected]>
5852 L:      [email protected]
5853 S:      Maintained
5854 F:      mm/memory-failure.c
5855 F:      mm/hwpoison-inject.c
5856
5857 HYPERVISOR VIRTUAL CONSOLE DRIVER
5858 L:      [email protected]
5859 S:      Odd Fixes
5860 F:      drivers/tty/hvc/
5861
5862 HACKRF MEDIA DRIVER
5863 M:      Antti Palosaari <[email protected]>
5864 L:      [email protected]
5865 W:      https://linuxtv.org
5866 W:      http://palosaari.fi/linux/
5867 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5868 T:      git git://linuxtv.org/anttip/media_tree.git
5869 S:      Maintained
5870 F:      drivers/media/usb/hackrf/
5871
5872 HARDWARE MONITORING
5873 M:      Jean Delvare <[email protected]>
5874 M:      Guenter Roeck <[email protected]>
5875 L:      [email protected]
5876 W:      http://hwmon.wiki.kernel.org/
5877 T:      quilt http://jdelvare.nerim.net/devel/linux/jdelvare-hwmon/
5878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
5879 S:      Maintained
5880 F:      Documentation/hwmon/
5881 F:      drivers/hwmon/
5882 F:      include/linux/hwmon*.h
5883
5884 HARDWARE RANDOM NUMBER GENERATOR CORE
5885 M:      Matt Mackall <[email protected]>
5886 M:      Herbert Xu <[email protected]>
5887 L:      [email protected]
5888 S:      Odd fixes
5889 F:      Documentation/devicetree/bindings/rng/
5890 F:      Documentation/hw_random.txt
5891 F:      drivers/char/hw_random/
5892 F:      include/linux/hw_random.h
5893
5894 HARDWARE SPINLOCK CORE
5895 M:      Ohad Ben-Cohen <[email protected]>
5896 M:      Bjorn Andersson <[email protected]>
5897 L:      [email protected]
5898 S:      Maintained
5899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/hwspinlock.git
5900 F:      Documentation/devicetree/bindings/hwlock/
5901 F:      Documentation/hwspinlock.txt
5902 F:      drivers/hwspinlock/
5903 F:      include/linux/hwspinlock.h
5904
5905 HARMONY SOUND DRIVER
5906 L:      [email protected]
5907 S:      Maintained
5908 F:      sound/parisc/harmony.*
5909
5910 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
5911 M:      Jimmy Vance <[email protected]>
5912 S:      Supported
5913 F:      Documentation/watchdog/hpwdt.txt
5914 F:      drivers/watchdog/hpwdt.c
5915
5916 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
5917 M:      Don Brace <[email protected]>
5918 L:      [email protected]
5919 L:      [email protected]
5920 S:      Supported
5921 F:      Documentation/scsi/hpsa.txt
5922 F:      drivers/scsi/hpsa*.[ch]
5923 F:      include/linux/cciss*.h
5924 F:      include/uapi/linux/cciss*.h
5925
5926 HEWLETT-PACKARD SMART CISS RAID DRIVER (cciss)
5927 M:      Don Brace <[email protected]>
5928 L:      [email protected]
5929 L:      [email protected]
5930 S:      Supported
5931 F:      Documentation/blockdev/cciss.txt
5932 F:      drivers/block/cciss*
5933 F:      include/linux/cciss_ioctl.h
5934 F:      include/uapi/linux/cciss_ioctl.h
5935
5936 OPA-VNIC DRIVER
5937 M:      Dennis Dalessandro <[email protected]>
5938 M:      Niranjana Vishwanathapura <[email protected]>
5939 L:      [email protected]
5940 S:      Supported
5941 F:      drivers/infiniband/ulp/opa_vnic
5942
5943 HFI1 DRIVER
5944 M:      Mike Marciniszyn <[email protected]>
5945 M:      Dennis Dalessandro <[email protected]>
5946 L:      [email protected]
5947 S:      Supported
5948 F:      drivers/infiniband/hw/hfi1
5949
5950 HFS FILESYSTEM
5951 L:      [email protected]
5952 S:      Orphan
5953 F:      Documentation/filesystems/hfs.txt
5954 F:      fs/hfs/
5955
5956 HFSPLUS FILESYSTEM
5957 L:      [email protected]
5958 S:      Orphan
5959 F:      Documentation/filesystems/hfsplus.txt
5960 F:      fs/hfsplus/
5961
5962 HGA FRAMEBUFFER DRIVER
5963 M:      Ferenc Bakonyi <[email protected]>
5964 L:      [email protected]
5965 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
5966 S:      Maintained
5967 F:      drivers/video/fbdev/hgafb.c
5968
5969 HIBERNATION (aka Software Suspend, aka swsusp)
5970 M:      "Rafael J. Wysocki" <[email protected]>
5971 M:      Pavel Machek <[email protected]>
5972 L:      [email protected]
5973 B:      https://bugzilla.kernel.org
5974 S:      Supported
5975 F:      arch/x86/power/
5976 F:      drivers/base/power/
5977 F:      kernel/power/
5978 F:      include/linux/suspend.h
5979 F:      include/linux/freezer.h
5980 F:      include/linux/pm.h
5981 F:      arch/*/include/asm/suspend*.h
5982
5983 HID CORE LAYER
5984 M:      Jiri Kosina <[email protected]>
5985 R:      Benjamin Tissoires <[email protected]>
5986 L:      [email protected]
5987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
5988 S:      Maintained
5989 F:      drivers/hid/
5990 F:      include/linux/hid*
5991 F:      include/uapi/linux/hid*
5992
5993 HID SENSOR HUB DRIVERS
5994 M:      Jiri Kosina <[email protected]>
5995 M:      Jonathan Cameron <[email protected]>
5996 M:      Srinivas Pandruvada <[email protected]>
5997 L:      [email protected]
5998 L:      [email protected]
5999 S:      Maintained
6000 F:      Documentation/hid/hid-sensor*
6001 F:      drivers/hid/hid-sensor-*
6002 F:      drivers/iio/*/hid-*
6003 F:      include/linux/hid-sensor-*
6004
6005 HIGH-RESOLUTION TIMERS, CLOCKEVENTS, DYNTICKS
6006 M:      Thomas Gleixner <[email protected]>
6007 L:      [email protected]
6008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
6009 S:      Maintained
6010 F:      Documentation/timers/
6011 F:      kernel/time/hrtimer.c
6012 F:      kernel/time/clockevents.c
6013 F:      kernel/time/tick*.*
6014 F:      kernel/time/timer_*.c
6015 F:      include/linux/clockchips.h
6016 F:      include/linux/hrtimer.h
6017
6018 HIGH-SPEED SCC DRIVER FOR AX.25
6019 L:      [email protected]
6020 S:      Orphan
6021 F:      drivers/net/hamradio/dmascc.c
6022 F:      drivers/net/hamradio/scc.c
6023
6024 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
6025 M:      HighPoint Linux Team <[email protected]>
6026 W:      http://www.highpoint-tech.com
6027 S:      Supported
6028 F:      Documentation/scsi/hptiop.txt
6029 F:      drivers/scsi/hptiop.c
6030
6031 HIPPI
6032 M:      Jes Sorensen <[email protected]>
6033 L:      [email protected]
6034 S:      Maintained
6035 F:      include/linux/hippidevice.h
6036 F:      include/uapi/linux/if_hippi.h
6037 F:      net/802/hippi.c
6038 F:      drivers/net/hippi/
6039
6040 HISILICON NETWORK SUBSYSTEM DRIVER
6041 M:      Yisen Zhuang <[email protected]>
6042 M:      Salil Mehta <[email protected]>
6043 L:      [email protected]
6044 W:      http://www.hisilicon.com
6045 S:      Maintained
6046 F:      drivers/net/ethernet/hisilicon/
6047 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
6048
6049 HISILICON ROCE DRIVER
6050 M:      Lijun Ou <[email protected]>
6051 M:      Wei Hu(Xavier) <[email protected]>
6052 L:      [email protected]
6053 S:      Maintained
6054 F:      drivers/infiniband/hw/hns/
6055 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
6056
6057 HISILICON SAS Controller
6058 M:      John Garry <[email protected]>
6059 W:      http://www.hisilicon.com
6060 S:      Supported
6061 F:      drivers/scsi/hisi_sas/
6062 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
6063
6064 HOST AP DRIVER
6065 M:      Jouni Malinen <[email protected]>
6066 L:      [email protected]
6067 W:      http://w1.fi/hostap-driver.html
6068 S:      Obsolete
6069 F:      drivers/net/wireless/intersil/hostap/
6070
6071 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
6072 L:      [email protected]
6073 S:      Orphan
6074 F:      drivers/platform/x86/tc1100-wmi.c
6075
6076 HP100:  Driver for HP 10/100 Mbit/s Voice Grade Network Adapter Series
6077 M:      Jaroslav Kysela <[email protected]>
6078 S:      Maintained
6079 F:      drivers/net/ethernet/hp/hp100.*
6080
6081 HPET:   High Precision Event Timers driver
6082 M:      Clemens Ladisch <[email protected]>
6083 S:      Maintained
6084 F:      Documentation/timers/hpet.txt
6085 F:      drivers/char/hpet.c
6086 F:      include/linux/hpet.h
6087 F:      include/uapi/linux/hpet.h
6088
6089 HPET:   x86
6090 S:      Orphan
6091 F:      arch/x86/kernel/hpet.c
6092 F:      arch/x86/include/asm/hpet.h
6093
6094 HPFS FILESYSTEM
6095 M:      Mikulas Patocka <[email protected]>
6096 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
6097 S:      Maintained
6098 F:      fs/hpfs/
6099
6100 HSI SUBSYSTEM
6101 M:      Sebastian Reichel <[email protected]>
6102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
6103 S:      Maintained
6104 F:      Documentation/ABI/testing/sysfs-bus-hsi
6105 F:      Documentation/driver-api/hsi.rst
6106 F:      drivers/hsi/
6107 F:      include/linux/hsi/
6108 F:      include/uapi/linux/hsi/
6109
6110 HSO 3G MODEM DRIVER
6111 L:      [email protected]
6112 S:      Orphan
6113 F:      drivers/net/usb/hso.c
6114
6115 HSR NETWORK PROTOCOL
6116 M:      Arvid Brodin <[email protected]>
6117 L:      [email protected]
6118 S:      Maintained
6119 F:      net/hsr/
6120
6121 HTCPEN TOUCHSCREEN DRIVER
6122 M:      Pau Oliva Fora <[email protected]>
6123 L:      [email protected]
6124 S:      Maintained
6125 F:      drivers/input/touchscreen/htcpen.c
6126
6127 HUGETLB FILESYSTEM
6128 M:      Nadia Yvette Chambers <[email protected]>
6129 S:      Maintained
6130 F:      fs/hugetlbfs/
6131
6132 HVA ST MEDIA DRIVER
6133 M:      Jean-Christophe Trotin <[email protected]>
6134 L:      [email protected]
6135 T:      git git://linuxtv.org/media_tree.git
6136 W:      https://linuxtv.org
6137 S:      Supported
6138 F:      drivers/media/platform/sti/hva
6139
6140 Hyper-V CORE AND DRIVERS
6141 M:      "K. Y. Srinivasan" <[email protected]>
6142 M:      Haiyang Zhang <[email protected]>
6143 M:      Stephen Hemminger <[email protected]>
6144 L:      [email protected]
6145 S:      Maintained
6146 F:      arch/x86/include/asm/mshyperv.h
6147 F:      arch/x86/include/uapi/asm/hyperv.h
6148 F:      arch/x86/kernel/cpu/mshyperv.c
6149 F:      arch/x86/hyperv
6150 F:      drivers/hid/hid-hyperv.c
6151 F:      drivers/hv/
6152 F:      drivers/input/serio/hyperv-keyboard.c
6153 F:      drivers/pci/host/pci-hyperv.c
6154 F:      drivers/net/hyperv/
6155 F:      drivers/scsi/storvsc_drv.c
6156 F:      drivers/uio/uio_hv_generic.c
6157 F:      drivers/video/fbdev/hyperv_fb.c
6158 F:      include/linux/hyperv.h
6159 F:      tools/hv/
6160 F:      Documentation/ABI/stable/sysfs-bus-vmbus
6161
6162 I2C MUXES
6163 M:      Peter Rosin <[email protected]>
6164 L:      [email protected]
6165 S:      Maintained
6166 F:      Documentation/i2c/i2c-topology
6167 F:      Documentation/i2c/muxes/
6168 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
6169 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
6170 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
6171 F:      drivers/i2c/i2c-mux.c
6172 F:      drivers/i2c/muxes/
6173 F:      include/linux/i2c-mux.h
6174
6175 I2C OVER PARALLEL PORT
6176 M:      Jean Delvare <[email protected]>
6177 L:      [email protected]
6178 S:      Maintained
6179 F:      Documentation/i2c/busses/i2c-parport
6180 F:      Documentation/i2c/busses/i2c-parport-light
6181 F:      drivers/i2c/busses/i2c-parport.c
6182 F:      drivers/i2c/busses/i2c-parport-light.c
6183
6184 I2C/SMBUS CONTROLLER DRIVERS FOR PC
6185 M:      Jean Delvare <[email protected]>
6186 L:      [email protected]
6187 S:      Maintained
6188 F:      Documentation/i2c/busses/i2c-ali1535
6189 F:      Documentation/i2c/busses/i2c-ali1563
6190 F:      Documentation/i2c/busses/i2c-ali15x3
6191 F:      Documentation/i2c/busses/i2c-amd756
6192 F:      Documentation/i2c/busses/i2c-amd8111
6193 F:      Documentation/i2c/busses/i2c-i801
6194 F:      Documentation/i2c/busses/i2c-nforce2
6195 F:      Documentation/i2c/busses/i2c-piix4
6196 F:      Documentation/i2c/busses/i2c-sis5595
6197 F:      Documentation/i2c/busses/i2c-sis630
6198 F:      Documentation/i2c/busses/i2c-sis96x
6199 F:      Documentation/i2c/busses/i2c-via
6200 F:      Documentation/i2c/busses/i2c-viapro
6201 F:      drivers/i2c/busses/i2c-ali1535.c
6202 F:      drivers/i2c/busses/i2c-ali1563.c
6203 F:      drivers/i2c/busses/i2c-ali15x3.c
6204 F:      drivers/i2c/busses/i2c-amd756.c
6205 F:      drivers/i2c/busses/i2c-amd756-s4882.c
6206 F:      drivers/i2c/busses/i2c-amd8111.c
6207 F:      drivers/i2c/busses/i2c-i801.c
6208 F:      drivers/i2c/busses/i2c-isch.c
6209 F:      drivers/i2c/busses/i2c-nforce2.c
6210 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
6211 F:      drivers/i2c/busses/i2c-piix4.c
6212 F:      drivers/i2c/busses/i2c-sis5595.c
6213 F:      drivers/i2c/busses/i2c-sis630.c
6214 F:      drivers/i2c/busses/i2c-sis96x.c
6215 F:      drivers/i2c/busses/i2c-via.c
6216 F:      drivers/i2c/busses/i2c-viapro.c
6217
6218 I2C/SMBUS ISMT DRIVER
6219 M:      Seth Heasley <[email protected]>
6220 M:      Neil Horman <[email protected]>
6221 L:      [email protected]
6222 F:      drivers/i2c/busses/i2c-ismt.c
6223 F:      Documentation/i2c/busses/i2c-ismt
6224
6225 I2C/SMBUS STUB DRIVER
6226 M:      Jean Delvare <[email protected]>
6227 L:      [email protected]
6228 S:      Maintained
6229 F:      drivers/i2c/i2c-stub.c
6230
6231 I2C SUBSYSTEM
6232 M:      Wolfram Sang <[email protected]>
6233 L:      [email protected]
6234 W:      https://i2c.wiki.kernel.org/
6235 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
6236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
6237 S:      Maintained
6238 F:      Documentation/devicetree/bindings/i2c/
6239 F:      Documentation/i2c/
6240 F:      drivers/i2c/
6241 F:      drivers/i2c/*/
6242 F:      include/linux/i2c.h
6243 F:      include/linux/i2c-*.h
6244 F:      include/uapi/linux/i2c.h
6245 F:      include/uapi/linux/i2c-*.h
6246
6247 I2C ACPI SUPPORT
6248 M:      Mika Westerberg <[email protected]>
6249 L:      [email protected]
6250 L:      [email protected]
6251 S:      Maintained
6252
6253 I2C-TAOS-EVM DRIVER
6254 M:      Jean Delvare <[email protected]>
6255 L:      [email protected]
6256 S:      Maintained
6257 F:      Documentation/i2c/busses/i2c-taos-evm
6258 F:      drivers/i2c/busses/i2c-taos-evm.c
6259
6260 I2C-TINY-USB DRIVER
6261 M:      Till Harbaum <[email protected]>
6262 L:      [email protected]
6263 W:      http://www.harbaum.org/till/i2c_tiny_usb
6264 S:      Maintained
6265 F:      drivers/i2c/busses/i2c-tiny-usb.c
6266
6267 i386 BOOT CODE
6268 M:      "H. Peter Anvin" <[email protected]>
6269 S:      Maintained
6270 F:      arch/x86/boot/
6271
6272 i386 SETUP CODE / CPU ERRATA WORKAROUNDS
6273 M:      "H. Peter Anvin" <[email protected]>
6274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hpa/linux-2.6-x86setup.git
6275 S:      Maintained
6276
6277 IA64 (Itanium) PLATFORM
6278 M:      Tony Luck <[email protected]>
6279 M:      Fenghua Yu <[email protected]>
6280 L:      [email protected]
6281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux.git
6282 S:      Maintained
6283 F:      arch/ia64/
6284
6285 IBM Power VMX Cryptographic instructions
6286 M:      Leonidas S. Barbosa <[email protected]>
6287 M:      Paulo Flabiano Smorigo <[email protected]>
6288 L:      [email protected]
6289 S:      Supported
6290 F:      drivers/crypto/vmx/Makefile
6291 F:      drivers/crypto/vmx/Kconfig
6292 F:      drivers/crypto/vmx/vmx.c
6293 F:      drivers/crypto/vmx/aes*
6294 F:      drivers/crypto/vmx/ghash*
6295 F:      drivers/crypto/vmx/ppc-xlate.pl
6296
6297 IBM Power in-Nest Crypto Acceleration
6298 M:      Leonidas S. Barbosa <[email protected]>
6299 M:      Paulo Flabiano Smorigo <[email protected]>
6300 L:      [email protected]
6301 S:      Supported
6302 F:      drivers/crypto/nx/Makefile
6303 F:      drivers/crypto/nx/Kconfig
6304 F:      drivers/crypto/nx/nx-aes*
6305 F:      drivers/crypto/nx/nx-sha*
6306 F:      drivers/crypto/nx/nx.*
6307 F:      drivers/crypto/nx/nx_csbcpb.h
6308 F:      drivers/crypto/nx/nx_debugfs.h
6309
6310 IBM Power 842 compression accelerator
6311 M:      Haren Myneni <[email protected]>
6312 S:      Supported
6313 F:      drivers/crypto/nx/Makefile
6314 F:      drivers/crypto/nx/Kconfig
6315 F:      drivers/crypto/nx/nx-842*
6316 F:      include/linux/sw842.h
6317 F:      crypto/842.c
6318 F:      lib/842/
6319
6320 IBM Power Linux RAID adapter
6321 M:      Brian King <[email protected]>
6322 S:      Supported
6323 F:      drivers/scsi/ipr.*
6324
6325 IBM Power Virtual Ethernet Device Driver
6326 M:      Thomas Falcon <[email protected]>
6327 L:      [email protected]
6328 S:      Supported
6329 F:      drivers/net/ethernet/ibm/ibmveth.*
6330
6331 IBM Power SRIOV Virtual NIC Device Driver
6332 M:      Thomas Falcon <[email protected]>
6333 M:      John Allen <[email protected]>
6334 L:      [email protected]
6335 S:      Supported
6336 F:      drivers/net/ethernet/ibm/ibmvnic.*
6337
6338 IBM Power Virtual SCSI Device Drivers
6339 M:      Tyrel Datwyler <[email protected]>
6340 L:      [email protected]
6341 S:      Supported
6342 F:      drivers/scsi/ibmvscsi/ibmvscsi*
6343 F:      include/scsi/viosrp.h
6344
6345 IBM Power Virtual SCSI Device Target Driver
6346 M:      Bryant G. Ly <[email protected]>
6347 M:      Michael Cyr <[email protected]>
6348 L:      [email protected]
6349 L:      [email protected]
6350 S:      Supported
6351 F:      drivers/scsi/ibmvscsi_tgt/
6352
6353 IBM Power Virtual FC Device Drivers
6354 M:      Tyrel Datwyler <[email protected]>
6355 L:      [email protected]
6356 S:      Supported
6357 F:      drivers/scsi/ibmvscsi/ibmvfc*
6358
6359 IBM ServeRAID RAID DRIVER
6360 S:      Orphan
6361 F:      drivers/scsi/ips.*
6362
6363 ICH LPC AND GPIO DRIVER
6364 M:      Peter Tyser <[email protected]>
6365 S:      Maintained
6366 F:      drivers/mfd/lpc_ich.c
6367 F:      drivers/gpio/gpio-ich.c
6368
6369 IDT VersaClock 5 CLOCK DRIVER
6370 M:      Marek Vasut <[email protected]>
6371 S:      Maintained
6372 F:      drivers/clk/clk-versaclock5.c
6373
6374 IDE SUBSYSTEM
6375 M:      "David S. Miller" <[email protected]>
6376 L:      [email protected]
6377 Q:      http://patchwork.ozlabs.org/project/linux-ide/list/
6378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide.git
6379 S:      Maintained
6380 F:      Documentation/ide/
6381 F:      drivers/ide/
6382 F:      include/linux/ide.h
6383
6384 IDEAPAD LAPTOP EXTRAS DRIVER
6385 M:      Ike Panhc <[email protected]>
6386 L:      [email protected]
6387 W:      http://launchpad.net/ideapad-laptop
6388 S:      Maintained
6389 F:      drivers/platform/x86/ideapad-laptop.c
6390
6391 IDEAPAD LAPTOP SLIDEBAR DRIVER
6392 M:      Andrey Moiseev <[email protected]>
6393 L:      [email protected]
6394 W:      https://github.com/o2genum/ideapad-slidebar
6395 S:      Maintained
6396 F:      drivers/input/misc/ideapad_slidebar.c
6397
6398 IDE/ATAPI DRIVERS
6399 M:      Borislav Petkov <[email protected]>
6400 L:      [email protected]
6401 S:      Maintained
6402 F:      Documentation/cdrom/ide-cd
6403 F:      drivers/ide/ide-cd*
6404
6405 IEEE 802.15.4 SUBSYSTEM
6406 M:      Alexander Aring <[email protected]>
6407 M:      Stefan Schmidt <[email protected]>
6408 L:      [email protected]
6409 W:      http://wpan.cakelab.org/
6410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
6411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
6412 S:      Maintained
6413 F:      net/ieee802154/
6414 F:      net/mac802154/
6415 F:      drivers/net/ieee802154/
6416 F:      include/linux/nl802154.h
6417 F:      include/linux/ieee802154.h
6418 F:      include/net/nl802154.h
6419 F:      include/net/mac802154.h
6420 F:      include/net/af_ieee802154.h
6421 F:      include/net/cfg802154.h
6422 F:      include/net/ieee802154_netdev.h
6423 F:      Documentation/networking/ieee802154.txt
6424
6425 IFE PROTOCOL
6426 M:      Yotam Gigi <[email protected]>
6427 M:      Jamal Hadi Salim <[email protected]>
6428 F:      net/ife
6429 F:      include/net/ife.h
6430 F:      include/uapi/linux/ife.h
6431
6432 IGORPLUG-USB IR RECEIVER
6433 M:      Sean Young <[email protected]>
6434 L:      [email protected]
6435 S:      Maintained
6436 F:      drivers/media/rc/igorplugusb.c
6437
6438 IGUANAWORKS USB IR TRANSCEIVER
6439 M:      Sean Young <[email protected]>
6440 L:      [email protected]
6441 S:      Maintained
6442 F:      drivers/media/rc/iguanair.c
6443
6444 IIO DIGITAL POTENTIOMETER DAC
6445 M:      Peter Rosin <[email protected]>
6446 L:      [email protected]
6447 S:      Maintained
6448 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
6449 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.txt
6450 F:      drivers/iio/dac/dpot-dac.c
6451
6452 IIO ENVELOPE DETECTOR
6453 M:      Peter Rosin <[email protected]>
6454 L:      [email protected]
6455 S:      Maintained
6456 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
6457 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.txt
6458 F:      drivers/iio/adc/envelope-detector.c
6459
6460 IIO SUBSYSTEM AND DRIVERS
6461 M:      Jonathan Cameron <[email protected]>
6462 R:      Hartmut Knaack <[email protected]>
6463 R:      Lars-Peter Clausen <[email protected]>
6464 R:      Peter Meerwald-Stadler <[email protected]>
6465 L:      [email protected]
6466 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
6467 S:      Maintained
6468 F:      Documentation/devicetree/bindings/iio/
6469 F:      drivers/iio/
6470 F:      drivers/staging/iio/
6471 F:      include/linux/iio/
6472 F:      tools/iio/
6473
6474 IKANOS/ADI EAGLE ADSL USB DRIVER
6475 M:      Matthieu Castet <[email protected]>
6476 M:      Stanislaw Gruszka <[email protected]>
6477 S:      Maintained
6478 F:      drivers/usb/atm/ueagle-atm.c
6479
6480 IMGTEC ASCII LCD DRIVER
6481 M:      Paul Burton <[email protected]>
6482 S:      Maintained
6483 F:      Documentation/devicetree/bindings/auxdisplay/img-ascii-lcd.txt
6484 F:      drivers/auxdisplay/img-ascii-lcd.c
6485
6486 INA209 HARDWARE MONITOR DRIVER
6487 M:      Guenter Roeck <[email protected]>
6488 L:      [email protected]
6489 S:      Maintained
6490 F:      Documentation/hwmon/ina209
6491 F:      Documentation/devicetree/bindings/i2c/ina209.txt
6492 F:      drivers/hwmon/ina209.c
6493
6494 INA2XX HARDWARE MONITOR DRIVER
6495 M:      Guenter Roeck <[email protected]>
6496 L:      [email protected]
6497 S:      Maintained
6498 F:      Documentation/hwmon/ina2xx
6499 F:      drivers/hwmon/ina2xx.c
6500 F:      include/linux/platform_data/ina2xx.h
6501
6502 INDUSTRY PACK SUBSYSTEM (IPACK)
6503 M:      Samuel Iglesias Gonsalvez <[email protected]>
6504 M:      Jens Taprogge <[email protected]>
6505 M:      Greg Kroah-Hartman <[email protected]>
6506 L:      [email protected]
6507 W:      http://industrypack.sourceforge.net
6508 S:      Maintained
6509 F:      drivers/ipack/
6510
6511 INGENIC JZ4780 DMA Driver
6512 M:      Zubair Lutfullah Kakakhel <[email protected]>
6513 S:      Maintained
6514 F:      drivers/dma/dma-jz4780.c
6515
6516 INGENIC JZ4780 NAND DRIVER
6517 M:      Harvey Hunt <[email protected]>
6518 L:      [email protected]
6519 S:      Maintained
6520 F:      drivers/mtd/nand/jz4780_*
6521
6522 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
6523 M:      Mimi Zohar <[email protected]>
6524 M:      Dmitry Kasatkin <[email protected]>
6525 L:      [email protected]
6526 L:      [email protected]
6527 L:      [email protected]
6528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
6529 S:      Supported
6530 F:      security/integrity/ima/
6531
6532 IMGTEC IR DECODER DRIVER
6533 M:      James Hogan <[email protected]>
6534 S:      Maintained
6535 F:      drivers/media/rc/img-ir/
6536
6537 IMS TWINTURBO FRAMEBUFFER DRIVER
6538 L:      [email protected]
6539 S:      Orphan
6540 F:      drivers/video/fbdev/imsttfb.c
6541
6542 INFINIBAND SUBSYSTEM
6543 M:      Doug Ledford <[email protected]>
6544 M:      Sean Hefty <[email protected]>
6545 M:      Hal Rosenstock <[email protected]>
6546 L:      [email protected]
6547 W:      http://www.openfabrics.org/
6548 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
6549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma.git
6550 S:      Supported
6551 F:      Documentation/devicetree/bindings/infiniband/
6552 F:      Documentation/infiniband/
6553 F:      drivers/infiniband/
6554 F:      include/uapi/linux/if_infiniband.h
6555 F:      include/uapi/rdma/
6556 F:      include/rdma/
6557
6558 INOTIFY
6559 M:      John McCutchan <[email protected]>
6560 M:      Robert Love <[email protected]>
6561 M:      Eric Paris <[email protected]>
6562 S:      Maintained
6563 F:      Documentation/filesystems/inotify.txt
6564 F:      fs/notify/inotify/
6565 F:      include/linux/inotify.h
6566 F:      include/uapi/linux/inotify.h
6567
6568 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
6569 M:      Dmitry Torokhov <[email protected]>
6570 L:      [email protected]
6571 Q:      http://patchwork.kernel.org/project/linux-input/list/
6572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
6573 S:      Maintained
6574 F:      drivers/input/
6575 F:      include/linux/input.h
6576 F:      include/uapi/linux/input.h
6577 F:      include/linux/input/
6578 F:      Documentation/devicetree/bindings/input/
6579
6580 INPUT MULTITOUCH (MT) PROTOCOL
6581 M:      Henrik Rydberg <[email protected]>
6582 L:      [email protected]
6583 S:      Odd fixes
6584 F:      Documentation/input/multi-touch-protocol.rst
6585 F:      drivers/input/input-mt.c
6586 K:      \b(ABS|SYN)_MT_
6587
6588 INTEL ASoC BDW/HSW DRIVERS
6589 M:      Jie Yang <[email protected]>
6590 L:      [email protected] (moderated for non-subscribers)
6591 S:      Supported
6592 F:      sound/soc/intel/common/sst-dsp*
6593 F:      sound/soc/intel/common/sst-firmware.c
6594 F:      sound/soc/intel/boards/broadwell.c
6595 F:      sound/soc/intel/haswell/
6596
6597 INTEL C600 SERIES SAS CONTROLLER DRIVER
6598 M:      Intel SCU Linux support <[email protected]>
6599 M:      Artur Paszkiewicz <[email protected]>
6600 L:      [email protected]
6601 T:      git git://git.code.sf.net/p/intel-sas/isci
6602 S:      Supported
6603 F:      drivers/scsi/isci/
6604
6605 INTEL HID EVENT DRIVER
6606 M:      Alex Hung <[email protected]>
6607 L:      [email protected]
6608 S:      Maintained
6609 F:      drivers/platform/x86/intel-hid.c
6610
6611 INTEL VIRTUAL BUTTON DRIVER
6612 M:      AceLan Kao <[email protected]>
6613 L:      [email protected]
6614 S:      Maintained
6615 F:      drivers/platform/x86/intel-vbtn.c
6616
6617 INTEL IDLE DRIVER
6618 M:      Jacob Pan <[email protected]>
6619 M:      Len Brown <[email protected]>
6620 L:      [email protected]
6621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
6622 B:      https://bugzilla.kernel.org
6623 S:      Supported
6624 F:      drivers/idle/intel_idle.c
6625
6626 INTEL INTEGRATED SENSOR HUB DRIVER
6627 M:      Srinivas Pandruvada <[email protected]>
6628 M:      Jiri Kosina <[email protected]>
6629 L:      [email protected]
6630 S:      Maintained
6631 F:      drivers/hid/intel-ish-hid/
6632
6633 INTEL PSTATE DRIVER
6634 M:      Srinivas Pandruvada <[email protected]>
6635 M:      Len Brown <[email protected]>
6636 L:      [email protected]
6637 S:      Supported
6638 F:      drivers/cpufreq/intel_pstate.c
6639
6640 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
6641 M:      Maik Broemme <[email protected]>
6642 L:      [email protected]
6643 S:      Maintained
6644 F:      Documentation/fb/intelfb.txt
6645 F:      drivers/video/fbdev/intelfb/
6646
6647 INTEL 810/815 FRAMEBUFFER DRIVER
6648 M:      Antonino Daplas <[email protected]>
6649 L:      [email protected]
6650 S:      Maintained
6651 F:      drivers/video/fbdev/i810/
6652
6653 INTEL MENLOW THERMAL DRIVER
6654 M:      Sujith Thomas <[email protected]>
6655 L:      [email protected]
6656 W:      https://01.org/linux-acpi
6657 S:      Supported
6658 F:      drivers/platform/x86/intel_menlow.c
6659
6660 INTEL I/OAT DMA DRIVER
6661 M:      Dave Jiang <[email protected]>
6662 R:      Dan Williams <[email protected]>
6663 L:      [email protected]
6664 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6665 S:      Supported
6666 F:      drivers/dma/ioat*
6667
6668 INTEL IOMMU (VT-d)
6669 M:      David Woodhouse <[email protected]>
6670 L:      [email protected]
6671 T:      git git://git.infradead.org/iommu-2.6.git
6672 S:      Supported
6673 F:      drivers/iommu/intel-iommu.c
6674 F:      include/linux/intel-iommu.h
6675
6676 INTEL IOP-ADMA DMA DRIVER
6677 R:      Dan Williams <[email protected]>
6678 S:      Odd fixes
6679 F:      drivers/dma/iop-adma.c
6680
6681 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
6682 M:      Krzysztof Halasa <[email protected]>
6683 S:      Maintained
6684 F:      arch/arm/mach-ixp4xx/include/mach/qmgr.h
6685 F:      arch/arm/mach-ixp4xx/include/mach/npe.h
6686 F:      arch/arm/mach-ixp4xx/ixp4xx_qmgr.c
6687 F:      arch/arm/mach-ixp4xx/ixp4xx_npe.c
6688 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
6689 F:      drivers/net/wan/ixp4xx_hss.c
6690
6691 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
6692 M:      Deepak Saxena <[email protected]>
6693 S:      Maintained
6694 F:      drivers/char/hw_random/ixp4xx-rng.c
6695
6696 INTEL ETHERNET DRIVERS
6697 M:      Jeff Kirsher <[email protected]>
6698 L:      [email protected] (moderated for non-subscribers)
6699 W:      http://www.intel.com/support/feedback.htm
6700 W:      http://e1000.sourceforge.net/
6701 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
6702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue.git
6703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/next-queue.git
6704 S:      Supported
6705 F:      Documentation/networking/e100.txt
6706 F:      Documentation/networking/e1000.txt
6707 F:      Documentation/networking/e1000e.txt
6708 F:      Documentation/networking/igb.txt
6709 F:      Documentation/networking/igbvf.txt
6710 F:      Documentation/networking/ixgb.txt
6711 F:      Documentation/networking/ixgbe.txt
6712 F:      Documentation/networking/ixgbevf.txt
6713 F:      Documentation/networking/i40e.txt
6714 F:      Documentation/networking/i40evf.txt
6715 F:      drivers/net/ethernet/intel/
6716 F:      drivers/net/ethernet/intel/*/
6717
6718 INTEL RDMA RNIC DRIVER
6719 M:     Faisal Latif <[email protected]>
6720 M:     Shiraz Saleem <[email protected]>
6721 L:     [email protected]
6722 S:     Supported
6723 F:     drivers/infiniband/hw/i40iw/
6724
6725 INTEL MERRIFIELD GPIO DRIVER
6726 M:      Andy Shevchenko <[email protected]>
6727 L:      [email protected]
6728 S:      Maintained
6729 F:      drivers/gpio/gpio-merrifield.c
6730
6731 INTEL-MID GPIO DRIVER
6732 M:      David Cohen <[email protected]>
6733 L:      [email protected]
6734 S:      Maintained
6735 F:      drivers/gpio/gpio-intel-mid.c
6736
6737 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
6738 M:      Stanislav Yakovlev <[email protected]>
6739 L:      [email protected]
6740 S:      Maintained
6741 F:      Documentation/networking/README.ipw2100
6742 F:      Documentation/networking/README.ipw2200
6743 F:      drivers/net/wireless/intel/ipw2x00/
6744
6745 INTEL(R) TRACE HUB
6746 M:      Alexander Shishkin <[email protected]>
6747 S:      Supported
6748 F:      Documentation/trace/intel_th.txt
6749 F:      drivers/hwtracing/intel_th/
6750
6751 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
6752 M:      Ning Sun <[email protected]>
6753 L:      [email protected]
6754 W:      http://tboot.sourceforge.net
6755 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
6756 S:      Supported
6757 F:      Documentation/intel_txt.txt
6758 F:      include/linux/tboot.h
6759 F:      arch/x86/kernel/tboot.c
6760
6761 INTEL WIRELESS WIMAX CONNECTION 2400
6762 M:      Inaky Perez-Gonzalez <[email protected]>
6763 M:      [email protected]
6764 L:      [email protected] (subscribers-only)
6765 S:      Supported
6766 W:      http://linuxwimax.org
6767 F:      Documentation/wimax/README.i2400m
6768 F:      drivers/net/wimax/i2400m/
6769 F:      include/uapi/linux/wimax/i2400m.h
6770
6771 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
6772 M:      Stanislaw Gruszka <[email protected]>
6773 L:      [email protected]
6774 S:      Supported
6775 F:      drivers/net/wireless/intel/iwlegacy/
6776
6777 INTEL WIRELESS WIFI LINK (iwlwifi)
6778 M:      Johannes Berg <[email protected]>
6779 M:      Emmanuel Grumbach <[email protected]>
6780 M:      Luca Coelho <[email protected]>
6781 M:      Intel Linux Wireless <[email protected]>
6782 L:      [email protected]
6783 W:      http://intellinuxwireless.org
6784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
6785 S:      Supported
6786 F:      drivers/net/wireless/intel/iwlwifi/
6787
6788 INTEL MANAGEMENT ENGINE (mei)
6789 M:      Tomas Winkler <[email protected]>
6790 L:      [email protected]
6791 S:      Supported
6792 F:      include/uapi/linux/mei.h
6793 F:      include/linux/mei_cl_bus.h
6794 F:      drivers/misc/mei/*
6795 F:      drivers/watchdog/mei_wdt.c
6796 F:      Documentation/misc-devices/mei/*
6797 F:      samples/mei/*
6798
6799 INTEL MIC DRIVERS (mic)
6800 M:      Sudeep Dutt <[email protected]>
6801 M:      Ashutosh Dixit <[email protected]>
6802 S:      Supported
6803 W:      https://github.com/sudeepdutt/mic
6804 W:      http://software.intel.com/en-us/mic-developer
6805 F:      include/linux/mic_bus.h
6806 F:      include/linux/scif.h
6807 F:      include/uapi/linux/mic_common.h
6808 F:      include/uapi/linux/mic_ioctl.h
6809 F:      include/uapi/linux/scif_ioctl.h
6810 F:      drivers/misc/mic/
6811 F:      drivers/dma/mic_x100_dma.c
6812 F:      drivers/dma/mic_x100_dma.h
6813 F:      Documentation/mic/
6814
6815 INTEL PMC/P-Unit IPC DRIVER
6816 M:      Zha Qipeng<[email protected]>
6817 L:      [email protected]
6818 S:      Maintained
6819 F:      drivers/platform/x86/intel_pmc_ipc.c
6820 F:      drivers/platform/x86/intel_punit_ipc.c
6821 F:      arch/x86/include/asm/intel_pmc_ipc.h
6822 F:      arch/x86/include/asm/intel_punit_ipc.h
6823
6824 INTEL TELEMETRY DRIVER
6825 M:      Souvik Kumar Chakravarty <[email protected]>
6826 L:      [email protected]
6827 S:      Maintained
6828 F:      arch/x86/include/asm/intel_telemetry.h
6829 F:      drivers/platform/x86/intel_telemetry*
6830
6831 INTEL PMC CORE DRIVER
6832 M:      Rajneesh Bhardwaj <[email protected]>
6833 M:      Vishwanath Somayaji <[email protected]>
6834 L:      [email protected]
6835 S:      Maintained
6836 F:      arch/x86/include/asm/pmc_core.h
6837 F:      drivers/platform/x86/intel_pmc_core*
6838
6839 INVENSENSE MPU-3050 GYROSCOPE DRIVER
6840 M:      Linus Walleij <[email protected]>
6841 L:      [email protected]
6842 S:      Maintained
6843 F:      drivers/iio/gyro/mpu3050*
6844 F:      Documentation/devicetree/bindings/iio/gyroscope/inv,mpu3050.txt
6845
6846 IOC3 ETHERNET DRIVER
6847 M:      Ralf Baechle <[email protected]>
6848 L:      [email protected]
6849 S:      Maintained
6850 F:      drivers/net/ethernet/sgi/ioc3-eth.c
6851
6852 IOC3 SERIAL DRIVER
6853 M:      Pat Gefre <[email protected]>
6854 L:      [email protected]
6855 S:      Maintained
6856 F:      drivers/tty/serial/ioc3_serial.c
6857
6858 IOMMU DRIVERS
6859 M:      Joerg Roedel <[email protected]>
6860 L:      [email protected]
6861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
6862 S:      Maintained
6863 F:      Documentation/devicetree/bindings/iommu/
6864 F:      drivers/iommu/
6865 F:      include/linux/iommu.h
6866 F:      include/linux/iova.h
6867
6868 IP MASQUERADING
6869 M:      Juanjo Ciarlante <[email protected]>
6870 S:      Maintained
6871 F:      net/ipv4/netfilter/ipt_MASQUERADE.c
6872
6873 IPMI SUBSYSTEM
6874 M:      Corey Minyard <[email protected]>
6875 L:      [email protected] (moderated for non-subscribers)
6876 W:      http://openipmi.sourceforge.net/
6877 S:      Supported
6878 F:      Documentation/IPMI.txt
6879 F:      drivers/char/ipmi/
6880 F:      include/linux/ipmi*
6881 F:      include/uapi/linux/ipmi*
6882
6883 QCOM AUDIO (ASoC) DRIVERS
6884 M:      Patrick Lai <[email protected]>
6885 M:      Banajit Goswami <[email protected]>
6886 L:      [email protected] (moderated for non-subscribers)
6887 S:      Supported
6888 F:      sound/soc/qcom/
6889
6890 IPS SCSI RAID DRIVER
6891 M:      Adaptec OEM Raid Solutions <[email protected]>
6892 L:      [email protected]
6893 W:      http://www.adaptec.com/
6894 S:      Maintained
6895 F:      drivers/scsi/ips*
6896
6897 IPVS
6898 M:      Wensong Zhang <[email protected]>
6899 M:      Simon Horman <[email protected]>
6900 M:      Julian Anastasov <[email protected]>
6901 L:      [email protected]
6902 L:      [email protected]
6903 S:      Maintained
6904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
6905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
6906 F:      Documentation/networking/ipvs-sysctl.txt
6907 F:      include/net/ip_vs.h
6908 F:      include/uapi/linux/ip_vs.h
6909 F:      net/netfilter/ipvs/
6910
6911 IPWIRELESS DRIVER
6912 M:      Jiri Kosina <[email protected]>
6913 M:      David Sterba <[email protected]>
6914 S:      Odd Fixes
6915 F:      drivers/tty/ipwireless/
6916
6917 IPX NETWORK LAYER
6918 L:      [email protected]
6919 S:      Odd fixes
6920 F:      include/net/ipx.h
6921 F:      include/uapi/linux/ipx.h
6922 F:      net/ipx/
6923
6924 IRDA SUBSYSTEM
6925 M:      Samuel Ortiz <[email protected]>
6926 L:      [email protected] (subscribers-only)
6927 L:      [email protected]
6928 W:      http://irda.sourceforge.net/
6929 S:      Maintained
6930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sameo/irda-2.6.git
6931 F:      Documentation/networking/irda.txt
6932 F:      drivers/net/irda/
6933 F:      include/net/irda/
6934 F:      net/irda/
6935
6936 IRQ SUBSYSTEM
6937 M:      Thomas Gleixner <[email protected]>
6938 L:      [email protected]
6939 S:      Maintained
6940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6941 F:      kernel/irq/
6942
6943 IRQCHIP DRIVERS
6944 M:      Thomas Gleixner <[email protected]>
6945 M:      Jason Cooper <[email protected]>
6946 M:      Marc Zyngier <[email protected]>
6947 L:      [email protected]
6948 S:      Maintained
6949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6950 T:      git git://git.infradead.org/users/jcooper/linux.git irqchip/core
6951 F:      Documentation/devicetree/bindings/interrupt-controller/
6952 F:      drivers/irqchip/
6953
6954 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
6955 M:      Marc Zyngier <[email protected]>
6956 S:      Maintained
6957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
6958 F:      Documentation/IRQ-domain.txt
6959 F:      include/linux/irqdomain.h
6960 F:      kernel/irq/irqdomain.c
6961 F:      kernel/irq/msi.c
6962
6963 ISA
6964 M:      William Breathitt Gray <[email protected]>
6965 S:      Maintained
6966 F:      Documentation/isa.txt
6967 F:      drivers/base/isa.c
6968 F:      include/linux/isa.h
6969
6970 ISAPNP
6971 M:      Jaroslav Kysela <[email protected]>
6972 S:      Maintained
6973 F:      Documentation/isapnp.txt
6974 F:      drivers/pnp/isapnp/
6975 F:      include/linux/isapnp.h
6976
6977 ISA RADIO MODULE
6978 M:      Hans Verkuil <[email protected]>
6979 L:      [email protected]
6980 T:      git git://linuxtv.org/media_tree.git
6981 W:      https://linuxtv.org
6982 S:      Maintained
6983 F:      drivers/media/radio/radio-isa*
6984
6985 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
6986 M:      Peter Jones <[email protected]>
6987 M:      Konrad Rzeszutek Wilk <[email protected]>
6988 S:      Maintained
6989 F:      drivers/firmware/iscsi_ibft*
6990
6991 ISCSI
6992 M:      Lee Duncan <[email protected]>
6993 M:      Chris Leech <[email protected]>
6994 L:      [email protected]
6995 W:      www.open-iscsi.com
6996 S:      Maintained
6997 F:      drivers/scsi/*iscsi*
6998 F:      include/scsi/*iscsi*
6999
7000 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
7001 M:      Or Gerlitz <[email protected]>
7002 M:      Sagi Grimberg <[email protected]>
7003 M:      Roi Dayan <[email protected]>
7004 L:      [email protected]
7005 S:      Supported
7006 W:      http://www.openfabrics.org
7007 W:      www.open-iscsi.org
7008 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
7009 F:      drivers/infiniband/ulp/iser/
7010
7011 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
7012 M:      Sagi Grimberg <[email protected]>
7013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
7014 L:      [email protected]
7015 L:      [email protected]
7016 S:      Supported
7017 W:      http://www.linux-iscsi.org
7018 F:      drivers/infiniband/ulp/isert
7019
7020 ISDN SUBSYSTEM
7021 M:      Karsten Keil <[email protected]>
7022 L:      [email protected] (subscribers-only)
7023 L:      [email protected]
7024 W:      http://www.isdn4linux.de
7025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kkeil/isdn-2.6.git
7026 S:      Maintained
7027 F:      Documentation/isdn/
7028 F:      drivers/isdn/
7029 F:      include/linux/isdn.h
7030 F:      include/linux/isdn/
7031 F:      include/uapi/linux/isdn.h
7032 F:      include/uapi/linux/isdn/
7033
7034 ISDN SUBSYSTEM (Eicon active card driver)
7035 M:      Armin Schindler <[email protected]>
7036 L:      [email protected] (subscribers-only)
7037 W:      http://www.melware.de
7038 S:      Maintained
7039 F:      drivers/isdn/hardware/eicon/
7040
7041 IT87 HARDWARE MONITORING DRIVER
7042 M:      Jean Delvare <[email protected]>
7043 L:      [email protected]
7044 S:      Maintained
7045 F:      Documentation/hwmon/it87
7046 F:      drivers/hwmon/it87.c
7047
7048 IT913X MEDIA DRIVER
7049 M:      Antti Palosaari <[email protected]>
7050 L:      [email protected]
7051 W:      https://linuxtv.org
7052 W:      http://palosaari.fi/linux/
7053 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7054 T:      git git://linuxtv.org/anttip/media_tree.git
7055 S:      Maintained
7056 F:      drivers/media/tuners/it913x*
7057
7058 IVTV VIDEO4LINUX DRIVER
7059 M:      Andy Walls <[email protected]>
7060 L:      [email protected] (subscribers-only)
7061 L:      [email protected]
7062 T:      git git://linuxtv.org/media_tree.git
7063 W:      http://www.ivtvdriver.org
7064 S:      Maintained
7065 F:      Documentation/media/v4l-drivers/ivtv*
7066 F:      drivers/media/pci/ivtv/
7067 F:      include/uapi/linux/ivtv*
7068
7069 IX2505V MEDIA DRIVER
7070 M:      Malcolm Priestley <[email protected]>
7071 L:      [email protected]
7072 W:      https://linuxtv.org
7073 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7074 S:      Maintained
7075 F:      drivers/media/dvb-frontends/ix2505v*
7076
7077 JC42.4 TEMPERATURE SENSOR DRIVER
7078 M:      Guenter Roeck <[email protected]>
7079 L:      [email protected]
7080 S:      Maintained
7081 F:      drivers/hwmon/jc42.c
7082 F:      Documentation/hwmon/jc42
7083
7084 JFS FILESYSTEM
7085 M:      Dave Kleikamp <[email protected]>
7086 L:      [email protected]
7087 W:      http://jfs.sourceforge.net/
7088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shaggy/jfs-2.6.git
7089 S:      Maintained
7090 F:      Documentation/filesystems/jfs.txt
7091 F:      fs/jfs/
7092
7093 JME NETWORK DRIVER
7094 M:      Guo-Fu Tseng <[email protected]>
7095 L:      [email protected]
7096 S:      Maintained
7097 F:      drivers/net/ethernet/jme.*
7098
7099 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
7100 M:      David Woodhouse <[email protected]>
7101 L:      [email protected]
7102 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
7103 S:      Maintained
7104 F:      fs/jffs2/
7105 F:      include/uapi/linux/jffs2.h
7106
7107 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
7108 M:      "Theodore Ts'o" <[email protected]>
7109 M:      Jan Kara <[email protected]>
7110 L:      [email protected]
7111 S:      Maintained
7112 F:      fs/jbd2/
7113 F:      include/linux/jbd2.h
7114
7115 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
7116 M:      Mikhail Ulyanov <[email protected]>
7117 L:      [email protected]
7118 S:      Maintained
7119 F:      drivers/media/platform/rcar_jpu.c
7120
7121 JSM Neo PCI based serial card
7122 M:      Gabriel Krisman Bertazi <[email protected]>
7123 L:      [email protected]
7124 S:      Maintained
7125 F:      drivers/tty/serial/jsm/
7126
7127 K10TEMP HARDWARE MONITORING DRIVER
7128 M:      Clemens Ladisch <[email protected]>
7129 L:      [email protected]
7130 S:      Maintained
7131 F:      Documentation/hwmon/k10temp
7132 F:      drivers/hwmon/k10temp.c
7133
7134 K8TEMP HARDWARE MONITORING DRIVER
7135 M:      Rudolf Marek <[email protected]>
7136 L:      [email protected]
7137 S:      Maintained
7138 F:      Documentation/hwmon/k8temp
7139 F:      drivers/hwmon/k8temp.c
7140
7141 KASAN
7142 M:      Andrey Ryabinin <[email protected]>
7143 R:      Alexander Potapenko <[email protected]>
7144 R:      Dmitry Vyukov <[email protected]>
7145 L:      [email protected]
7146 S:      Maintained
7147 F:      arch/*/include/asm/kasan.h
7148 F:      arch/*/mm/kasan_init*
7149 F:      Documentation/dev-tools/kasan.rst
7150 F:      include/linux/kasan*.h
7151 F:      lib/test_kasan.c
7152 F:      mm/kasan/
7153 F:      scripts/Makefile.kasan
7154
7155 KCONFIG
7156 M:      "Yann E. MORIN" <[email protected]>
7157 L:      [email protected]
7158 T:      git git://gitorious.org/linux-kconfig/linux-kconfig
7159 S:      Maintained
7160 F:      Documentation/kbuild/kconfig-language.txt
7161 F:      scripts/kconfig/
7162
7163 KDUMP
7164 M:      Dave Young <[email protected]>
7165 M:      Baoquan He <[email protected]>
7166 R:      Vivek Goyal <[email protected]>
7167 L:      [email protected]
7168 W:      http://lse.sourceforge.net/kdump/
7169 S:      Maintained
7170 F:      Documentation/kdump/
7171
7172 KEENE FM RADIO TRANSMITTER DRIVER
7173 M:      Hans Verkuil <[email protected]>
7174 L:      [email protected]
7175 T:      git git://linuxtv.org/media_tree.git
7176 W:      https://linuxtv.org
7177 S:      Maintained
7178 F:      drivers/media/radio/radio-keene*
7179
7180 KERNEL AUTOMOUNTER v4 (AUTOFS4)
7181 M:      Ian Kent <[email protected]>
7182 L:      [email protected]
7183 S:      Maintained
7184 F:      fs/autofs4/
7185
7186 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
7187 M:      Masahiro Yamada <[email protected]>
7188 M:      Michal Marek <[email protected]>
7189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
7190 L:      [email protected]
7191 S:      Maintained
7192 F:      Documentation/kbuild/
7193 F:      Makefile
7194 F:      scripts/Makefile.*
7195 F:      scripts/basic/
7196 F:      scripts/mk*
7197 F:      scripts/package/
7198
7199 KERNEL JANITORS
7200 L:      [email protected]
7201 W:      http://kernelnewbies.org/KernelJanitors
7202 S:      Odd Fixes
7203
7204 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
7205 M:      "J. Bruce Fields" <[email protected]>
7206 M:      Jeff Layton <[email protected]>
7207 L:      [email protected]
7208 W:      http://nfs.sourceforge.net/
7209 T:      git git://linux-nfs.org/~bfields/linux.git
7210 S:      Supported
7211 F:      fs/nfsd/
7212 F:      include/uapi/linux/nfsd/
7213 F:      fs/lockd/
7214 F:      fs/nfs_common/
7215 F:      net/sunrpc/
7216 F:      include/linux/lockd/
7217 F:      include/linux/sunrpc/
7218 F:      include/uapi/linux/sunrpc/
7219
7220 KERNEL SELFTEST FRAMEWORK
7221 M:      Shuah Khan <[email protected]>
7222 M:      Shuah Khan <[email protected]>
7223 L:      [email protected]
7224 T:      git git://git.kernel.org/pub/scm/shuah/linux-kselftest
7225 S:      Maintained
7226 F:      tools/testing/selftests
7227
7228 KERNEL VIRTUAL MACHINE (KVM)
7229 M:      Paolo Bonzini <[email protected]>
7230 M:      Radim Krčmář <[email protected]>
7231 L:      [email protected]
7232 W:      http://www.linux-kvm.org
7233 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
7234 S:      Supported
7235 F:      Documentation/*/kvm*.txt
7236 F:      Documentation/virtual/kvm/
7237 F:      arch/*/kvm/
7238 F:      arch/x86/kernel/kvm.c
7239 F:      arch/x86/kernel/kvmclock.c
7240 F:      arch/*/include/asm/kvm*
7241 F:      include/linux/kvm*
7242 F:      include/uapi/linux/kvm*
7243 F:      virt/kvm/
7244 F:      tools/kvm/
7245
7246 KERNEL VIRTUAL MACHINE (KVM) FOR AMD-V
7247 M:      Joerg Roedel <[email protected]>
7248 L:      [email protected]
7249 W:      http://www.linux-kvm.org/
7250 S:      Maintained
7251 F:      arch/x86/include/asm/svm.h
7252 F:      arch/x86/kvm/svm.c
7253
7254 KERNEL VIRTUAL MACHINE (KVM) FOR POWERPC
7255 M:      Alexander Graf <[email protected]>
7256 L:      [email protected]
7257 W:      http://www.linux-kvm.org/
7258 T:      git git://github.com/agraf/linux-2.6.git
7259 S:      Supported
7260 F:      arch/powerpc/include/asm/kvm*
7261 F:      arch/powerpc/kvm/
7262
7263 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
7264 M:      Christian Borntraeger <[email protected]>
7265 M:      Cornelia Huck <[email protected]>
7266 L:      [email protected]
7267 W:      http://www.ibm.com/developerworks/linux/linux390/
7268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
7269 S:      Supported
7270 F:      Documentation/s390/kvm.txt
7271 F:      arch/s390/include/asm/kvm*
7272 F:      arch/s390/kvm/
7273 F:      arch/s390/mm/gmap.c
7274
7275 KERNEL VIRTUAL MACHINE (KVM) FOR ARM
7276 M:      Christoffer Dall <[email protected]>
7277 M:      Marc Zyngier <[email protected]>
7278 L:      [email protected] (moderated for non-subscribers)
7279 L:      [email protected]
7280 W:      http://systems.cs.columbia.edu/projects/kvm-arm
7281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
7282 S:      Supported
7283 F:      arch/arm/include/uapi/asm/kvm*
7284 F:      arch/arm/include/asm/kvm*
7285 F:      arch/arm/kvm/
7286 F:      virt/kvm/arm/
7287 F:      include/kvm/arm_*
7288
7289 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
7290 M:      Christoffer Dall <[email protected]>
7291 M:      Marc Zyngier <[email protected]>
7292 L:      [email protected] (moderated for non-subscribers)
7293 L:      [email protected]
7294 S:      Maintained
7295 F:      arch/arm64/include/uapi/asm/kvm*
7296 F:      arch/arm64/include/asm/kvm*
7297 F:      arch/arm64/kvm/
7298
7299 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
7300 M:      James Hogan <[email protected]>
7301 L:      [email protected]
7302 S:      Supported
7303 F:      arch/mips/include/uapi/asm/kvm*
7304 F:      arch/mips/include/asm/kvm*
7305 F:      arch/mips/kvm/
7306
7307 KERNFS
7308 M:      Greg Kroah-Hartman <[email protected]>
7309 M:      Tejun Heo <[email protected]>
7310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
7311 S:      Supported
7312 F:      include/linux/kernfs.h
7313 F:      fs/kernfs/
7314
7315 KEXEC
7316 M:      Eric Biederman <[email protected]>
7317 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
7318 L:      [email protected]
7319 S:      Maintained
7320 F:      include/linux/kexec.h
7321 F:      include/uapi/linux/kexec.h
7322 F:      kernel/kexec*
7323
7324 KEYS/KEYRINGS:
7325 M:      David Howells <[email protected]>
7326 L:      [email protected]
7327 S:      Maintained
7328 F:      Documentation/security/keys.txt
7329 F:      include/linux/key.h
7330 F:      include/linux/key-type.h
7331 F:      include/linux/keyctl.h
7332 F:      include/uapi/linux/keyctl.h
7333 F:      include/keys/
7334 F:      security/keys/
7335
7336 KEYS-TRUSTED
7337 M:      David Safford <[email protected]>
7338 M:      Mimi Zohar <[email protected]>
7339 L:      [email protected]
7340 L:      [email protected]
7341 S:      Supported
7342 F:      Documentation/security/keys-trusted-encrypted.txt
7343 F:      include/keys/trusted-type.h
7344 F:      security/keys/trusted.c
7345 F:      security/keys/trusted.h
7346
7347 KEYS-ENCRYPTED
7348 M:      Mimi Zohar <[email protected]>
7349 M:      David Safford <[email protected]>
7350 L:      [email protected]
7351 L:      [email protected]
7352 S:      Supported
7353 F:      Documentation/security/keys-trusted-encrypted.txt
7354 F:      include/keys/encrypted-type.h
7355 F:      security/keys/encrypted-keys/
7356
7357 KGDB / KDB /debug_core
7358 M:      Jason Wessel <[email protected]>
7359 W:      http://kgdb.wiki.kernel.org/
7360 L:      [email protected]
7361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
7362 S:      Maintained
7363 F:      Documentation/DocBook/kgdb.tmpl
7364 F:      drivers/misc/kgdbts.c
7365 F:      drivers/tty/serial/kgdboc.c
7366 F:      include/linux/kdb.h
7367 F:      include/linux/kgdb.h
7368 F:      kernel/debug/
7369
7370 KMEMCHECK
7371 M:      Vegard Nossum <[email protected]>
7372 M:      Pekka Enberg <[email protected]>
7373 S:      Maintained
7374 F:      Documentation/dev-tools/kmemcheck.rst
7375 F:      arch/x86/include/asm/kmemcheck.h
7376 F:      arch/x86/mm/kmemcheck/
7377 F:      include/linux/kmemcheck.h
7378 F:      mm/kmemcheck.c
7379
7380 KMEMLEAK
7381 M:      Catalin Marinas <[email protected]>
7382 S:      Maintained
7383 F:      Documentation/dev-tools/kmemleak.rst
7384 F:      include/linux/kmemleak.h
7385 F:      mm/kmemleak.c
7386 F:      mm/kmemleak-test.c
7387
7388 KPROBES
7389 M:      Ananth N Mavinakayanahalli <[email protected]>
7390 M:      Anil S Keshavamurthy <[email protected]>
7391 M:      "David S. Miller" <[email protected]>
7392 M:      Masami Hiramatsu <[email protected]>
7393 S:      Maintained
7394 F:      Documentation/kprobes.txt
7395 F:      include/linux/kprobes.h
7396 F:      include/asm-generic/kprobes.h
7397 F:      kernel/kprobes.c
7398
7399 KS0108 LCD CONTROLLER DRIVER
7400 M:      Miguel Ojeda Sandonis <[email protected]>
7401 W:      http://miguelojeda.es/auxdisplay.htm
7402 W:      http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
7403 S:      Maintained
7404 F:      Documentation/auxdisplay/ks0108
7405 F:      drivers/auxdisplay/ks0108.c
7406 F:      include/linux/ks0108.h
7407
7408 L3MDEV
7409 M:      David Ahern <[email protected]>
7410 L:      [email protected]
7411 S:      Maintained
7412 F:      net/l3mdev
7413 F:      include/net/l3mdev.h
7414
7415 LANTIQ MIPS ARCHITECTURE
7416 M:      John Crispin <[email protected]>
7417 L:      [email protected]
7418 S:      Maintained
7419 F:      arch/mips/lantiq
7420
7421 LAPB module
7422 L:      [email protected]
7423 S:      Orphan
7424 F:      Documentation/networking/lapb-module.txt
7425 F:      include/*/lapb.h
7426 F:      net/lapb/
7427
7428 LASI 53c700 driver for PARISC
7429 M:      "James E.J. Bottomley" <[email protected]>
7430 L:      [email protected]
7431 S:      Maintained
7432 F:      Documentation/scsi/53c700.txt
7433 F:      drivers/scsi/53c700*
7434
7435 LED SUBSYSTEM
7436 M:      Richard Purdie <[email protected]>
7437 M:      Jacek Anaszewski <[email protected]>
7438 M:      Pavel Machek <[email protected]>
7439 L:      [email protected]
7440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds.git
7441 S:      Maintained
7442 F:      Documentation/devicetree/bindings/leds/
7443 F:      drivers/leds/
7444 F:      include/linux/leds.h
7445
7446 LEGACY EEPROM DRIVER
7447 M:      Jean Delvare <[email protected]>
7448 S:      Maintained
7449 F:      Documentation/misc-devices/eeprom
7450 F:      drivers/misc/eeprom/eeprom.c
7451
7452 LEGO USB Tower driver
7453 M:      Juergen Stuber <[email protected]>
7454 L:      [email protected]
7455 W:      http://legousb.sourceforge.net/
7456 S:      Maintained
7457 F:      drivers/usb/misc/legousbtower.c
7458
7459 LG2160 MEDIA DRIVER
7460 M:      Michael Krufky <[email protected]>
7461 L:      [email protected]
7462 W:      https://linuxtv.org
7463 W:      http://github.com/mkrufky
7464 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7465 T:      git git://linuxtv.org/mkrufky/tuners.git
7466 S:      Maintained
7467 F:      drivers/media/dvb-frontends/lg2160.*
7468
7469 LGDT3305 MEDIA DRIVER
7470 M:      Michael Krufky <[email protected]>
7471 L:      [email protected]
7472 W:      https://linuxtv.org
7473 W:      http://github.com/mkrufky
7474 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7475 T:      git git://linuxtv.org/mkrufky/tuners.git
7476 S:      Maintained
7477 F:      drivers/media/dvb-frontends/lgdt3305.*
7478
7479 LGUEST
7480 M:      Rusty Russell <[email protected]>
7481 L:      [email protected]
7482 W:      http://lguest.ozlabs.org/
7483 S:      Odd Fixes
7484 F:      arch/x86/include/asm/lguest*.h
7485 F:      arch/x86/lguest/
7486 F:      drivers/lguest/
7487 F:      include/linux/lguest*.h
7488 F:      tools/lguest/
7489
7490 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
7491 M:      Tejun Heo <[email protected]>
7492 L:      [email protected]
7493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7494 S:      Maintained
7495 F:      drivers/ata/
7496 F:      include/linux/ata.h
7497 F:      include/linux/libata.h
7498 F:      Documentation/devicetree/bindings/ata/
7499
7500 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
7501 M:      Viresh Kumar <[email protected]>
7502 L:      [email protected]
7503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7504 S:      Maintained
7505 F:      include/linux/pata_arasan_cf_data.h
7506 F:      drivers/ata/pata_arasan_cf.c
7507
7508 LIBATA PATA DRIVERS
7509 M:      Bartlomiej Zolnierkiewicz <[email protected]>
7510 M:      Tejun Heo <[email protected]>
7511 L:      [email protected]
7512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7513 S:      Maintained
7514 F:      drivers/ata/pata_*.c
7515 F:      drivers/ata/ata_generic.c
7516
7517 LIBATA SATA AHCI PLATFORM devices support
7518 M:      Hans de Goede <[email protected]>
7519 M:      Tejun Heo <[email protected]>
7520 L:      [email protected]
7521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7522 S:      Maintained
7523 F:      drivers/ata/ahci_platform.c
7524 F:      drivers/ata/libahci_platform.c
7525 F:      include/linux/ahci_platform.h
7526
7527 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
7528 M:      Mikael Pettersson <[email protected]>
7529 L:      [email protected]
7530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/libata.git
7531 S:      Maintained
7532 F:      drivers/ata/sata_promise.*
7533
7534 LIBLOCKDEP
7535 M:      Sasha Levin <[email protected]>
7536 S:      Maintained
7537 F:      tools/lib/lockdep/
7538
7539 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
7540 M:      Dan Williams <[email protected]>
7541 L:      [email protected]
7542 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
7544 S:      Supported
7545 F:      drivers/nvdimm/*
7546 F:      include/linux/nd.h
7547 F:      include/linux/libnvdimm.h
7548 F:      include/uapi/linux/ndctl.h
7549
7550 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
7551 M:      Ross Zwisler <[email protected]>
7552 L:      [email protected]
7553 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7554 S:      Supported
7555 F:      drivers/nvdimm/blk.c
7556 F:      drivers/nvdimm/region_devs.c
7557 F:      drivers/acpi/nfit*
7558
7559 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
7560 M:      Vishal Verma <[email protected]>
7561 L:      [email protected]
7562 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7563 S:      Supported
7564 F:      drivers/nvdimm/btt*
7565
7566 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
7567 M:      Ross Zwisler <[email protected]>
7568 L:      [email protected]
7569 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
7570 S:      Supported
7571 F:      drivers/nvdimm/pmem.c
7572 F:      include/linux/pmem.h
7573 F:      arch/*/include/asm/pmem.h
7574
7575 LIGHTNVM PLATFORM SUPPORT
7576 M:      Matias Bjorling <[email protected]>
7577 W:      http://github/OpenChannelSSD
7578 L:      [email protected]
7579 S:      Maintained
7580 F:      drivers/lightnvm/
7581 F:      include/linux/lightnvm.h
7582 F:      include/uapi/linux/lightnvm.h
7583
7584 LINUX FOR POWERPC (32-BIT AND 64-BIT)
7585 M:      Benjamin Herrenschmidt <[email protected]>
7586 M:      Paul Mackerras <[email protected]>
7587 M:      Michael Ellerman <[email protected]>
7588 W:      https://github.com/linuxppc/linux/wiki
7589 L:      [email protected]
7590 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
7591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
7592 S:      Supported
7593 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
7594 F:      Documentation/devicetree/bindings/powerpc/
7595 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
7596 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
7597 F:      Documentation/powerpc/
7598 F:      arch/powerpc/
7599 F:      drivers/char/tpm/tpm_ibmvtpm*
7600 F:      drivers/crypto/nx/
7601 F:      drivers/crypto/vmx/
7602 F:      drivers/i2c/busses/i2c-opal.c
7603 F:      drivers/net/ethernet/ibm/ibmveth.*
7604 F:      drivers/net/ethernet/ibm/ibmvnic.*
7605 F:      drivers/pci/hotplug/pnv_php.c
7606 F:      drivers/pci/hotplug/rpa*
7607 F:      drivers/rtc/rtc-opal.c
7608 F:      drivers/scsi/ibmvscsi/
7609 F:      drivers/tty/hvc/hvc_opal.c
7610 F:      tools/testing/selftests/powerpc
7611 N:      /pmac
7612 N:      powermac
7613 N:      powernv
7614 N:      [^a-z0-9]ps3
7615 N:      pseries
7616
7617 LINUX FOR POWER MACINTOSH
7618 M:      Benjamin Herrenschmidt <[email protected]>
7619 W:      http://www.penguinppc.org/
7620 L:      [email protected]
7621 S:      Maintained
7622 F:      arch/powerpc/platforms/powermac/
7623 F:      drivers/macintosh/
7624
7625 LINUX FOR POWERPC EMBEDDED MPC5XXX
7626 M:      Anatolij Gustschin <[email protected]>
7627 L:      [email protected]
7628 T:      git git://git.denx.de/linux-denx-agust.git
7629 S:      Maintained
7630 F:      arch/powerpc/platforms/512x/
7631 F:      arch/powerpc/platforms/52xx/
7632
7633 LINUX FOR POWERPC EMBEDDED PPC4XX
7634 M:      Alistair Popple <[email protected]>
7635 M:      Matt Porter <[email protected]>
7636 W:      http://www.penguinppc.org/
7637 L:      [email protected]
7638 S:      Maintained
7639 F:      arch/powerpc/platforms/40x/
7640 F:      arch/powerpc/platforms/44x/
7641
7642 LINUX FOR POWERPC EMBEDDED XILINX VIRTEX
7643 L:      [email protected]
7644 S:      Orphan
7645 F:      arch/powerpc/*/*virtex*
7646 F:      arch/powerpc/*/*/*virtex*
7647
7648 LINUX FOR POWERPC EMBEDDED PPC8XX
7649 M:      Vitaly Bordug <[email protected]>
7650 W:      http://www.penguinppc.org/
7651 L:      [email protected]
7652 S:      Maintained
7653 F:      arch/powerpc/platforms/8xx/
7654
7655 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
7656 M:      Scott Wood <[email protected]>
7657 M:      Kumar Gala <[email protected]>
7658 W:      http://www.penguinppc.org/
7659 L:      [email protected]
7660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
7661 S:      Maintained
7662 F:      arch/powerpc/platforms/83xx/
7663 F:      arch/powerpc/platforms/85xx/
7664
7665 LINUX FOR POWERPC PA SEMI PWRFICIENT
7666 L:      [email protected]
7667 S:      Orphan
7668 F:      arch/powerpc/platforms/pasemi/
7669 F:      drivers/*/*pasemi*
7670 F:      drivers/*/*/*pasemi*
7671
7672 LINUX SECURITY MODULE (LSM) FRAMEWORK
7673 M:      Chris Wright <[email protected]>
7674 L:      [email protected]
7675 S:      Supported
7676
7677 LIS3LV02D ACCELEROMETER DRIVER
7678 M:      Eric Piel <[email protected]>
7679 S:      Maintained
7680 F:      Documentation/misc-devices/lis3lv02d
7681 F:      drivers/misc/lis3lv02d/
7682 F:      drivers/platform/x86/hp_accel.c
7683
7684 LIVE PATCHING
7685 M:      Josh Poimboeuf <[email protected]>
7686 M:      Jessica Yu <[email protected]>
7687 M:      Jiri Kosina <[email protected]>
7688 M:      Miroslav Benes <[email protected]>
7689 R:      Petr Mladek <[email protected]>
7690 S:      Maintained
7691 F:      kernel/livepatch/
7692 F:      include/linux/livepatch.h
7693 F:      arch/x86/include/asm/livepatch.h
7694 F:      arch/x86/kernel/livepatch.c
7695 F:      Documentation/livepatch/
7696 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
7697 F:      samples/livepatch/
7698 L:      [email protected]
7699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livepatching.git
7700
7701 LINUX KERNEL DUMP TEST MODULE (LKDTM)
7702 M:      Kees Cook <[email protected]>
7703 S:      Maintained
7704 F:      drivers/misc/lkdtm*
7705
7706 LLC (802.2)
7707 L:      [email protected]
7708 S:      Odd fixes
7709 F:      include/linux/llc.h
7710 F:      include/uapi/linux/llc.h
7711 F:      include/net/llc*
7712 F:      net/llc/
7713
7714 LM73 HARDWARE MONITOR DRIVER
7715 M:      Guillaume Ligneul <[email protected]>
7716 L:      [email protected]
7717 S:      Maintained
7718 F:      drivers/hwmon/lm73.c
7719
7720 LM78 HARDWARE MONITOR DRIVER
7721 M:      Jean Delvare <[email protected]>
7722 L:      [email protected]
7723 S:      Maintained
7724 F:      Documentation/hwmon/lm78
7725 F:      drivers/hwmon/lm78.c
7726
7727 LM83 HARDWARE MONITOR DRIVER
7728 M:      Jean Delvare <[email protected]>
7729 L:      [email protected]
7730 S:      Maintained
7731 F:      Documentation/hwmon/lm83
7732 F:      drivers/hwmon/lm83.c
7733
7734 LM90 HARDWARE MONITOR DRIVER
7735 M:      Jean Delvare <[email protected]>
7736 L:      [email protected]
7737 S:      Maintained
7738 F:      Documentation/hwmon/lm90
7739 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
7740 F:      drivers/hwmon/lm90.c
7741 F:      include/dt-bindings/thermal/lm90.h
7742
7743 LM95234 HARDWARE MONITOR DRIVER
7744 M:      Guenter Roeck <[email protected]>
7745 L:      [email protected]
7746 S:      Maintained
7747 F:      Documentation/hwmon/lm95234
7748 F:      drivers/hwmon/lm95234.c
7749
7750 LME2510 MEDIA DRIVER
7751 M:      Malcolm Priestley <[email protected]>
7752 L:      [email protected]
7753 W:      https://linuxtv.org
7754 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7755 S:      Maintained
7756 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
7757
7758 LOCKING PRIMITIVES
7759 M:      Peter Zijlstra <[email protected]>
7760 M:      Ingo Molnar <[email protected]>
7761 L:      [email protected]
7762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7763 S:      Maintained
7764 F:      Documentation/locking/
7765 F:      include/linux/lockdep.h
7766 F:      include/linux/spinlock*.h
7767 F:      arch/*/include/asm/spinlock*.h
7768 F:      include/linux/rwlock*.h
7769 F:      include/linux/mutex*.h
7770 F:      arch/*/include/asm/mutex*.h
7771 F:      include/linux/rwsem*.h
7772 F:      arch/*/include/asm/rwsem.h
7773 F:      include/linux/seqlock.h
7774 F:      lib/locking*.[ch]
7775 F:      kernel/locking/
7776
7777 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
7778 M:      "Richard Russon (FlatCap)" <[email protected]>
7779 L:      [email protected]
7780 W:      http://www.linux-ntfs.org/content/view/19/37/
7781 S:      Maintained
7782 F:      Documentation/ldm.txt
7783 F:      block/partitions/ldm.*
7784
7785 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
7786 M:      Sathya Prakash <[email protected]>
7787 M:      Chaitra P B <[email protected]>
7788 M:      Suganath Prabu Subramani <[email protected]>
7789 L:      [email protected]
7790 L:      [email protected]
7791 W:      http://www.avagotech.com/support/
7792 S:      Supported
7793 F:      drivers/message/fusion/
7794 F:      drivers/scsi/mpt2sas/
7795 F:      drivers/scsi/mpt3sas/
7796
7797 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
7798 M:      Matthew Wilcox <[email protected]>
7799 L:      [email protected]
7800 S:      Maintained
7801 F:      drivers/scsi/sym53c8xx_2/
7802
7803 LTC4261 HARDWARE MONITOR DRIVER
7804 M:      Guenter Roeck <[email protected]>
7805 L:      [email protected]
7806 S:      Maintained
7807 F:      Documentation/hwmon/ltc4261
7808 F:      drivers/hwmon/ltc4261.c
7809
7810 LTC4306 I2C MULTIPLEXER DRIVER
7811 M:      Michael Hennerich <[email protected]>
7812 W:      http://ez.analog.com/community/linux-device-drivers
7813 L:      [email protected]
7814 S:      Supported
7815 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
7816 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
7817
7818 LTP (Linux Test Project)
7819 M:      Mike Frysinger <[email protected]>
7820 M:      Cyril Hrubis <[email protected]>
7821 M:      Wanlong Gao <[email protected]>
7822 M:      Jan Stancek <[email protected]>
7823 M:      Stanislav Kholmanskikh <[email protected]>
7824 M:      Alexey Kodanev <[email protected]>
7825 L:      [email protected] (subscribers-only)
7826 W:      http://linux-test-project.github.io/
7827 T:      git git://github.com/linux-test-project/ltp.git
7828 S:      Maintained
7829
7830 M32R ARCHITECTURE
7831 W:      http://www.linux-m32r.org/
7832 S:      Orphan
7833 F:      arch/m32r/
7834
7835 M68K ARCHITECTURE
7836 M:      Geert Uytterhoeven <[email protected]>
7837 L:      [email protected]
7838 W:      http://www.linux-m68k.org/
7839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
7840 S:      Maintained
7841 F:      arch/m68k/
7842 F:      drivers/zorro/
7843
7844 M68K ON APPLE MACINTOSH
7845 M:      Joshua Thompson <[email protected]>
7846 W:      http://www.mac.linux-m68k.org/
7847 L:      [email protected]
7848 S:      Maintained
7849 F:      arch/m68k/mac/
7850
7851 M68K ON HP9000/300
7852 M:      Philip Blundell <[email protected]>
7853 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
7854 S:      Maintained
7855 F:      arch/m68k/hp300/
7856
7857 M88DS3103 MEDIA DRIVER
7858 M:      Antti Palosaari <[email protected]>
7859 L:      [email protected]
7860 W:      https://linuxtv.org
7861 W:      http://palosaari.fi/linux/
7862 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7863 T:      git git://linuxtv.org/anttip/media_tree.git
7864 S:      Maintained
7865 F:      drivers/media/dvb-frontends/m88ds3103*
7866
7867 M88RS2000 MEDIA DRIVER
7868 M:      Malcolm Priestley <[email protected]>
7869 L:      [email protected]
7870 W:      https://linuxtv.org
7871 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7872 S:      Maintained
7873 F:      drivers/media/dvb-frontends/m88rs2000*
7874
7875 MA901 MASTERKIT USB FM RADIO DRIVER
7876 M:      Alexey Klimov <[email protected]>
7877 L:      [email protected]
7878 T:      git git://linuxtv.org/media_tree.git
7879 S:      Maintained
7880 F:      drivers/media/radio/radio-ma901.c
7881
7882 MAC80211
7883 M:      Johannes Berg <[email protected]>
7884 L:      [email protected]
7885 W:      http://wireless.kernel.org/
7886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
7887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
7888 S:      Maintained
7889 F:      Documentation/networking/mac80211-injection.txt
7890 F:      include/net/mac80211.h
7891 F:      net/mac80211/
7892 F:      drivers/net/wireless/mac80211_hwsim.[ch]
7893
7894 MAILBOX API
7895 M:      Jassi Brar <[email protected]>
7896 L:      [email protected]
7897 S:      Maintained
7898 F:      drivers/mailbox/
7899 F:      include/linux/mailbox_client.h
7900 F:      include/linux/mailbox_controller.h
7901
7902 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
7903 M:      Michael Kerrisk <[email protected]>
7904 W:      http://www.kernel.org/doc/man-pages
7905 L:      [email protected]
7906 S:      Maintained
7907
7908 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
7909 M:      Rahul Bedarkar <[email protected]>
7910 L:      [email protected]
7911 S:      Maintained
7912 F:      arch/mips/boot/dts/img/pistachio_marduk.dts
7913
7914 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
7915 M:      Andrew Lunn <[email protected]>
7916 M:      Vivien Didelot <[email protected]>
7917 L:      [email protected]
7918 S:      Maintained
7919 F:      drivers/net/dsa/mv88e6xxx/
7920 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
7921
7922 MARVELL ARMADA DRM SUPPORT
7923 M:      Russell King <[email protected]>
7924 S:      Maintained
7925 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
7926 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
7927 F:      drivers/gpu/drm/armada/
7928 F:      include/uapi/drm/armada_drm.h
7929 F:      Documentation/devicetree/bindings/display/armada/
7930
7931 MARVELL CRYPTO DRIVER
7932 M:      Boris Brezillon <[email protected]>
7933 M:      Arnaud Ebalard <[email protected]>
7934 F:      drivers/crypto/marvell/
7935 S:      Maintained
7936 L:      [email protected]
7937
7938 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
7939 M:      Mirko Lindner <[email protected]>
7940 M:      Stephen Hemminger <[email protected]>
7941 L:      [email protected]
7942 S:      Maintained
7943 F:      drivers/net/ethernet/marvell/sk*
7944
7945 MARVELL LIBERTAS WIRELESS DRIVER
7946 L:      [email protected]
7947 S:      Orphan
7948 F:      drivers/net/wireless/marvell/libertas/
7949
7950 MARVELL MV643XX ETHERNET DRIVER
7951 M:      Sebastian Hesselbarth <[email protected]>
7952 L:      [email protected]
7953 S:      Maintained
7954 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
7955 F:      include/linux/mv643xx.h
7956
7957 MARVELL MVNETA ETHERNET DRIVER
7958 M:      Thomas Petazzoni <[email protected]>
7959 L:      [email protected]
7960 S:      Maintained
7961 F:      drivers/net/ethernet/marvell/mvneta.*
7962
7963 MARVELL MWIFIEX WIRELESS DRIVER
7964 M:      Amitkumar Karwar <[email protected]>
7965 M:      Nishant Sarmukadam <[email protected]>
7966 M:      Ganapathi Bhat <[email protected]>
7967 M:      Xinming Hu <[email protected]>
7968 L:      [email protected]
7969 S:      Maintained
7970 F:      drivers/net/wireless/marvell/mwifiex/
7971
7972 MARVELL MWL8K WIRELESS DRIVER
7973 M:      Lennert Buytenhek <[email protected]>
7974 L:      [email protected]
7975 S:      Odd Fixes
7976 F:      drivers/net/wireless/marvell/mwl8k.c
7977
7978 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
7979 M:      Nicolas Pitre <[email protected]>
7980 S:      Odd Fixes
7981 F:      drivers/mmc/host/mvsdio.*
7982
7983 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
7984 M:      Hu Ziji <[email protected]>
7985 L:      [email protected]
7986 S:      Supported
7987 F:      drivers/mmc/host/sdhci-xenon*
7988 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
7989
7990 MATROX FRAMEBUFFER DRIVER
7991 L:      [email protected]
7992 S:      Orphan
7993 F:      drivers/video/fbdev/matrox/matroxfb_*
7994 F:      include/uapi/linux/matroxfb.h
7995
7996 MAX16065 HARDWARE MONITOR DRIVER
7997 M:      Guenter Roeck <[email protected]>
7998 L:      [email protected]
7999 S:      Maintained
8000 F:      Documentation/hwmon/max16065
8001 F:      drivers/hwmon/max16065.c
8002
8003 MAX20751 HARDWARE MONITOR DRIVER
8004 M:      Guenter Roeck <[email protected]>
8005 L:      [email protected]
8006 S:      Maintained
8007 F:      Documentation/hwmon/max20751
8008 F:      drivers/hwmon/max20751.c
8009
8010 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
8011 L:      [email protected]
8012 S:      Orphan
8013 F:      Documentation/hwmon/max6650
8014 F:      drivers/hwmon/max6650.c
8015
8016 MAX6697 HARDWARE MONITOR DRIVER
8017 M:      Guenter Roeck <[email protected]>
8018 L:      [email protected]
8019 S:      Maintained
8020 F:      Documentation/hwmon/max6697
8021 F:      Documentation/devicetree/bindings/i2c/max6697.txt
8022 F:      drivers/hwmon/max6697.c
8023 F:      include/linux/platform_data/max6697.h
8024
8025 MAX9860 MONO AUDIO VOICE CODEC DRIVER
8026 M:      Peter Rosin <[email protected]>
8027 L:      [email protected] (moderated for non-subscribers)
8028 S:      Maintained
8029 F:      Documentation/devicetree/bindings/sound/max9860.txt
8030 F:      sound/soc/codecs/max9860.*
8031
8032 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
8033 M:      Krzysztof Kozlowski <[email protected]>
8034 M:      Bartlomiej Zolnierkiewicz <[email protected]>
8035 L:      [email protected]
8036 S:      Supported
8037 F:      drivers/power/supply/max14577_charger.c
8038 F:      drivers/power/supply/max77693_charger.c
8039
8040 MAXIM MAX77802 MULTIFUNCTION PMIC DEVICE DRIVERS
8041 M:      Javier Martinez Canillas <[email protected]>
8042 L:      [email protected]
8043 S:      Supported
8044 F:      drivers/*/*max77802*.c
8045 F:      Documentation/devicetree/bindings/*/*max77802.txt
8046 F:      include/dt-bindings/*/*max77802.h
8047
8048 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
8049 M:      Chanwoo Choi <[email protected]>
8050 M:      Krzysztof Kozlowski <[email protected]>
8051 M:      Bartlomiej Zolnierkiewicz <[email protected]>
8052 L:      [email protected]
8053 S:      Supported
8054 F:      drivers/*/max14577*.c
8055 F:      drivers/*/max77686*.c
8056 F:      drivers/*/max77693*.c
8057 F:      drivers/extcon/extcon-max14577.c
8058 F:      drivers/extcon/extcon-max77693.c
8059 F:      drivers/rtc/rtc-max77686.c
8060 F:      drivers/clk/clk-max77686.c
8061 F:      Documentation/devicetree/bindings/mfd/max14577.txt
8062 F:      Documentation/devicetree/bindings/*/max77686.txt
8063 F:      Documentation/devicetree/bindings/mfd/max77693.txt
8064 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
8065 F:      include/linux/mfd/max14577*.h
8066 F:      include/linux/mfd/max77686*.h
8067 F:      include/linux/mfd/max77693*.h
8068
8069 MAXIRADIO FM RADIO RECEIVER DRIVER
8070 M:      Hans Verkuil <[email protected]>
8071 L:      [email protected]
8072 T:      git git://linuxtv.org/media_tree.git
8073 W:      https://linuxtv.org
8074 S:      Maintained
8075 F:      drivers/media/radio/radio-maxiradio*
8076
8077 MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVER
8078 M:      Peter Rosin <[email protected]>
8079 L:      [email protected]
8080 S:      Maintained
8081 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
8082 F:      drivers/iio/potentiometer/mcp4531.c
8083
8084 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
8085 M:      William Breathitt Gray <[email protected]>
8086 L:      [email protected]
8087 S:      Maintained
8088 F:      drivers/iio/dac/cio-dac.c
8089
8090 MEDIA DRIVERS FOR RENESAS - FCP
8091 M:      Laurent Pinchart <[email protected]>
8092 L:      [email protected]
8093 L:      [email protected]
8094 T:      git git://linuxtv.org/media_tree.git
8095 S:      Supported
8096 F:      Documentation/devicetree/bindings/media/renesas,fcp.txt
8097 F:      drivers/media/platform/rcar-fcp.c
8098 F:      include/media/rcar-fcp.h
8099
8100 MEDIA DRIVERS FOR RENESAS - FDP1
8101 M:      Kieran Bingham <[email protected]>
8102 L:      [email protected]
8103 L:      [email protected]
8104 T:      git git://linuxtv.org/media_tree.git
8105 S:      Supported
8106 F:      Documentation/devicetree/bindings/media/renesas,fdp1.txt
8107 F:      drivers/media/platform/rcar_fdp1.c
8108
8109 MEDIA DRIVERS FOR RENESAS - VIN
8110 M:      Niklas Söderlund <[email protected]>
8111 L:      [email protected]
8112 L:      [email protected]
8113 T:      git git://linuxtv.org/media_tree.git
8114 S:      Supported
8115 F:      Documentation/devicetree/bindings/media/rcar_vin.txt
8116 F:      drivers/media/platform/rcar-vin/
8117
8118 MEDIA DRIVERS FOR RENESAS - VSP1
8119 M:      Laurent Pinchart <[email protected]>
8120 L:      [email protected]
8121 L:      [email protected]
8122 T:      git git://linuxtv.org/media_tree.git
8123 S:      Supported
8124 F:      Documentation/devicetree/bindings/media/renesas,vsp1.txt
8125 F:      drivers/media/platform/vsp1/
8126
8127 MEDIA DRIVERS FOR HELENE
8128 M:      Abylay Ospan <[email protected]>
8129 L:      [email protected]
8130 W:      https://linuxtv.org
8131 W:      http://netup.tv/
8132 T:      git git://linuxtv.org/media_tree.git
8133 S:      Supported
8134 F:      drivers/media/dvb-frontends/helene*
8135
8136 MEDIA DRIVERS FOR ASCOT2E
8137 M:      Sergey Kozlov <[email protected]>
8138 M:      Abylay Ospan <[email protected]>
8139 L:      [email protected]
8140 W:      https://linuxtv.org
8141 W:      http://netup.tv/
8142 T:      git git://linuxtv.org/media_tree.git
8143 S:      Supported
8144 F:      drivers/media/dvb-frontends/ascot2e*
8145
8146 MEDIA DRIVERS FOR CXD2841ER
8147 M:      Sergey Kozlov <[email protected]>
8148 M:      Abylay Ospan <[email protected]>
8149 L:      [email protected]
8150 W:      https://linuxtv.org
8151 W:      http://netup.tv/
8152 T:      git git://linuxtv.org/media_tree.git
8153 S:      Supported
8154 F:      drivers/media/dvb-frontends/cxd2841er*
8155
8156 MEDIA DRIVERS FOR HORUS3A
8157 M:      Sergey Kozlov <[email protected]>
8158 M:      Abylay Ospan <[email protected]>
8159 L:      [email protected]
8160 W:      https://linuxtv.org
8161 W:      http://netup.tv/
8162 T:      git git://linuxtv.org/media_tree.git
8163 S:      Supported
8164 F:      drivers/media/dvb-frontends/horus3a*
8165
8166 MEDIA DRIVERS FOR LNBH25
8167 M:      Sergey Kozlov <[email protected]>
8168 M:      Abylay Ospan <[email protected]>
8169 L:      [email protected]
8170 W:      https://linuxtv.org
8171 W:      http://netup.tv/
8172 T:      git git://linuxtv.org/media_tree.git
8173 S:      Supported
8174 F:      drivers/media/dvb-frontends/lnbh25*
8175
8176 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
8177 M:      Sergey Kozlov <[email protected]>
8178 M:      Abylay Ospan <[email protected]>
8179 L:      [email protected]
8180 W:      https://linuxtv.org
8181 W:      http://netup.tv/
8182 T:      git git://linuxtv.org/media_tree.git
8183 S:      Supported
8184 F:      drivers/media/pci/netup_unidvb/*
8185
8186 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
8187 M:      Mauro Carvalho Chehab <[email protected]>
8188 M:      Mauro Carvalho Chehab <[email protected]>
8189 P:      LinuxTV.org Project
8190 L:      [email protected]
8191 W:      https://linuxtv.org
8192 Q:      http://patchwork.kernel.org/project/linux-media/list/
8193 T:      git git://linuxtv.org/media_tree.git
8194 S:      Maintained
8195 F:      Documentation/devicetree/bindings/media/
8196 F:      Documentation/media/
8197 F:      drivers/media/
8198 F:      drivers/staging/media/
8199 F:      include/linux/platform_data/media/
8200 F:      include/media/
8201 F:      include/uapi/linux/dvb/
8202 F:      include/uapi/linux/videodev2.h
8203 F:      include/uapi/linux/media.h
8204 F:      include/uapi/linux/v4l2-*
8205 F:      include/uapi/linux/meye.h
8206 F:      include/uapi/linux/ivtv*
8207 F:      include/uapi/linux/uvcvideo.h
8208
8209 MEDIATEK ETHERNET DRIVER
8210 M:      Felix Fietkau <[email protected]>
8211 M:      John Crispin <[email protected]>
8212 L:      [email protected]
8213 S:      Maintained
8214 F:      drivers/net/ethernet/mediatek/
8215
8216 MEDIATEK JPEG DRIVER
8217 M:      Rick Chang <[email protected]>
8218 M:      Bin Liu <[email protected]>
8219 S:      Supported
8220 F:      drivers/media/platform/mtk-jpeg/
8221 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
8222
8223 MEDIATEK MEDIA DRIVER
8224 M:      Tiffany Lin <[email protected]>
8225 M:      Andrew-CT Chen <[email protected]>
8226 S:      Supported
8227 F:      drivers/media/platform/mtk-vcodec/
8228 F:      drivers/media/platform/mtk-vpu/
8229 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
8230 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
8231
8232 MEDIATEK MDP DRIVER
8233 M:      Minghsiu Tsai <[email protected]>
8234 M:      Houlong Wei <[email protected]>
8235 M:      Andrew-CT Chen <[email protected]>
8236 S:      Supported
8237 F:      drivers/media/platform/mtk-mdp/
8238 F:      drivers/media/platform/mtk-vpu/
8239 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
8240
8241 MEDIATEK MT7601U WIRELESS LAN DRIVER
8242 M:      Jakub Kicinski <[email protected]>
8243 L:      [email protected]
8244 S:      Maintained
8245 F:      drivers/net/wireless/mediatek/mt7601u/
8246
8247 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
8248 M:      Peter Senna Tschudin <[email protected]>
8249 M:      Martin Donnelly <[email protected]>
8250 M:      Martyn Welch <[email protected]>
8251 S:      Maintained
8252 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
8253 F:      Documentation/devicetree/bindings/video/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
8254
8255 MEGARAID SCSI/SAS DRIVERS
8256 M:      Kashyap Desai <[email protected]>
8257 M:      Sumit Saxena <[email protected]>
8258 M:      Shivasharan S <[email protected]>
8259 L:      [email protected]
8260 L:      [email protected]
8261 W:      http://www.avagotech.com/support/
8262 S:      Maintained
8263 F:      Documentation/scsi/megaraid.txt
8264 F:      drivers/scsi/megaraid.*
8265 F:      drivers/scsi/megaraid/
8266
8267 MELFAS MIP4 TOUCHSCREEN DRIVER
8268 M:      Sangwon Jee <[email protected]>
8269 W:      http://www.melfas.com
8270 S:      Supported
8271 F:      drivers/input/touchscreen/melfas_mip4.c
8272 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
8273
8274 MELLANOX ETHERNET DRIVER (mlx4_en)
8275 M:      Tariq Toukan <[email protected]>
8276 L:      [email protected]
8277 S:      Supported
8278 W:      http://www.mellanox.com
8279 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8280 F:      drivers/net/ethernet/mellanox/mlx4/en_*
8281
8282 MELLANOX ETHERNET DRIVER (mlx5e)
8283 M:      Saeed Mahameed <[email protected]>
8284 L:      [email protected]
8285 S:      Supported
8286 W:      http://www.mellanox.com
8287 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8288 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
8289
8290 MELLANOX ETHERNET SWITCH DRIVERS
8291 M:      Jiri Pirko <[email protected]>
8292 M:      Ido Schimmel <[email protected]>
8293 L:      [email protected]
8294 S:      Supported
8295 W:      http://www.mellanox.com
8296 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8297 F:      drivers/net/ethernet/mellanox/mlxsw/
8298
8299 MELLANOX MLXCPLD I2C AND MUX DRIVER
8300 M:      Vadim Pasternak <[email protected]>
8301 M:      Michael Shych <[email protected]>
8302 L:      [email protected]
8303 S:      Supported
8304 F:      drivers/i2c/busses/i2c-mlxcpld.c
8305 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
8306 F:      Documentation/i2c/busses/i2c-mlxcpld
8307
8308 MELLANOX MLXCPLD LED DRIVER
8309 M:      Vadim Pasternak <[email protected]>
8310 L:      [email protected]
8311 S:      Supported
8312 F:      drivers/leds/leds-mlxcpld.c
8313 F:      Documentation/leds/leds-mlxcpld.txt
8314
8315 MELLANOX PLATFORM DRIVER
8316 M:      Vadim Pasternak <[email protected]>
8317 L:      [email protected]
8318 S:      Supported
8319 F:      drivers/platform/x86/mlx-platform.c
8320
8321 MELLANOX MLX CPLD HOTPLUG DRIVER
8322 M:      Vadim Pasternak <[email protected]>
8323 L:      [email protected]
8324 S:      Supported
8325 F:      drivers/platform/x86/mlxcpld-hotplug.c
8326 F:      include/linux/platform_data/mlxcpld-hotplug.h
8327
8328 SOFT-ROCE DRIVER (rxe)
8329 M:      Moni Shoua <[email protected]>
8330 L:      [email protected]
8331 S:      Supported
8332 W:      https://github.com/SoftRoCE/rxe-dev/wiki/rxe-dev:-Home
8333 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8334 F:      drivers/infiniband/sw/rxe/
8335 F:      include/uapi/rdma/rdma_user_rxe.h
8336
8337 MEMBARRIER SUPPORT
8338 M:      Mathieu Desnoyers <[email protected]>
8339 M:      "Paul E. McKenney" <[email protected]>
8340 L:      [email protected]
8341 S:      Supported
8342 F:      kernel/membarrier.c
8343 F:      include/uapi/linux/membarrier.h
8344
8345 MEMORY MANAGEMENT
8346 L:      [email protected]
8347 W:      http://www.linux-mm.org
8348 S:      Maintained
8349 F:      include/linux/mm.h
8350 F:      include/linux/gfp.h
8351 F:      include/linux/mmzone.h
8352 F:      include/linux/memory_hotplug.h
8353 F:      include/linux/vmalloc.h
8354 F:      mm/
8355
8356 MEMORY TECHNOLOGY DEVICES (MTD)
8357 M:      David Woodhouse <[email protected]>
8358 M:      Brian Norris <[email protected]>
8359 M:      Boris Brezillon <[email protected]>
8360 M:      Marek Vasut <[email protected]>
8361 M:      Richard Weinberger <[email protected]>
8362 M:      Cyrille Pitchen <[email protected]>
8363 L:      [email protected]
8364 W:      http://www.linux-mtd.infradead.org/
8365 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8366 T:      git git://git.infradead.org/linux-mtd.git
8367 T:      git git://git.infradead.org/l2-mtd.git
8368 S:      Maintained
8369 F:      Documentation/devicetree/bindings/mtd/
8370 F:      drivers/mtd/
8371 F:      include/linux/mtd/
8372 F:      include/uapi/mtd/
8373
8374 MEN A21 WATCHDOG DRIVER
8375 M:      Johannes Thumshirn <[email protected]>
8376 L:      [email protected]
8377 S:      Maintained
8378 F:      drivers/watchdog/mena21_wdt.c
8379
8380 MEN CHAMELEON BUS (mcb)
8381 M:      Johannes Thumshirn <[email protected]>
8382 S:      Maintained
8383 F:      drivers/mcb/
8384 F:      include/linux/mcb.h
8385 F:      Documentation/men-chameleon-bus.txt
8386
8387 MEN F21BMC (Board Management Controller)
8388 M:      Andreas Werner <[email protected]>
8389 S:      Supported
8390 F:      drivers/mfd/menf21bmc.c
8391 F:      drivers/watchdog/menf21bmc_wdt.c
8392 F:      drivers/leds/leds-menf21bmc.c
8393 F:      drivers/hwmon/menf21bmc_hwmon.c
8394 F:      Documentation/hwmon/menf21bmc
8395
8396 METAG ARCHITECTURE
8397 M:      James Hogan <[email protected]>
8398 L:      [email protected]
8399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jhogan/metag.git
8400 S:      Odd Fixes
8401 F:      arch/metag/
8402 F:      Documentation/metag/
8403 F:      Documentation/devicetree/bindings/metag/
8404 F:      Documentation/devicetree/bindings/interrupt-controller/img,*
8405 F:      drivers/clocksource/metag_generic.c
8406 F:      drivers/irqchip/irq-metag.c
8407 F:      drivers/irqchip/irq-metag-ext.c
8408 F:      drivers/tty/metag_da.c
8409
8410 MICROBLAZE ARCHITECTURE
8411 M:      Michal Simek <[email protected]>
8412 W:      http://www.monstr.eu/fdt/
8413 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
8414 S:      Supported
8415 F:      arch/microblaze/
8416
8417 MICROCHIP / ATMEL AT91 / AT32 SERIAL DRIVER
8418 M:      Richard Genoud <[email protected]>
8419 S:      Maintained
8420 F:      drivers/tty/serial/atmel_serial.c
8421 F:      include/linux/atmel_serial.h
8422
8423 MICROCHIP / ATMEL DMA DRIVER
8424 M:      Ludovic Desroches <[email protected]>
8425 L:      [email protected] (moderated for non-subscribers)
8426 L:      [email protected]
8427 S:      Supported
8428 F:      drivers/dma/at_hdmac.c
8429 F:      drivers/dma/at_hdmac_regs.h
8430 F:      include/linux/platform_data/dma-atmel.h
8431
8432 MICROCHIP / ATMEL ISC DRIVER
8433 M:      Songjun Wu <[email protected]>
8434 L:      [email protected]
8435 S:      Supported
8436 F:      drivers/media/platform/atmel/atmel-isc.c
8437 F:      drivers/media/platform/atmel/atmel-isc-regs.h
8438 F:      devicetree/bindings/media/atmel-isc.txt
8439
8440 MICROCHIP USB251XB DRIVER
8441 M:      Richard Leitner <[email protected]>
8442 L:      [email protected]
8443 S:      Maintained
8444 F:      drivers/usb/misc/usb251xb.c
8445 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
8446
8447 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
8448 M:      Chen Yu <[email protected]>
8449 L:      [email protected]
8450 S:      Supported
8451 F:      drivers/platform/x86/surfacepro3_button.c
8452
8453 MICROTEK X6 SCANNER
8454 M:      Oliver Neukum <[email protected]>
8455 S:      Maintained
8456 F:      drivers/usb/image/microtek.*
8457
8458 MIPS
8459 M:      Ralf Baechle <[email protected]>
8460 L:      [email protected]
8461 W:      http://www.linux-mips.org/
8462 T:      git git://git.linux-mips.org/pub/scm/ralf/linux.git
8463 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
8464 S:      Supported
8465 F:      Documentation/devicetree/bindings/mips/
8466 F:      Documentation/mips/
8467 F:      arch/mips/
8468
8469 MIPS/LOONGSON1 ARCHITECTURE
8470 M:      Keguang Zhang <[email protected]>
8471 L:      [email protected]
8472 S:      Maintained
8473 F:      arch/mips/loongson32/
8474 F:      arch/mips/include/asm/mach-loongson32/
8475 F:      drivers/*/*loongson1*
8476 F:      drivers/*/*/*loongson1*
8477
8478 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
8479 M:      Hans Verkuil <[email protected]>
8480 L:      [email protected]
8481 T:      git git://linuxtv.org/media_tree.git
8482 W:      https://linuxtv.org
8483 S:      Odd Fixes
8484 F:      drivers/media/radio/radio-miropcm20*
8485
8486 MELLANOX MLX4 core VPI driver
8487 M:      Yishai Hadas <[email protected]>
8488 L:      [email protected]
8489 L:      [email protected]
8490 W:      http://www.mellanox.com
8491 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8492 S:      Supported
8493 F:      drivers/net/ethernet/mellanox/mlx4/
8494 F:      include/linux/mlx4/
8495 F:      include/uapi/rdma/mlx4-abi.h
8496
8497 MELLANOX MLX4 IB driver
8498 M:      Yishai Hadas <[email protected]>
8499 L:      [email protected]
8500 W:      http://www.mellanox.com
8501 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8502 S:      Supported
8503 F:      drivers/infiniband/hw/mlx4/
8504 F:      include/linux/mlx4/
8505
8506 MELLANOX MLX5 core VPI driver
8507 M:      Saeed Mahameed <[email protected]>
8508 M:      Matan Barak <[email protected]>
8509 M:      Leon Romanovsky <[email protected]>
8510 L:      [email protected]
8511 L:      [email protected]
8512 W:      http://www.mellanox.com
8513 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8514 S:      Supported
8515 F:      drivers/net/ethernet/mellanox/mlx5/core/
8516 F:      include/linux/mlx5/
8517 F:      include/uapi/rdma/mlx5-abi.h
8518
8519 MELLANOX MLX5 IB driver
8520 M:      Matan Barak <[email protected]>
8521 M:      Leon Romanovsky <[email protected]>
8522 L:      [email protected]
8523 W:      http://www.mellanox.com
8524 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
8525 S:      Supported
8526 F:      drivers/infiniband/hw/mlx5/
8527 F:      include/linux/mlx5/
8528
8529 MELEXIS MLX90614 DRIVER
8530 M:      Crt Mori <[email protected]>
8531 L:      [email protected]
8532 W:      http://www.melexis.com
8533 S:      Supported
8534 F:      drivers/iio/temperature/mlx90614.c
8535
8536 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
8537 M:      Don Brace <[email protected]>
8538 L:      [email protected]
8539 L:      [email protected]
8540 S:      Supported
8541 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
8542 F:      drivers/scsi/smartpqi/Kconfig
8543 F:      drivers/scsi/smartpqi/Makefile
8544 F:      include/linux/cciss*.h
8545 F:      include/uapi/linux/cciss*.h
8546 F:      Documentation/scsi/smartpqi.txt
8547
8548 MN88472 MEDIA DRIVER
8549 M:      Antti Palosaari <[email protected]>
8550 L:      [email protected]
8551 W:      https://linuxtv.org
8552 W:      http://palosaari.fi/linux/
8553 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8554 S:      Maintained
8555 F:      drivers/media/dvb-frontends/mn88472*
8556
8557 MN88473 MEDIA DRIVER
8558 M:      Antti Palosaari <[email protected]>
8559 L:      [email protected]
8560 W:      https://linuxtv.org
8561 W:      http://palosaari.fi/linux/
8562 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8563 S:      Maintained
8564 F:      drivers/media/dvb-frontends/mn88473*
8565
8566 MODULE SUPPORT
8567 M:      Jessica Yu <[email protected]>
8568 M:      Rusty Russell <[email protected]>
8569 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
8570 S:      Maintained
8571 F:      include/linux/module.h
8572 F:      kernel/module.c
8573
8574 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
8575 W:      http://popies.net/meye/
8576 S:      Orphan
8577 F:      Documentation/media/v4l-drivers/meye*
8578 F:      drivers/media/pci/meye/
8579 F:      include/uapi/linux/meye.h
8580
8581 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
8582 M:      Jiri Slaby <[email protected]>
8583 S:      Maintained
8584 F:      Documentation/serial/moxa-smartio
8585 F:      drivers/tty/mxser.*
8586
8587 MR800 AVERMEDIA USB FM RADIO DRIVER
8588 M:      Alexey Klimov <[email protected]>
8589 L:      [email protected]
8590 T:      git git://linuxtv.org/media_tree.git
8591 S:      Maintained
8592 F:      drivers/media/radio/radio-mr800.c
8593
8594 MRF24J40 IEEE 802.15.4 RADIO DRIVER
8595 M:      Alan Ott <[email protected]>
8596 L:      [email protected]
8597 S:      Maintained
8598 F:      drivers/net/ieee802154/mrf24j40.c
8599 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
8600
8601 MSI LAPTOP SUPPORT
8602 M:      "Lee, Chun-Yi" <[email protected]>
8603 L:      [email protected]
8604 S:      Maintained
8605 F:      drivers/platform/x86/msi-laptop.c
8606
8607 MSI WMI SUPPORT
8608 L:      [email protected]
8609 S:      Orphan
8610 F:      drivers/platform/x86/msi-wmi.c
8611
8612 MSI001 MEDIA DRIVER
8613 M:      Antti Palosaari <[email protected]>
8614 L:      [email protected]
8615 W:      https://linuxtv.org
8616 W:      http://palosaari.fi/linux/
8617 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8618 T:      git git://linuxtv.org/anttip/media_tree.git
8619 S:      Maintained
8620 F:      drivers/media/tuners/msi001*
8621
8622 MSI2500 MEDIA DRIVER
8623 M:      Antti Palosaari <[email protected]>
8624 L:      [email protected]
8625 W:      https://linuxtv.org
8626 W:      http://palosaari.fi/linux/
8627 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8628 T:      git git://linuxtv.org/anttip/media_tree.git
8629 S:      Maintained
8630 F:      drivers/media/usb/msi2500/
8631
8632 MSYSTEMS DISKONCHIP G3 MTD DRIVER
8633 M:      Robert Jarzmik <[email protected]>
8634 L:      [email protected]
8635 S:      Maintained
8636 F:      drivers/mtd/devices/docg3*
8637
8638 MT9M032 APTINA SENSOR DRIVER
8639 M:      Laurent Pinchart <[email protected]>
8640 L:      [email protected]
8641 T:      git git://linuxtv.org/media_tree.git
8642 S:      Maintained
8643 F:      drivers/media/i2c/mt9m032.c
8644 F:      include/media/i2c/mt9m032.h
8645
8646 MT9P031 APTINA CAMERA SENSOR
8647 M:      Laurent Pinchart <[email protected]>
8648 L:      [email protected]
8649 T:      git git://linuxtv.org/media_tree.git
8650 S:      Maintained
8651 F:      drivers/media/i2c/mt9p031.c
8652 F:      include/media/i2c/mt9p031.h
8653
8654 MT9T001 APTINA CAMERA SENSOR
8655 M:      Laurent Pinchart <[email protected]>
8656 L:      [email protected]
8657 T:      git git://linuxtv.org/media_tree.git
8658 S:      Maintained
8659 F:      drivers/media/i2c/mt9t001.c
8660 F:      include/media/i2c/mt9t001.h
8661
8662 MT9V032 APTINA CAMERA SENSOR
8663 M:      Laurent Pinchart <[email protected]>
8664 L:      [email protected]
8665 T:      git git://linuxtv.org/media_tree.git
8666 S:      Maintained
8667 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
8668 F:      drivers/media/i2c/mt9v032.c
8669 F:      include/media/i2c/mt9v032.h
8670
8671 MULTIFUNCTION DEVICES (MFD)
8672 M:      Lee Jones <[email protected]>
8673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
8674 S:      Supported
8675 F:      Documentation/devicetree/bindings/mfd/
8676 F:      drivers/mfd/
8677 F:      include/linux/mfd/
8678 F:      include/dt-bindings/mfd/
8679
8680 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
8681 M:      Ulf Hansson <[email protected]>
8682 L:      [email protected]
8683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
8684 S:      Maintained
8685 F:      Documentation/devicetree/bindings/mmc/
8686 F:      drivers/mmc/
8687 F:      include/linux/mmc/
8688 F:      include/uapi/linux/mmc/
8689
8690 MULTIMEDIA CARD (MMC) ETC. OVER SPI
8691 S:      Orphan
8692 F:      drivers/mmc/host/mmc_spi.c
8693 F:      include/linux/spi/mmc_spi.h
8694
8695 MULTISOUND SOUND DRIVER
8696 M:      Andrew Veliath <[email protected]>
8697 S:      Maintained
8698 F:      Documentation/sound/oss/MultiSound
8699 F:      sound/oss/msnd*
8700
8701 MULTITECH MULTIPORT CARD (ISICOM)
8702 S:      Orphan
8703 F:      drivers/tty/isicom.c
8704 F:      include/linux/isicom.h
8705
8706 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
8707 M:      Bin Liu <[email protected]>
8708 L:      [email protected]
8709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
8710 S:      Maintained
8711 F:      drivers/usb/musb/
8712
8713 MXL5007T MEDIA DRIVER
8714 M:      Michael Krufky <[email protected]>
8715 L:      [email protected]
8716 W:      https://linuxtv.org
8717 W:      http://github.com/mkrufky
8718 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8719 T:      git git://linuxtv.org/mkrufky/tuners.git
8720 S:      Maintained
8721 F:      drivers/media/tuners/mxl5007t.*
8722
8723 MXSFB DRM DRIVER
8724 M:      Marek Vasut <[email protected]>
8725 S:      Supported
8726 F:      drivers/gpu/drm/mxsfb/
8727 F:      Documentation/devicetree/bindings/display/mxsfb-drm.txt
8728
8729 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
8730 M:      Hyong-Youb Kim <[email protected]>
8731 L:      [email protected]
8732 W:      https://www.myricom.com/support/downloads/myri10ge.html
8733 S:      Supported
8734 F:      drivers/net/ethernet/myricom/myri10ge/
8735
8736 NAND FLASH SUBSYSTEM
8737 M:      Boris Brezillon <[email protected]>
8738 R:      Richard Weinberger <[email protected]>
8739 L:      [email protected]
8740 W:      http://www.linux-mtd.infradead.org/
8741 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8742 T:      git git://github.com/linux-nand/linux.git
8743 S:      Maintained
8744 F:      drivers/mtd/nand/
8745 F:      include/linux/mtd/nand*.h
8746
8747 NATSEMI ETHERNET DRIVER (DP8381x)
8748 S:      Orphan
8749 F:      drivers/net/ethernet/natsemi/natsemi.c
8750
8751 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
8752 M:      Daniel Mack <[email protected]>
8753 S:      Maintained
8754 L:      [email protected] (moderated for non-subscribers)
8755 W:      http://www.native-instruments.com
8756 F:      sound/usb/caiaq/
8757
8758 NCP FILESYSTEM
8759 M:      Petr Vandrovec <[email protected]>
8760 S:      Odd Fixes
8761 F:      fs/ncpfs/
8762
8763 NCR 5380 SCSI DRIVERS
8764 M:      Finn Thain <[email protected]>
8765 M:      Michael Schmitz <[email protected]>
8766 L:      [email protected]
8767 S:      Maintained
8768 F:      Documentation/scsi/g_NCR5380.txt
8769 F:      drivers/scsi/NCR5380.*
8770 F:      drivers/scsi/arm/cumana_1.c
8771 F:      drivers/scsi/arm/oak.c
8772 F:      drivers/scsi/atari_scsi.*
8773 F:      drivers/scsi/dmx3191d.c
8774 F:      drivers/scsi/g_NCR5380.*
8775 F:      drivers/scsi/mac_scsi.*
8776 F:      drivers/scsi/sun3_scsi.*
8777 F:      drivers/scsi/sun3_scsi_vme.c
8778
8779 NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
8780 M:      "James E.J. Bottomley" <[email protected]>
8781 L:      [email protected]
8782 S:      Maintained
8783 F:      drivers/scsi/NCR_D700.*
8784
8785 NCT6775 HARDWARE MONITOR DRIVER
8786 M:      Guenter Roeck <[email protected]>
8787 L:      [email protected]
8788 S:      Maintained
8789 F:      Documentation/hwmon/nct6775
8790 F:      drivers/hwmon/nct6775.c
8791
8792 NETEFFECT IWARP RNIC DRIVER (IW_NES)
8793 M:      Faisal Latif <[email protected]>
8794 L:      [email protected]
8795 W:      http://www.intel.com/Products/Server/Adapters/Server-Cluster/Server-Cluster-overview.htm
8796 S:      Supported
8797 F:      drivers/infiniband/hw/nes/
8798 F:      include/uapi/rdma/nes-abi.h
8799
8800 NETEM NETWORK EMULATOR
8801 M:      Stephen Hemminger <[email protected]>
8802 L:      [email protected] (moderated for non-subscribers)
8803 S:      Maintained
8804 F:      net/sched/sch_netem.c
8805
8806 NETERION 10GbE DRIVERS (s2io/vxge)
8807 M:      Jon Mason <[email protected]>
8808 L:      [email protected]
8809 S:      Supported
8810 F:      Documentation/networking/s2io.txt
8811 F:      Documentation/networking/vxge.txt
8812 F:      drivers/net/ethernet/neterion/
8813
8814 NETFILTER
8815 M:      Pablo Neira Ayuso <[email protected]>
8816 M:      Jozsef Kadlecsik <[email protected]>
8817 M:      Florian Westphal <[email protected]>
8818 L:      [email protected]
8819 L:      [email protected]
8820 W:      http://www.netfilter.org/
8821 W:      http://www.iptables.org/
8822 W:      http://www.nftables.org/
8823 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
8824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
8825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
8826 S:      Maintained
8827 F:      include/linux/netfilter*
8828 F:      include/linux/netfilter/
8829 F:      include/net/netfilter/
8830 F:      include/uapi/linux/netfilter*
8831 F:      include/uapi/linux/netfilter/
8832 F:      net/*/netfilter.c
8833 F:      net/*/netfilter/
8834 F:      net/netfilter/
8835 F:      net/bridge/br_netfilter*.c
8836
8837 NETLABEL
8838 M:      Paul Moore <[email protected]>
8839 W:      http://netlabel.sf.net
8840 L:      [email protected]
8841 S:      Maintained
8842 F:      Documentation/netlabel/
8843 F:      include/net/netlabel.h
8844 F:      net/netlabel/
8845
8846 NETROM NETWORK LAYER
8847 M:      Ralf Baechle <[email protected]>
8848 L:      [email protected]
8849 W:      http://www.linux-ax25.org/
8850 S:      Maintained
8851 F:      include/net/netrom.h
8852 F:      include/uapi/linux/netrom.h
8853 F:      net/netrom/
8854
8855 NETRONOME ETHERNET DRIVERS
8856 M:      Jakub Kicinski <[email protected]>
8857 L:      [email protected]
8858 S:      Maintained
8859 F:      drivers/net/ethernet/netronome/
8860
8861 NETWORK BLOCK DEVICE (NBD)
8862 M:      Josef Bacik <[email protected]>
8863 S:      Maintained
8864 L:      [email protected]
8865 L:      [email protected]
8866 F:      Documentation/blockdev/nbd.txt
8867 F:      drivers/block/nbd.c
8868 F:      include/uapi/linux/nbd.h
8869
8870 NETWORK DROP MONITOR
8871 M:      Neil Horman <[email protected]>
8872 L:      [email protected]
8873 S:      Maintained
8874 W:      https://fedorahosted.org/dropwatch/
8875 F:      net/core/drop_monitor.c
8876
8877 NETWORKING [DSA]
8878 M:      Andrew Lunn <[email protected]>
8879 M:      Vivien Didelot <[email protected]>
8880 M:      Florian Fainelli <[email protected]>
8881 S:      Maintained
8882 F:      net/dsa/
8883 F:      include/net/dsa.h
8884 F:      drivers/net/dsa/
8885
8886 NETWORKING [GENERAL]
8887 M:      "David S. Miller" <[email protected]>
8888 L:      [email protected]
8889 W:      http://www.linuxfoundation.org/en/Net
8890 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
8893 B:      mailto:[email protected]
8894 S:      Maintained
8895 F:      net/
8896 F:      include/net/
8897 F:      include/linux/in.h
8898 F:      include/linux/net.h
8899 F:      include/linux/netdevice.h
8900 F:      include/uapi/linux/in.h
8901 F:      include/uapi/linux/net.h
8902 F:      include/uapi/linux/netdevice.h
8903 F:      include/uapi/linux/net_namespace.h
8904 F:      tools/net/
8905 F:      tools/testing/selftests/net/
8906 F:      lib/random32.c
8907
8908 NETWORKING [IPv4/IPv6]
8909 M:      "David S. Miller" <[email protected]>
8910 M:      Alexey Kuznetsov <[email protected]>
8911 M:      James Morris <[email protected]>
8912 M:      Hideaki YOSHIFUJI <[email protected]>
8913 M:      Patrick McHardy <[email protected]>
8914 L:      [email protected]
8915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8916 S:      Maintained
8917 F:      net/ipv4/
8918 F:      net/ipv6/
8919 F:      include/net/ip*
8920 F:      arch/x86/net/*
8921
8922 NETWORKING [IPSEC]
8923 M:      Steffen Klassert <[email protected]>
8924 M:      Herbert Xu <[email protected]>
8925 M:      "David S. Miller" <[email protected]>
8926 L:      [email protected]
8927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
8928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
8929 S:      Maintained
8930 F:      net/core/flow.c
8931 F:      net/xfrm/
8932 F:      net/key/
8933 F:      net/ipv4/xfrm*
8934 F:      net/ipv4/esp4*
8935 F:      net/ipv4/ah4.c
8936 F:      net/ipv4/ipcomp.c
8937 F:      net/ipv4/ip_vti.c
8938 F:      net/ipv6/xfrm*
8939 F:      net/ipv6/esp6*
8940 F:      net/ipv6/ah6.c
8941 F:      net/ipv6/ipcomp6.c
8942 F:      net/ipv6/ip6_vti.c
8943 F:      include/uapi/linux/xfrm.h
8944 F:      include/net/xfrm.h
8945
8946 NETWORKING [LABELED] (NetLabel, CIPSO, Labeled IPsec, SECMARK)
8947 M:      Paul Moore <[email protected]>
8948 L:      [email protected]
8949 S:      Maintained
8950
8951 NETWORKING [WIRELESS]
8952 L:      [email protected]
8953 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
8954
8955 NETWORKING DRIVERS
8956 L:      [email protected]
8957 W:      http://www.linuxfoundation.org/en/Net
8958 Q:      http://patchwork.ozlabs.org/project/netdev/list/
8959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net.git
8960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git
8961 S:      Odd Fixes
8962 F:      Documentation/devicetree/bindings/net/
8963 F:      drivers/net/
8964 F:      include/linux/if_*
8965 F:      include/linux/netdevice.h
8966 F:      include/linux/etherdevice.h
8967 F:      include/linux/fcdevice.h
8968 F:      include/linux/fddidevice.h
8969 F:      include/linux/hippidevice.h
8970 F:      include/linux/inetdevice.h
8971 F:      include/uapi/linux/if_*
8972 F:      include/uapi/linux/netdevice.h
8973
8974 NETWORKING DRIVERS (WIRELESS)
8975 M:      Kalle Valo <[email protected]>
8976 L:      [email protected]
8977 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
8978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
8979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
8980 S:      Maintained
8981 F:      Documentation/devicetree/bindings/net/wireless/
8982 F:      drivers/net/wireless/
8983
8984 NETXEN (1/10) GbE SUPPORT
8985 M:      Manish Chopra <[email protected]>
8986 M:      Rahul Verma <[email protected]>
8987 M:      [email protected]
8988 L:      [email protected]
8989 S:      Supported
8990 F:      drivers/net/ethernet/qlogic/netxen/
8991
8992 NFC SUBSYSTEM
8993 M:      Samuel Ortiz <[email protected]>
8994 L:      [email protected]
8995 L:      [email protected] (subscribers-only)
8996 S:      Supported
8997 F:      net/nfc/
8998 F:      include/net/nfc/
8999 F:      include/uapi/linux/nfc.h
9000 F:      drivers/nfc/
9001 F:      include/linux/platform_data/nfcmrvl.h
9002 F:      include/linux/platform_data/nxp-nci.h
9003 F:      include/linux/platform_data/pn544.h
9004 F:      include/linux/platform_data/st21nfca.h
9005 F:      include/linux/platform_data/st-nci.h
9006 F:      Documentation/devicetree/bindings/net/nfc/
9007
9008 NFS, SUNRPC, AND LOCKD CLIENTS
9009 M:      Trond Myklebust <[email protected]>
9010 M:      Anna Schumaker <[email protected]>
9011 L:      [email protected]
9012 W:      http://client.linux-nfs.org
9013 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
9014 S:      Maintained
9015 F:      fs/lockd/
9016 F:      fs/nfs/
9017 F:      fs/nfs_common/
9018 F:      net/sunrpc/
9019 F:      include/linux/lockd/
9020 F:      include/linux/nfs*
9021 F:      include/linux/sunrpc/
9022 F:      include/uapi/linux/nfs*
9023 F:      include/uapi/linux/sunrpc/
9024
9025 NILFS2 FILESYSTEM
9026 M:      Ryusuke Konishi <[email protected]>
9027 L:      [email protected]
9028 W:      http://nilfs.sourceforge.net/
9029 W:      http://nilfs.osdn.jp/
9030 T:      git git://github.com/konis/nilfs2.git
9031 S:      Supported
9032 F:      Documentation/filesystems/nilfs2.txt
9033 F:      fs/nilfs2/
9034 F:      include/trace/events/nilfs2.h
9035 F:      include/uapi/linux/nilfs2_api.h
9036 F:      include/uapi/linux/nilfs2_ondisk.h
9037
9038 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
9039 M:      YOKOTA Hiroshi <[email protected]>
9040 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9041 S:      Maintained
9042 F:      Documentation/scsi/NinjaSCSI.txt
9043 F:      drivers/scsi/pcmcia/nsp_*
9044
9045 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
9046 M:      GOTO Masanori <[email protected]>
9047 M:      YOKOTA Hiroshi <[email protected]>
9048 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
9049 S:      Maintained
9050 F:      Documentation/scsi/NinjaSCSI.txt
9051 F:      drivers/scsi/nsp32*
9052
9053 NIOS2 ARCHITECTURE
9054 M:      Ley Foon Tan <[email protected]>
9055 L:      [email protected] (moderated for non-subscribers)
9056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2.git
9057 S:      Maintained
9058 F:      arch/nios2/
9059
9060 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9061 M:      Pavel Machek <[email protected]>
9062 M:      Sakari Ailus <[email protected]>
9063 L:      [email protected]
9064 S:      Maintained
9065 F:      drivers/media/i2c/et8ek8
9066 F:      drivers/media/i2c/ad5820.c
9067
9068 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
9069 M:      Pavel Machek <[email protected]>
9070 M:      Sakari Ailus <[email protected]>
9071 L:      [email protected]
9072 S:      Maintained
9073 F:      drivers/media/i2c/et8ek8
9074 F:      drivers/media/i2c/ad5820.c
9075
9076 NOKIA N900 POWER SUPPLY DRIVERS
9077 R:      Pali Rohár <[email protected]>
9078 F:      include/linux/power/bq2415x_charger.h
9079 F:      include/linux/power/bq27xxx_battery.h
9080 F:      include/linux/power/isp1704_charger.h
9081 F:      drivers/power/supply/bq2415x_charger.c
9082 F:      drivers/power/supply/bq27xxx_battery.c
9083 F:      drivers/power/supply/bq27xxx_battery_i2c.c
9084 F:      drivers/power/supply/isp1704_charger.c
9085 F:      drivers/power/supply/rx51_battery.c
9086
9087 NTB DRIVER CORE
9088 M:      Jon Mason <[email protected]>
9089 M:      Dave Jiang <[email protected]>
9090 M:      Allen Hubbe <[email protected]>
9091 L:      [email protected]
9092 S:      Supported
9093 W:      https://github.com/jonmason/ntb/wiki
9094 T:      git git://github.com/jonmason/ntb.git
9095 F:      drivers/ntb/
9096 F:      drivers/net/ntb_netdev.c
9097 F:      include/linux/ntb.h
9098 F:      include/linux/ntb_transport.h
9099 F:      tools/testing/selftests/ntb/
9100
9101 NTB INTEL DRIVER
9102 M:      Jon Mason <[email protected]>
9103 M:      Dave Jiang <[email protected]>
9104 L:      [email protected]
9105 S:      Supported
9106 W:      https://github.com/jonmason/ntb/wiki
9107 T:      git git://github.com/jonmason/ntb.git
9108 F:      drivers/ntb/hw/intel/
9109
9110 NTB AMD DRIVER
9111 M:      Shyam Sundar S K <[email protected]>
9112 L:      [email protected]
9113 S:      Supported
9114 F:      drivers/ntb/hw/amd/
9115
9116 NTFS FILESYSTEM
9117 M:      Anton Altaparmakov <[email protected]>
9118 L:      [email protected]
9119 W:      http://www.tuxera.com/
9120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
9121 S:      Supported
9122 F:      Documentation/filesystems/ntfs.txt
9123 F:      fs/ntfs/
9124
9125 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
9126 M:      Antonino Daplas <[email protected]>
9127 L:      [email protected]
9128 S:      Maintained
9129 F:      drivers/video/fbdev/riva/
9130 F:      drivers/video/fbdev/nvidia/
9131
9132 NVM EXPRESS DRIVER
9133 M:      Keith Busch <[email protected]>
9134 M:      Jens Axboe <[email protected]>
9135 M:      Christoph Hellwig <[email protected]>
9136 M:      Sagi Grimberg <[email protected]>
9137 L:      [email protected]
9138 T:      git://git.infradead.org/nvme.git
9139 W:      http://git.infradead.org/nvme.git
9140 S:      Supported
9141 F:      drivers/nvme/host/
9142 F:      include/linux/nvme.h
9143 F:      include/uapi/linux/nvme_ioctl.h
9144
9145 NVM EXPRESS TARGET DRIVER
9146 M:      Christoph Hellwig <[email protected]>
9147 M:      Sagi Grimberg <[email protected]>
9148 L:      [email protected]
9149 T:      git://git.infradead.org/nvme.git
9150 W:      http://git.infradead.org/nvme.git
9151 S:      Supported
9152 F:      drivers/nvme/target/
9153
9154 NVM EXPRESS FC TRANSPORT DRIVERS
9155 M:      James Smart <[email protected]>
9156 L:      [email protected]
9157 S:      Supported
9158 F:      include/linux/nvme-fc.h
9159 F:      include/linux/nvme-fc-driver.h
9160 F:      drivers/nvme/host/fc.c
9161 F:      drivers/nvme/target/fc.c
9162 F:      drivers/nvme/target/fcloop.c
9163
9164 NVMEM FRAMEWORK
9165 M:      Srinivas Kandagatla <[email protected]>
9166 S:      Maintained
9167 F:      drivers/nvmem/
9168 F:      Documentation/devicetree/bindings/nvmem/
9169 F:      include/linux/nvmem-consumer.h
9170 F:      include/linux/nvmem-provider.h
9171
9172 NXP-NCI NFC DRIVER
9173 M:      Clément Perrochaud <[email protected]>
9174 R:      Charles Gorand <[email protected]>
9175 L:      [email protected] (moderated for non-subscribers)
9176 S:      Supported
9177 F:      drivers/nfc/nxp-nci
9178
9179 NXP TDA998X DRM DRIVER
9180 M:      Russell King <[email protected]>
9181 S:      Supported
9182 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
9183 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
9184 F:      drivers/gpu/drm/i2c/tda998x_drv.c
9185 F:      include/drm/i2c/tda998x.h
9186
9187 NXP TFA9879 DRIVER
9188 M:      Peter Rosin <[email protected]>
9189 L:      [email protected] (moderated for non-subscribers)
9190 S:      Maintained
9191 F:      sound/soc/codecs/tfa9879*
9192
9193 OBJTOOL
9194 M:      Josh Poimboeuf <[email protected]>
9195 S:      Supported
9196 F:      tools/objtool/
9197
9198 OMAP1 SUPPORT
9199 M:      Aaro Koskinen <[email protected]>
9200 M:      Tony Lindgren <[email protected]>
9201 L:      [email protected]
9202 Q:      http://patchwork.kernel.org/project/linux-omap/list/
9203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
9204 S:      Maintained
9205 F:      arch/arm/mach-omap1/
9206 F:      arch/arm/plat-omap/
9207 F:      arch/arm/configs/omap1_defconfig
9208 F:      drivers/i2c/busses/i2c-omap.c
9209 F:      include/linux/i2c-omap.h
9210
9211 OMAP2+ SUPPORT
9212 M:      Tony Lindgren <[email protected]>
9213 L:      [email protected]
9214 W:      http://www.muru.com/linux/omap/
9215 W:      http://linux.omap.com/
9216 Q:      http://patchwork.kernel.org/project/linux-omap/list/
9217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
9218 S:      Maintained
9219 F:      arch/arm/mach-omap2/
9220 F:      arch/arm/plat-omap/
9221 F:      arch/arm/configs/omap2plus_defconfig
9222 F:      drivers/i2c/busses/i2c-omap.c
9223 F:      drivers/irqchip/irq-omap-intc.c
9224 F:      drivers/mfd/*omap*.c
9225 F:      drivers/mfd/menelaus.c
9226 F:      drivers/mfd/palmas.c
9227 F:      drivers/mfd/tps65217.c
9228 F:      drivers/mfd/tps65218.c
9229 F:      drivers/mfd/tps65910.c
9230 F:      drivers/mfd/twl-core.[ch]
9231 F:      drivers/mfd/twl4030*.c
9232 F:      drivers/mfd/twl6030*.c
9233 F:      drivers/mfd/twl6040*.c
9234 F:      drivers/regulator/palmas-regulator*.c
9235 F:      drivers/regulator/pbias-regulator.c
9236 F:      drivers/regulator/tps65217-regulator.c
9237 F:      drivers/regulator/tps65218-regulator.c
9238 F:      drivers/regulator/tps65910-regulator.c
9239 F:      drivers/regulator/twl-regulator.c
9240 F:      drivers/regulator/twl6030-regulator.c
9241 F:      include/linux/i2c-omap.h
9242
9243 OMAP DEVICE TREE SUPPORT
9244 M:      Benoît Cousson <[email protected]>
9245 M:      Tony Lindgren <[email protected]>
9246 L:      [email protected]
9247 L:      [email protected]
9248 S:      Maintained
9249 F:      arch/arm/boot/dts/*omap*
9250 F:      arch/arm/boot/dts/*am3*
9251 F:      arch/arm/boot/dts/*am4*
9252 F:      arch/arm/boot/dts/*am5*
9253 F:      arch/arm/boot/dts/*dra7*
9254
9255 OMAP CLOCK FRAMEWORK SUPPORT
9256 M:      Paul Walmsley <[email protected]>
9257 L:      [email protected]
9258 S:      Maintained
9259 F:      arch/arm/*omap*/*clock*
9260
9261 OMAP POWER MANAGEMENT SUPPORT
9262 M:      Kevin Hilman <[email protected]>
9263 L:      [email protected]
9264 S:      Maintained
9265 F:      arch/arm/*omap*/*pm*
9266 F:      drivers/cpufreq/omap-cpufreq.c
9267
9268 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
9269 M:      Rajendra Nayak <[email protected]>
9270 M:      Paul Walmsley <[email protected]>
9271 L:      [email protected]
9272 S:      Maintained
9273 F:      arch/arm/mach-omap2/prm*
9274
9275 OMAP AUDIO SUPPORT
9276 M:      Peter Ujfalusi <[email protected]>
9277 M:      Jarkko Nikula <[email protected]>
9278 L:      [email protected] (moderated for non-subscribers)
9279 L:      [email protected]
9280 S:      Maintained
9281 F:      sound/soc/omap/
9282
9283 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
9284 M:      Roger Quadros <[email protected]>
9285 M:      Tony Lindgren <[email protected]>
9286 L:      [email protected]
9287 S:      Maintained
9288 F:      drivers/memory/omap-gpmc.c
9289 F:      arch/arm/mach-omap2/*gpmc*
9290
9291 OMAP FRAMEBUFFER SUPPORT
9292 M:      Tomi Valkeinen <[email protected]>
9293 L:      [email protected]
9294 L:      [email protected]
9295 S:      Maintained
9296 F:      drivers/video/fbdev/omap/
9297
9298 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
9299 M:      Tomi Valkeinen <[email protected]>
9300 L:      [email protected]
9301 L:      [email protected]
9302 S:      Maintained
9303 F:      drivers/video/fbdev/omap2/
9304 F:      Documentation/arm/OMAP/DSS
9305
9306 OMAP HARDWARE SPINLOCK SUPPORT
9307 M:      Ohad Ben-Cohen <[email protected]>
9308 L:      [email protected]
9309 S:      Maintained
9310 F:      drivers/hwspinlock/omap_hwspinlock.c
9311
9312 OMAP MMC SUPPORT
9313 M:      Jarkko Lavinen <[email protected]>
9314 L:      [email protected]
9315 S:      Maintained
9316 F:      drivers/mmc/host/omap.c
9317
9318 OMAP HS MMC SUPPORT
9319 L:      [email protected]
9320 L:      [email protected]
9321 S:      Orphan
9322 F:      drivers/mmc/host/omap_hsmmc.c
9323
9324 OMAP RANDOM NUMBER GENERATOR SUPPORT
9325 M:      Deepak Saxena <[email protected]>
9326 S:      Maintained
9327 F:      drivers/char/hw_random/omap-rng.c
9328
9329 OMAP HWMOD SUPPORT
9330 M:      Benoît Cousson <[email protected]>
9331 M:      Paul Walmsley <[email protected]>
9332 L:      [email protected]
9333 S:      Maintained
9334 F:      arch/arm/mach-omap2/omap_hwmod.*
9335
9336 OMAP HWMOD DATA
9337 M:      Paul Walmsley <[email protected]>
9338 L:      [email protected]
9339 S:      Maintained
9340 F:      arch/arm/mach-omap2/omap_hwmod*data*
9341
9342 OMAP HWMOD DATA FOR OMAP4-BASED DEVICES
9343 M:      Benoît Cousson <[email protected]>
9344 L:      [email protected]
9345 S:      Maintained
9346 F:      arch/arm/mach-omap2/omap_hwmod_44xx_data.c
9347
9348 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
9349 M:      Laurent Pinchart <[email protected]>
9350 L:      [email protected]
9351 S:      Maintained
9352 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
9353 F:      drivers/media/platform/omap3isp/
9354 F:      drivers/staging/media/omap4iss/
9355
9356 OMAP USB SUPPORT
9357 L:      [email protected]
9358 L:      [email protected]
9359 S:      Orphan
9360 F:      drivers/usb/*/*omap*
9361 F:      arch/arm/*omap*/usb*
9362
9363 OMAP GPIO DRIVER
9364 M:      Grygorii Strashko <[email protected]>
9365 M:      Santosh Shilimkar <[email protected]>
9366 M:      Kevin Hilman <[email protected]>
9367 L:      [email protected]
9368 S:      Maintained
9369 F:      Documentation/devicetree/bindings/gpio/gpio-omap.txt
9370 F:      drivers/gpio/gpio-omap.c
9371
9372 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
9373 M:      Mark Jackson <[email protected]>
9374 L:      [email protected]
9375 S:      Maintained
9376 F:      arch/arm/boot/dts/am335x-nano.dts
9377
9378 OMFS FILESYSTEM
9379 M:      Bob Copeland <[email protected]>
9380 L:      [email protected]
9381 S:      Maintained
9382 F:      Documentation/filesystems/omfs.txt
9383 F:      fs/omfs/
9384
9385 OMNIKEY CARDMAN 4000 DRIVER
9386 M:      Harald Welte <[email protected]>
9387 S:      Maintained
9388 F:      drivers/char/pcmcia/cm4000_cs.c
9389 F:      include/linux/cm4000_cs.h
9390 F:      include/uapi/linux/cm4000_cs.h
9391
9392 OMNIKEY CARDMAN 4040 DRIVER
9393 M:      Harald Welte <[email protected]>
9394 S:      Maintained
9395 F:      drivers/char/pcmcia/cm4040_cs.*
9396
9397 OMNIVISION OV5647 SENSOR DRIVER
9398 M:      Ramiro Oliveira <[email protected]>
9399 L:      [email protected]
9400 T:      git git://linuxtv.org/media_tree.git
9401 S:      Maintained
9402 F:      drivers/media/i2c/ov5647.c
9403
9404 OMNIVISION OV7670 SENSOR DRIVER
9405 M:      Jonathan Corbet <[email protected]>
9406 L:      [email protected]
9407 T:      git git://linuxtv.org/media_tree.git
9408 S:      Maintained
9409 F:      drivers/media/i2c/ov7670.c
9410 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
9411
9412 ONENAND FLASH DRIVER
9413 M:      Kyungmin Park <[email protected]>
9414 L:      [email protected]
9415 S:      Maintained
9416 F:      drivers/mtd/onenand/
9417 F:      include/linux/mtd/onenand*.h
9418
9419 ONSTREAM SCSI TAPE DRIVER
9420 M:      Willem Riede <[email protected]>
9421 L:      [email protected]
9422 L:      [email protected]
9423 S:      Maintained
9424 F:      Documentation/scsi/osst.txt
9425 F:      drivers/scsi/osst.*
9426 F:      drivers/scsi/osst_*.h
9427 F:      drivers/scsi/st.h
9428
9429 OPENCORES I2C BUS DRIVER
9430 M:      Peter Korsgaard <[email protected]>
9431 L:      [email protected]
9432 S:      Maintained
9433 F:      Documentation/i2c/busses/i2c-ocores
9434 F:      drivers/i2c/busses/i2c-ocores.c
9435
9436 OPEN FIRMWARE AND FLATTENED DEVICE TREE
9437 M:      Rob Herring <[email protected]>
9438 M:      Frank Rowand <[email protected]>
9439 L:      [email protected]
9440 W:      http://www.devicetree.org/
9441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
9442 S:      Maintained
9443 F:      drivers/of/
9444 F:      include/linux/of*.h
9445 F:      scripts/dtc/
9446
9447 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
9448 M:      Rob Herring <[email protected]>
9449 M:      Mark Rutland <[email protected]>
9450 L:      [email protected]
9451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
9452 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
9453 S:      Maintained
9454 F:      Documentation/devicetree/
9455 F:      arch/*/boot/dts/
9456 F:      include/dt-bindings/
9457
9458 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
9459 M:      Pantelis Antoniou <[email protected]>
9460 L:      [email protected]
9461 S:      Maintained
9462 F:      Documentation/devicetree/dynamic-resolution-notes.txt
9463 F:      Documentation/devicetree/overlay-notes.txt
9464 F:      drivers/of/overlay.c
9465 F:      drivers/of/resolver.c
9466
9467 OPENRISC ARCHITECTURE
9468 M:      Jonas Bonn <[email protected]>
9469 M:      Stefan Kristiansson <[email protected]>
9470 M:      Stafford Horne <[email protected]>
9471 T:      git git://github.com/openrisc/linux.git
9472 L:      [email protected]
9473 W:      http://openrisc.io
9474 S:      Maintained
9475 F:      arch/openrisc/
9476
9477 OPENVSWITCH
9478 M:      Pravin Shelar <[email protected]>
9479 L:      [email protected]
9480 L:      [email protected]
9481 W:      http://openvswitch.org
9482 S:      Maintained
9483 F:      net/openvswitch/
9484 F:      include/uapi/linux/openvswitch.h
9485
9486 OPERATING PERFORMANCE POINTS (OPP)
9487 M:      Viresh Kumar <[email protected]>
9488 M:      Nishanth Menon <[email protected]>
9489 M:      Stephen Boyd <[email protected]>
9490 L:      [email protected]
9491 S:      Maintained
9492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
9493 F:      drivers/base/power/opp/
9494 F:      include/linux/pm_opp.h
9495 F:      Documentation/power/opp.txt
9496 F:      Documentation/devicetree/bindings/opp/
9497
9498 OPL4 DRIVER
9499 M:      Clemens Ladisch <[email protected]>
9500 L:      [email protected] (moderated for non-subscribers)
9501 T:      git git://git.alsa-project.org/alsa-kernel.git
9502 S:      Maintained
9503 F:      sound/drivers/opl4/
9504
9505 OPROFILE
9506 M:      Robert Richter <[email protected]>
9507 L:      [email protected]
9508 S:      Maintained
9509 F:      arch/*/include/asm/oprofile*.h
9510 F:      arch/*/oprofile/
9511 F:      drivers/oprofile/
9512 F:      include/linux/oprofile.h
9513
9514 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
9515 M:      Mark Fasheh <[email protected]>
9516 M:      Joel Becker <[email protected]>
9517 L:      [email protected] (moderated for non-subscribers)
9518 W:      http://ocfs2.wiki.kernel.org
9519 S:      Supported
9520 F:      Documentation/filesystems/ocfs2.txt
9521 F:      Documentation/filesystems/dlmfs.txt
9522 F:      fs/ocfs2/
9523
9524 ORINOCO DRIVER
9525 L:      [email protected]
9526 W:      http://wireless.kernel.org/en/users/Drivers/orinoco
9527 W:      http://www.nongnu.org/orinoco/
9528 S:      Orphan
9529 F:      drivers/net/wireless/intersil/orinoco/
9530
9531 OSD LIBRARY and FILESYSTEM
9532 M:      Boaz Harrosh <[email protected]>
9533 M:      Benny Halevy <[email protected]>
9534 L:      [email protected]
9535 W:      http://open-osd.org
9536 T:      git git://git.open-osd.org/open-osd.git
9537 S:      Maintained
9538 F:      drivers/scsi/osd/
9539 F:      include/scsi/osd_*
9540 F:      fs/exofs/
9541
9542 OVERLAY FILESYSTEM
9543 M:      Miklos Szeredi <[email protected]>
9544 L:      [email protected]
9545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
9546 S:      Supported
9547 F:      fs/overlayfs/
9548 F:      Documentation/filesystems/overlayfs.txt
9549
9550 ORANGEFS FILESYSTEM
9551 M:      Mike Marshall <[email protected]>
9552 L:      [email protected] (subscribers-only)
9553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
9554 S:      Supported
9555 F:      fs/orangefs/
9556 F:      Documentation/filesystems/orangefs.txt
9557
9558 P54 WIRELESS DRIVER
9559 M:      Christian Lamparter <[email protected]>
9560 L:      [email protected]
9561 W:      http://wireless.kernel.org/en/users/Drivers/p54
9562 S:      Maintained
9563 F:      drivers/net/wireless/intersil/p54/
9564
9565 PA SEMI ETHERNET DRIVER
9566 L:      [email protected]
9567 S:      Orphan
9568 F:      drivers/net/ethernet/pasemi/*
9569
9570 PA SEMI SMBUS DRIVER
9571 L:      [email protected]
9572 S:      Orphan
9573 F:      drivers/i2c/busses/i2c-pasemi.c
9574
9575 PADATA PARALLEL EXECUTION MECHANISM
9576 M:      Steffen Klassert <[email protected]>
9577 L:      [email protected]
9578 S:      Maintained
9579 F:      kernel/padata.c
9580 F:      include/linux/padata.h
9581 F:      Documentation/padata.txt
9582
9583 PANASONIC LAPTOP ACPI EXTRAS DRIVER
9584 M:      Harald Welte <[email protected]>
9585 L:      [email protected]
9586 S:      Maintained
9587 F:      drivers/platform/x86/panasonic-laptop.c
9588
9589 PANASONIC MN10300/AM33/AM34 PORT
9590 M:      David Howells <[email protected]>
9591 L:      [email protected] (moderated for non-subscribers)
9592 W:      ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
9593 S:      Maintained
9594 F:      Documentation/mn10300/
9595 F:      arch/mn10300/
9596
9597 PARALLEL LCD/KEYPAD PANEL DRIVER
9598 M:      Willy Tarreau <[email protected]>
9599 M:      Ksenija Stanojevic <[email protected]>
9600 S:      Odd Fixes
9601 F:      Documentation/misc-devices/lcd-panel-cgram.txt
9602 F:      drivers/misc/panel.c
9603
9604 PARALLEL PORT SUBSYSTEM
9605 M:      Sudip Mukherjee <[email protected]>
9606 M:      Sudip Mukherjee <[email protected]>
9607 L:      [email protected] (subscribers-only)
9608 S:      Maintained
9609 F:      drivers/parport/
9610 F:      include/linux/parport*.h
9611 F:      drivers/char/ppdev.c
9612 F:      include/uapi/linux/ppdev.h
9613 F:      Documentation/parport*.txt
9614
9615 PARAVIRT_OPS INTERFACE
9616 M:      Jeremy Fitzhardinge <[email protected]>
9617 M:      Chris Wright <[email protected]>
9618 M:      Alok Kataria <[email protected]>
9619 M:      Rusty Russell <[email protected]>
9620 L:      [email protected]
9621 S:      Supported
9622 F:      Documentation/virtual/paravirt_ops.txt
9623 F:      arch/*/kernel/paravirt*
9624 F:      arch/*/include/asm/paravirt.h
9625 F:      include/linux/hypervisor.h
9626
9627 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
9628 M:      Tim Waugh <[email protected]>
9629 L:      [email protected] (subscribers-only)
9630 S:      Maintained
9631 F:      Documentation/blockdev/paride.txt
9632 F:      drivers/block/paride/
9633
9634 PARISC ARCHITECTURE
9635 M:      "James E.J. Bottomley" <[email protected]>
9636 M:      Helge Deller <[email protected]>
9637 L:      [email protected]
9638 W:      http://www.parisc-linux.org/
9639 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
9640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
9641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
9642 S:      Maintained
9643 F:      arch/parisc/
9644 F:      Documentation/parisc/
9645 F:      drivers/parisc/
9646 F:      drivers/char/agp/parisc-agp.c
9647 F:      drivers/input/serio/gscps2.c
9648 F:      drivers/parport/parport_gsc.*
9649 F:      drivers/tty/serial/8250/8250_gsc.c
9650 F:      drivers/video/fbdev/sti*
9651 F:      drivers/video/console/sti*
9652 F:      drivers/video/logo/logo_parisc*
9653
9654 PARMAN
9655 M:      Jiri Pirko <[email protected]>
9656 L:      [email protected]
9657 S:      Supported
9658 F:      lib/parman.c
9659 F:      lib/test_parman.c
9660 F:      include/linux/parman.h
9661
9662 PC87360 HARDWARE MONITORING DRIVER
9663 M:      Jim Cromie <[email protected]>
9664 L:      [email protected]
9665 S:      Maintained
9666 F:      Documentation/hwmon/pc87360
9667 F:      drivers/hwmon/pc87360.c
9668
9669 PC8736x GPIO DRIVER
9670 M:      Jim Cromie <[email protected]>
9671 S:      Maintained
9672 F:      drivers/char/pc8736x_gpio.c
9673
9674 PC87427 HARDWARE MONITORING DRIVER
9675 M:      Jean Delvare <[email protected]>
9676 L:      [email protected]
9677 S:      Maintained
9678 F:      Documentation/hwmon/pc87427
9679 F:      drivers/hwmon/pc87427.c
9680
9681 PCA9532 LED DRIVER
9682 M:      Riku Voipio <[email protected]>
9683 S:      Maintained
9684 F:      drivers/leds/leds-pca9532.c
9685 F:      include/linux/leds-pca9532.h
9686
9687 PCA9541 I2C BUS MASTER SELECTOR DRIVER
9688 M:      Guenter Roeck <[email protected]>
9689 L:      [email protected]
9690 S:      Maintained
9691 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
9692
9693 PCDP - PRIMARY CONSOLE AND DEBUG PORT
9694 M:      Khalid Aziz <[email protected]>
9695 S:      Maintained
9696 F:      drivers/firmware/pcdp.*
9697
9698 PCI ERROR RECOVERY
9699 M:      Linas Vepstas <[email protected]>
9700 L:      [email protected]
9701 S:      Supported
9702 F:      Documentation/PCI/pci-error-recovery.txt
9703
9704 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
9705 M:      Russell Currey <[email protected]>
9706 L:      [email protected]
9707 S:      Supported
9708 F:      Documentation/powerpc/eeh-pci-error-recovery.txt
9709 F:      arch/powerpc/kernel/eeh*.c
9710 F:      arch/powerpc/platforms/*/eeh*.c
9711 F:      arch/powerpc/include/*/eeh*.h
9712
9713 PCI SUBSYSTEM
9714 M:      Bjorn Helgaas <[email protected]>
9715 L:      [email protected]
9716 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
9717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
9718 S:      Supported
9719 F:      Documentation/devicetree/bindings/pci/
9720 F:      Documentation/PCI/
9721 F:      drivers/pci/
9722 F:      include/linux/pci*
9723 F:      arch/x86/pci/
9724 F:      arch/x86/kernel/quirks.c
9725
9726 PCI DRIVER FOR ALTERA PCIE IP
9727 M:      Ley Foon Tan <[email protected]>
9728 L:      [email protected] (moderated for non-subscribers)
9729 L:      [email protected]
9730 S:      Supported
9731 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
9732 F:      drivers/pci/host/pcie-altera.c
9733
9734 PCI DRIVER FOR ARM VERSATILE PLATFORM
9735 M:      Rob Herring <[email protected]>
9736 L:      [email protected]
9737 L:      [email protected]
9738 S:      Maintained
9739 F:      Documentation/devicetree/bindings/pci/versatile.txt
9740 F:      drivers/pci/host/pci-versatile.c
9741
9742 PCI DRIVER FOR ARMADA 8K
9743 M:      Thomas Petazzoni <[email protected]>
9744 L:      [email protected]
9745 L:      [email protected]
9746 S:      Maintained
9747 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
9748 F:      drivers/pci/dwc/pcie-armada8k.c
9749
9750 PCI DRIVER FOR APPLIEDMICRO XGENE
9751 M:      Tanmay Inamdar <[email protected]>
9752 L:      [email protected]
9753 L:      [email protected]
9754 S:      Maintained
9755 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
9756 F:      drivers/pci/host/pci-xgene.c
9757
9758 PCI DRIVER FOR FREESCALE LAYERSCAPE
9759 M:      Minghuan Lian <[email protected]>
9760 M:      Mingkai Hu <[email protected]>
9761 M:      Roy Zang <[email protected]>
9762 L:      [email protected]
9763 L:      [email protected]
9764 L:      [email protected]
9765 S:      Maintained
9766 F:      drivers/pci/dwc/*layerscape*
9767
9768 PCI DRIVER FOR IMX6
9769 M:      Richard Zhu <[email protected]>
9770 M:      Lucas Stach <[email protected]>
9771 L:      [email protected]
9772 L:      [email protected] (moderated for non-subscribers)
9773 S:      Maintained
9774 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.txt
9775 F:      drivers/pci/dwc/*imx6*
9776
9777 PCI DRIVER FOR TI KEYSTONE
9778 M:      Murali Karicheri <[email protected]>
9779 L:      [email protected]
9780 L:      [email protected] (moderated for non-subscribers)
9781 S:      Maintained
9782 F:      drivers/pci/dwc/*keystone*
9783
9784 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
9785 M:      Thomas Petazzoni <[email protected]>
9786 M:      Jason Cooper <[email protected]>
9787 L:      [email protected]
9788 L:      [email protected] (moderated for non-subscribers)
9789 S:      Maintained
9790 F:      drivers/pci/host/*mvebu*
9791
9792 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
9793 M:      Thomas Petazzoni <[email protected]>
9794 L:      [email protected]
9795 L:      [email protected] (moderated for non-subscribers)
9796 S:      Maintained
9797 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
9798 F:      drivers/pci/host/pci-aardvark.c
9799
9800 PCI DRIVER FOR NVIDIA TEGRA
9801 M:      Thierry Reding <[email protected]>
9802 L:      [email protected]
9803 L:      [email protected]
9804 S:      Supported
9805 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
9806 F:      drivers/pci/host/pci-tegra.c
9807
9808 PCI DRIVER FOR TI DRA7XX
9809 M:      Kishon Vijay Abraham I <[email protected]>
9810 L:      [email protected]
9811 L:      [email protected]
9812 S:      Supported
9813 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
9814 F:      drivers/pci/dwc/pci-dra7xx.c
9815
9816 PCI DRIVER FOR RENESAS R-CAR
9817 M:      Simon Horman <[email protected]>
9818 L:      [email protected]
9819 L:      [email protected]
9820 S:      Maintained
9821 F:      drivers/pci/host/*rcar*
9822
9823 PCI DRIVER FOR SAMSUNG EXYNOS
9824 M:      Jingoo Han <[email protected]>
9825 L:      [email protected]
9826 L:      [email protected] (moderated for non-subscribers)
9827 L:      [email protected] (moderated for non-subscribers)
9828 S:      Maintained
9829 F:      drivers/pci/dwc/pci-exynos.c
9830
9831 PCI DRIVER FOR SYNOPSIS DESIGNWARE
9832 M:      Jingoo Han <[email protected]>
9833 M:      Joao Pinto <[email protected]>
9834 L:      [email protected]
9835 S:      Maintained
9836 F:      Documentation/devicetree/bindings/pci/designware-pcie.txt
9837 F:      drivers/pci/dwc/*designware*
9838
9839 PCI DRIVER FOR GENERIC OF HOSTS
9840 M:      Will Deacon <[email protected]>
9841 L:      [email protected]
9842 L:      [email protected] (moderated for non-subscribers)
9843 S:      Maintained
9844 F:      Documentation/devicetree/bindings/pci/host-generic-pci.txt
9845 F:      drivers/pci/host/pci-host-common.c
9846 F:      drivers/pci/host/pci-host-generic.c
9847
9848 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
9849 M:      Keith Busch <[email protected]>
9850 L:      [email protected]
9851 S:      Supported
9852 F:      drivers/pci/host/vmd.c
9853
9854 PCIE DRIVER FOR ST SPEAR13XX
9855 M:      Pratyush Anand <[email protected]>
9856 L:      [email protected]
9857 S:      Maintained
9858 F:      drivers/pci/dwc/*spear*
9859
9860 PCI MSI DRIVER FOR ALTERA MSI IP
9861 M:      Ley Foon Tan <[email protected]>
9862 L:      [email protected] (moderated for non-subscribers)
9863 L:      [email protected]
9864 S:      Supported
9865 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
9866 F:      drivers/pci/host/pcie-altera-msi.c
9867
9868 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
9869 M:      Duc Dang <[email protected]>
9870 L:      [email protected]
9871 L:      [email protected]
9872 S:      Maintained
9873 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
9874 F:      drivers/pci/host/pci-xgene-msi.c
9875
9876 PCIE DRIVER FOR AXIS ARTPEC
9877 M:      Niklas Cassel <[email protected]>
9878 M:      Jesper Nilsson <[email protected]>
9879 L:      [email protected]
9880 L:      [email protected]
9881 S:      Maintained
9882 F:      Documentation/devicetree/bindings/pci/axis,artpec*
9883 F:      drivers/pci/dwc/*artpec*
9884
9885 PCIE DRIVER FOR HISILICON
9886 M:      Zhou Wang <[email protected]>
9887 M:      Gabriele Paoloni <[email protected]>
9888 L:      [email protected]
9889 S:      Maintained
9890 F:      Documentation/devicetree/bindings/pci/hisilicon-pcie.txt
9891 F:      drivers/pci/dwc/pcie-hisi.c
9892
9893 PCIE DRIVER FOR ROCKCHIP
9894 M:      Shawn Lin <[email protected]>
9895 M:      Wenrui Li <[email protected]>
9896 L:      [email protected]
9897 L:      [email protected]
9898 S:      Maintained
9899 F:      Documentation/devicetree/bindings/pci/rockchip-pcie.txt
9900 F:      drivers/pci/host/pcie-rockchip.c
9901
9902 PCIE DRIVER FOR QUALCOMM MSM
9903 M:     Stanimir Varbanov <[email protected]>
9904 L:     [email protected]
9905 L:     [email protected]
9906 S:     Maintained
9907 F:     drivers/pci/dwc/*qcom*
9908
9909 PCIE DRIVER FOR CAVIUM THUNDERX
9910 M:      David Daney <[email protected]>
9911 L:      [email protected]
9912 L:      [email protected] (moderated for non-subscribers)
9913 S:      Supported
9914 F:      Documentation/devicetree/bindings/pci/pci-thunder-*
9915 F:      drivers/pci/host/pci-thunder-*
9916
9917 PCMCIA SUBSYSTEM
9918 P:      Linux PCMCIA Team
9919 L:      [email protected]
9920 W:      http://lists.infradead.org/mailman/listinfo/linux-pcmcia
9921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
9922 S:      Maintained
9923 F:      Documentation/pcmcia/
9924 F:      tools/pcmcia/
9925 F:      drivers/pcmcia/
9926 F:      include/pcmcia/
9927
9928 PCNET32 NETWORK DRIVER
9929 M:      Don Fry <[email protected]>
9930 L:      [email protected]
9931 S:      Maintained
9932 F:      drivers/net/ethernet/amd/pcnet32.c
9933
9934 PCRYPT PARALLEL CRYPTO ENGINE
9935 M:      Steffen Klassert <[email protected]>
9936 L:      [email protected]
9937 S:      Maintained
9938 F:      crypto/pcrypt.c
9939 F:      include/crypto/pcrypt.h
9940
9941 PER-CPU MEMORY ALLOCATOR
9942 M:      Tejun Heo <[email protected]>
9943 M:      Christoph Lameter <[email protected]>
9944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/percpu.git
9945 S:      Maintained
9946 F:      include/linux/percpu*.h
9947 F:      mm/percpu*.c
9948 F:      arch/*/include/asm/percpu.h
9949
9950 PER-TASK DELAY ACCOUNTING
9951 M:      Balbir Singh <[email protected]>
9952 S:      Maintained
9953 F:      include/linux/delayacct.h
9954 F:      kernel/delayacct.c
9955
9956 PERFORMANCE EVENTS SUBSYSTEM
9957 M:      Peter Zijlstra <[email protected]>
9958 M:      Ingo Molnar <[email protected]>
9959 M:      Arnaldo Carvalho de Melo <[email protected]>
9960 R:      Alexander Shishkin <[email protected]>
9961 L:      [email protected]
9962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
9963 S:      Supported
9964 F:      kernel/events/*
9965 F:      include/linux/perf_event.h
9966 F:      include/uapi/linux/perf_event.h
9967 F:      arch/*/kernel/perf_event*.c
9968 F:      arch/*/kernel/*/perf_event*.c
9969 F:      arch/*/kernel/*/*/perf_event*.c
9970 F:      arch/*/include/asm/perf_event.h
9971 F:      arch/*/kernel/perf_callchain.c
9972 F:      arch/*/events/*
9973 F:      tools/perf/
9974
9975 PERSONALITY HANDLING
9976 M:      Christoph Hellwig <[email protected]>
9977 L:      [email protected]
9978 S:      Maintained
9979 F:      include/linux/personality.h
9980 F:      include/uapi/linux/personality.h
9981
9982 PHONET PROTOCOL
9983 M:      Remi Denis-Courmont <[email protected]>
9984 S:      Supported
9985 F:      Documentation/networking/phonet.txt
9986 F:      include/linux/phonet.h
9987 F:      include/net/phonet/
9988 F:      include/uapi/linux/phonet.h
9989 F:      net/phonet/
9990
9991 PHRAM MTD DRIVER
9992 M:      Joern Engel <[email protected]>
9993 L:      [email protected]
9994 S:      Maintained
9995 F:      drivers/mtd/devices/phram.c
9996
9997 PICOLCD HID DRIVER
9998 M:      Bruno Prémont <[email protected]>
9999 L:      [email protected]
10000 S:      Maintained
10001 F:      drivers/hid/hid-picolcd*
10002
10003 PICOXCELL SUPPORT
10004 M:      Jamie Iles <[email protected]>
10005 L:      [email protected] (moderated for non-subscribers)
10006 T:      git git://github.com/jamieiles/linux-2.6-ji.git
10007 S:      Supported
10008 F:      arch/arm/boot/dts/picoxcell*
10009 F:      arch/arm/mach-picoxcell/
10010 F:      drivers/crypto/picoxcell*
10011
10012 PIN CONTROL SUBSYSTEM
10013 M:      Linus Walleij <[email protected]>
10014 L:      [email protected]
10015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
10016 S:      Maintained
10017 F:      Documentation/devicetree/bindings/pinctrl/
10018 F:      Documentation/pinctrl.txt
10019 F:      drivers/pinctrl/
10020 F:      include/linux/pinctrl/
10021
10022 PIN CONTROLLER - ATMEL AT91
10023 M:      Jean-Christophe Plagniol-Villard <[email protected]>
10024 L:      [email protected] (moderated for non-subscribers)
10025 S:      Maintained
10026 F:      drivers/pinctrl/pinctrl-at91.*
10027
10028 PIN CONTROLLER - ATMEL AT91 PIO4
10029 M:      Ludovic Desroches <[email protected]>
10030 L:      [email protected] (moderated for non-subscribers)
10031 L:      [email protected]
10032 S:      Supported
10033 F:      drivers/pinctrl/pinctrl-at91-pio4.*
10034
10035 PIN CONTROLLER - INTEL
10036 M:      Mika Westerberg <[email protected]>
10037 M:      Heikki Krogerus <[email protected]>
10038 S:      Maintained
10039 F:      drivers/pinctrl/intel/
10040
10041 PIN CONTROLLER - RENESAS
10042 M:      Laurent Pinchart <[email protected]>
10043 M:      Geert Uytterhoeven <[email protected]>
10044 L:      [email protected]
10045 S:      Maintained
10046 F:      drivers/pinctrl/sh-pfc/
10047
10048 PIN CONTROLLER - SAMSUNG
10049 M:      Tomasz Figa <[email protected]>
10050 M:      Krzysztof Kozlowski <[email protected]>
10051 M:      Sylwester Nawrocki <[email protected]>
10052 L:      [email protected] (moderated for non-subscribers)
10053 L:      [email protected] (moderated for non-subscribers)
10054 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
10055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
10056 S:      Maintained
10057 F:      drivers/pinctrl/samsung/
10058 F:      include/dt-bindings/pinctrl/samsung.h
10059 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
10060
10061 PIN CONTROLLER - SINGLE
10062 M:      Tony Lindgren <[email protected]>
10063 M:      Haojian Zhuang <[email protected]>
10064 L:      [email protected] (moderated for non-subscribers)
10065 L:      [email protected]
10066 S:      Maintained
10067 F:      drivers/pinctrl/pinctrl-single.c
10068
10069 PIN CONTROLLER - ST SPEAR
10070 M:      Viresh Kumar <[email protected]>
10071 L:      [email protected] (moderated for non-subscribers)
10072 W:      http://www.st.com/spear
10073 S:      Maintained
10074 F:      drivers/pinctrl/spear/
10075
10076 PISTACHIO SOC SUPPORT
10077 M:      James Hartley <[email protected]>
10078 M:      Ionela Voinescu <[email protected]>
10079 L:      [email protected]
10080 S:      Maintained
10081 F:      arch/mips/pistachio/
10082 F:      arch/mips/include/asm/mach-pistachio/
10083 F:      arch/mips/boot/dts/img/pistachio*
10084 F:      arch/mips/configs/pistachio*_defconfig
10085
10086 PKTCDVD DRIVER
10087 S:      Orphan
10088 M:      [email protected]
10089 F:      drivers/block/pktcdvd.c
10090 F:      include/linux/pktcdvd.h
10091 F:      include/uapi/linux/pktcdvd.h
10092
10093 PKUNITY SOC DRIVERS
10094 M:      Guan Xuetao <[email protected]>
10095 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
10096 S:      Maintained
10097 T:      git git://github.com/gxt/linux.git
10098 F:      drivers/input/serio/i8042-unicore32io.h
10099 F:      drivers/i2c/busses/i2c-puv3.c
10100 F:      drivers/video/fbdev/fb-puv3.c
10101 F:      drivers/rtc/rtc-puv3.c
10102
10103 PMBUS HARDWARE MONITORING DRIVERS
10104 M:      Guenter Roeck <[email protected]>
10105 L:      [email protected]
10106 W:      http://hwmon.wiki.kernel.org/
10107 W:      http://www.roeck-us.net/linux/drivers/
10108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
10109 S:      Maintained
10110 F:      Documentation/hwmon/pmbus
10111 F:      drivers/hwmon/pmbus/
10112 F:      include/linux/i2c/pmbus.h
10113
10114 PMC SIERRA MaxRAID DRIVER
10115 L:      [email protected]
10116 W:      http://www.pmc-sierra.com/
10117 S:      Orphan
10118 F:      drivers/scsi/pmcraid.*
10119
10120 PMC SIERRA PM8001 DRIVER
10121 M:      Jack Wang <[email protected]>
10122 M:      [email protected]
10123 L:      [email protected]
10124 S:      Supported
10125 F:      drivers/scsi/pm8001/
10126
10127 POSIX CLOCKS and TIMERS
10128 M:      Thomas Gleixner <[email protected]>
10129 L:      [email protected]
10130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
10131 S:      Maintained
10132 F:      fs/timerfd.c
10133 F:      include/linux/timer*
10134 F:      kernel/time/*timer*
10135
10136 POWER MANAGEMENT CORE
10137 M:      "Rafael J. Wysocki" <[email protected]>
10138 L:      [email protected]
10139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
10140 B:      https://bugzilla.kernel.org
10141 S:      Supported
10142 F:      drivers/base/power/
10143 F:      include/linux/pm.h
10144 F:      include/linux/pm_*
10145 F:      include/linux/powercap.h
10146 F:      drivers/powercap/
10147
10148 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
10149 M:      Sebastian Reichel <[email protected]>
10150 L:      [email protected]
10151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
10152 S:      Maintained
10153 F:      Documentation/devicetree/bindings/power/supply/
10154 F:      include/linux/power_supply.h
10155 F:      drivers/power/supply/
10156
10157 POWER STATE COORDINATION INTERFACE (PSCI)
10158 M:      Mark Rutland <[email protected]>
10159 M:      Lorenzo Pieralisi <[email protected]>
10160 L:      [email protected]
10161 S:      Maintained
10162 F:      drivers/firmware/psci*.c
10163 F:      include/linux/psci.h
10164 F:      include/uapi/linux/psci.h
10165
10166 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
10167 M:      Suraj Jitindar Singh <[email protected]>
10168 L:      [email protected]
10169 S:      Maintained
10170 F:      drivers/char/powernv-op-panel.c
10171
10172 PNP SUPPORT
10173 M:      "Rafael J. Wysocki" <[email protected]>
10174 S:      Maintained
10175 F:      drivers/pnp/
10176
10177 PPP PROTOCOL DRIVERS AND COMPRESSORS
10178 M:      Paul Mackerras <[email protected]>
10179 L:      [email protected]
10180 S:      Maintained
10181 F:      drivers/net/ppp/ppp_*
10182
10183 PPP OVER ATM (RFC 2364)
10184 M:      Mitchell Blank Jr <[email protected]>
10185 S:      Maintained
10186 F:      net/atm/pppoatm.c
10187 F:      include/uapi/linux/atmppp.h
10188
10189 PPP OVER ETHERNET
10190 M:      Michal Ostrowski <[email protected]>
10191 S:      Maintained
10192 F:      drivers/net/ppp/pppoe.c
10193 F:      drivers/net/ppp/pppox.c
10194
10195 PPP OVER L2TP
10196 M:      James Chapman <[email protected]>
10197 S:      Maintained
10198 F:      net/l2tp/l2tp_ppp.c
10199 F:      include/linux/if_pppol2tp.h
10200 F:      include/uapi/linux/if_pppol2tp.h
10201
10202 PPS SUPPORT
10203 M:      Rodolfo Giometti <[email protected]>
10204 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
10205 L:      [email protected] (subscribers-only)
10206 S:      Maintained
10207 F:      Documentation/pps/
10208 F:      drivers/pps/
10209 F:      include/linux/pps*.h
10210
10211 PPTP DRIVER
10212 M:      Dmitry Kozlov <[email protected]>
10213 L:      [email protected]
10214 S:      Maintained
10215 F:      drivers/net/ppp/pptp.c
10216 W:      http://sourceforge.net/projects/accel-pptp
10217
10218 PREEMPTIBLE KERNEL
10219 M:      Robert Love <[email protected]>
10220 L:      [email protected]
10221 W:      https://www.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
10222 S:      Supported
10223 F:      Documentation/preempt-locking.txt
10224 F:      include/linux/preempt.h
10225
10226 PRINTK
10227 M:      Petr Mladek <[email protected]>
10228 M:      Sergey Senozhatsky <[email protected]>
10229 R:      Steven Rostedt <[email protected]>
10230 S:      Maintained
10231 F:      kernel/printk/
10232 F:      include/linux/printk.h
10233
10234 PRISM54 WIRELESS DRIVER
10235 M:      "Luis R. Rodriguez" <[email protected]>
10236 L:      [email protected]
10237 W:      http://wireless.kernel.org/en/users/Drivers/p54
10238 S:      Obsolete
10239 F:      drivers/net/wireless/intersil/prism54/
10240
10241 PS3 NETWORK SUPPORT
10242 M:      Geoff Levand <[email protected]>
10243 L:      [email protected]
10244 L:      [email protected]
10245 S:      Maintained
10246 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
10247
10248 PS3 PLATFORM SUPPORT
10249 M:      Geoff Levand <[email protected]>
10250 L:      [email protected]
10251 S:      Maintained
10252 F:      arch/powerpc/boot/ps3*
10253 F:      arch/powerpc/include/asm/lv1call.h
10254 F:      arch/powerpc/include/asm/ps3*.h
10255 F:      arch/powerpc/platforms/ps3/
10256 F:      drivers/*/ps3*
10257 F:      drivers/ps3/
10258 F:      drivers/rtc/rtc-ps3.c
10259 F:      drivers/usb/host/*ps3.c
10260 F:      sound/ppc/snd_ps3*
10261
10262 PS3VRAM DRIVER
10263 M:      Jim Paris <[email protected]>
10264 M:      Geoff Levand <[email protected]>
10265 L:      [email protected]
10266 S:      Maintained
10267 F:      drivers/block/ps3vram.c
10268
10269 PSAMPLE PACKET SAMPLING SUPPORT:
10270 M:      Yotam Gigi <[email protected]>
10271 S:      Maintained
10272 F:      net/psample
10273 F:      include/net/psample.h
10274 F:      include/uapi/linux/psample.h
10275
10276 PSTORE FILESYSTEM
10277 M:      Kees Cook <[email protected]>
10278 M:      Anton Vorontsov <[email protected]>
10279 M:      Colin Cross <[email protected]>
10280 M:      Tony Luck <[email protected]>
10281 S:      Maintained
10282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
10283 F:      fs/pstore/
10284 F:      include/linux/pstore*
10285 F:      drivers/firmware/efi/efi-pstore.c
10286 F:      drivers/acpi/apei/erst.c
10287 F:      Documentation/admin-guide/ramoops.rst
10288 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
10289 K:      \b(pstore|ramoops)
10290
10291 PTP HARDWARE CLOCK SUPPORT
10292 M:      Richard Cochran <[email protected]>
10293 L:      [email protected]
10294 S:      Maintained
10295 W:      http://linuxptp.sourceforge.net/
10296 F:      Documentation/ABI/testing/sysfs-ptp
10297 F:      Documentation/ptp/*
10298 F:      drivers/net/ethernet/freescale/gianfar_ptp.c
10299 F:      drivers/net/phy/dp83640*
10300 F:      drivers/ptp/*
10301 F:      include/linux/ptp_cl*
10302
10303 PTRACE SUPPORT
10304 M:      Roland McGrath <[email protected]>
10305 M:      Oleg Nesterov <[email protected]>
10306 S:      Maintained
10307 F:      include/asm-generic/syscall.h
10308 F:      include/linux/ptrace.h
10309 F:      include/linux/regset.h
10310 F:      include/linux/tracehook.h
10311 F:      include/uapi/linux/ptrace.h
10312 F:      kernel/ptrace.c
10313
10314 PULSE8-CEC DRIVER
10315 M:      Hans Verkuil <[email protected]>
10316 L:      [email protected]
10317 T:      git git://linuxtv.org/media_tree.git
10318 S:      Maintained
10319 F:      drivers/media/usb/pulse8-cec/*
10320
10321 PVRUSB2 VIDEO4LINUX DRIVER
10322 M:      Mike Isely <[email protected]>
10323 L:      [email protected]       (subscribers-only)
10324 L:      [email protected]
10325 W:      http://www.isely.net/pvrusb2/
10326 T:      git git://linuxtv.org/media_tree.git
10327 S:      Maintained
10328 F:      Documentation/media/v4l-drivers/pvrusb2*
10329 F:      drivers/media/usb/pvrusb2/
10330
10331 PWC WEBCAM DRIVER
10332 M:      Hans Verkuil <[email protected]>
10333 L:      [email protected]
10334 T:      git git://linuxtv.org/media_tree.git
10335 S:      Odd Fixes
10336 F:      drivers/media/usb/pwc/*
10337
10338 PWM FAN DRIVER
10339 M:      Kamil Debski <[email protected]>
10340 M:      Bartlomiej Zolnierkiewicz <[email protected]>
10341 L:      [email protected]
10342 S:      Supported
10343 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
10344 F:      Documentation/hwmon/pwm-fan
10345 F:      drivers/hwmon/pwm-fan.c
10346
10347 PWM SUBSYSTEM
10348 M:      Thierry Reding <[email protected]>
10349 L:      [email protected]
10350 S:      Maintained
10351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
10352 F:      Documentation/pwm.txt
10353 F:      Documentation/devicetree/bindings/pwm/
10354 F:      include/linux/pwm.h
10355 F:      drivers/pwm/
10356 F:      drivers/video/backlight/pwm_bl.c
10357 F:      include/linux/pwm_backlight.h
10358 F:      drivers/gpio/gpio-mvebu.c
10359 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
10360
10361 PXA2xx/PXA3xx SUPPORT
10362 M:      Daniel Mack <[email protected]>
10363 M:      Haojian Zhuang <[email protected]>
10364 M:      Robert Jarzmik <[email protected]>
10365 L:      [email protected] (moderated for non-subscribers)
10366 T:      git git://github.com/hzhuang1/linux.git
10367 T:      git git://github.com/rjarzmik/linux.git
10368 S:      Maintained
10369 F:      arch/arm/boot/dts/pxa*
10370 F:      arch/arm/mach-pxa/
10371 F:      drivers/dma/pxa*
10372 F:      drivers/pcmcia/pxa2xx*
10373 F:      drivers/pinctrl/pxa/
10374 F:      drivers/spi/spi-pxa2xx*
10375 F:      drivers/usb/gadget/udc/pxa2*
10376 F:      include/sound/pxa2xx-lib.h
10377 F:      sound/arm/pxa*
10378 F:      sound/soc/pxa/
10379
10380 PXA GPIO DRIVER
10381 M:      Robert Jarzmik <[email protected]>
10382 L:      [email protected]
10383 S:      Maintained
10384 F:      drivers/gpio/gpio-pxa.c
10385
10386 PXA3xx NAND FLASH DRIVER
10387 M:      Ezequiel Garcia <[email protected]>
10388 L:      [email protected]
10389 S:      Maintained
10390 F:      drivers/mtd/nand/pxa3xx_nand.c
10391
10392 MMP SUPPORT
10393 M:      Eric Miao <[email protected]>
10394 M:      Haojian Zhuang <[email protected]>
10395 L:      [email protected] (moderated for non-subscribers)
10396 T:      git git://github.com/hzhuang1/linux.git
10397 T:      git git://git.linaro.org/people/ycmiao/pxa-linux.git
10398 S:      Maintained
10399 F:      arch/arm/boot/dts/mmp*
10400 F:      arch/arm/mach-mmp/
10401
10402 PXA MMCI DRIVER
10403 S:      Orphan
10404
10405 PXA RTC DRIVER
10406 M:      Robert Jarzmik <[email protected]>
10407 L:      [email protected]
10408 S:      Maintained
10409
10410 QAT DRIVER
10411 M:      Giovanni Cabiddu <[email protected]>
10412 M:      Salvatore Benedetto <[email protected]>
10413 L:      [email protected]
10414 S:      Supported
10415 F:      drivers/crypto/qat/
10416
10417 QIB DRIVER
10418 M:      Mike Marciniszyn <[email protected]>
10419 L:      [email protected]
10420 S:      Supported
10421 F:      drivers/infiniband/hw/qib/
10422
10423 QLOGIC QLA1280 SCSI DRIVER
10424 M:      Michael Reed <[email protected]>
10425 L:      [email protected]
10426 S:      Maintained
10427 F:      drivers/scsi/qla1280.[ch]
10428
10429 QLOGIC QLA2XXX FC-SCSI DRIVER
10430 M:      [email protected]
10431 L:      [email protected]
10432 S:      Supported
10433 F:      Documentation/scsi/LICENSE.qla2xxx
10434 F:      drivers/scsi/qla2xxx/
10435
10436 QLOGIC QLA4XXX iSCSI DRIVER
10437 M:      [email protected]
10438 L:      [email protected]
10439 S:      Supported
10440 F:      Documentation/scsi/LICENSE.qla4xxx
10441 F:      drivers/scsi/qla4xxx/
10442
10443 QLOGIC QLA3XXX NETWORK DRIVER
10444 M:      [email protected]
10445 L:      [email protected]
10446 S:      Supported
10447 F:      Documentation/networking/LICENSE.qla3xxx
10448 F:      drivers/net/ethernet/qlogic/qla3xxx.*
10449
10450 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
10451 M:      Harish Patil <[email protected]>
10452 M:      Manish Chopra <[email protected]>
10453 M:      [email protected]
10454 L:      [email protected]
10455 S:      Supported
10456 F:      drivers/net/ethernet/qlogic/qlcnic/
10457
10458 QLOGIC QLGE 10Gb ETHERNET DRIVER
10459 M:      Harish Patil <[email protected]>
10460 M:      Manish Chopra <[email protected]>
10461 M:      [email protected]
10462 L:      [email protected]
10463 S:      Supported
10464 F:      drivers/net/ethernet/qlogic/qlge/
10465
10466 QLOGIC QL4xxx ETHERNET DRIVER
10467 M:      Yuval Mintz <[email protected]>
10468 M:      Ariel Elior <[email protected]>
10469 M:      [email protected]
10470 L:      [email protected]
10471 S:      Supported
10472 F:      drivers/net/ethernet/qlogic/qed/
10473 F:      include/linux/qed/
10474 F:      drivers/net/ethernet/qlogic/qede/
10475
10476 QLOGIC QL41xxx ISCSI DRIVER
10477 M:      [email protected]
10478 L:      [email protected]
10479 S:      Supported
10480 F:      drivers/scsi/qedi/
10481
10482 QLOGIC QL41xxx FCOE DRIVER
10483 M:      [email protected]
10484 L:      [email protected]
10485 S:      Supported
10486 F:      drivers/scsi/qedf/
10487
10488 QNX4 FILESYSTEM
10489 M:      Anders Larsen <[email protected]>
10490 W:      http://www.alarsen.net/linux/qnx4fs/
10491 S:      Maintained
10492 F:      fs/qnx4/
10493 F:      include/uapi/linux/qnx4_fs.h
10494 F:      include/uapi/linux/qnxtypes.h
10495
10496 QORIQ DPAA2 FSL-MC BUS DRIVER
10497 M:      Stuart Yoder <[email protected]>
10498 M:      Laurentiu Tudor <[email protected]>
10499 L:      [email protected]
10500 S:      Maintained
10501 F:      drivers/staging/fsl-mc/
10502
10503 QT1010 MEDIA DRIVER
10504 M:      Antti Palosaari <[email protected]>
10505 L:      [email protected]
10506 W:      https://linuxtv.org
10507 W:      http://palosaari.fi/linux/
10508 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10509 T:      git git://linuxtv.org/anttip/media_tree.git
10510 S:      Maintained
10511 F:      drivers/media/tuners/qt1010*
10512
10513 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
10514 M:      QCA ath9k Development <[email protected]>
10515 L:      [email protected]
10516 W:      http://wireless.kernel.org/en/users/Drivers/ath9k
10517 S:      Supported
10518 F:      drivers/net/wireless/ath/ath9k/
10519
10520 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
10521 M:      Kalle Valo <[email protected]>
10522 L:      [email protected]
10523 W:      http://wireless.kernel.org/en/users/Drivers/ath10k
10524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
10525 S:      Supported
10526 F:      drivers/net/wireless/ath/ath10k/
10527
10528 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
10529 M:      Timur Tabi <[email protected]>
10530 L:      [email protected]
10531 S:      Supported
10532 F:      drivers/net/ethernet/qualcomm/emac/
10533
10534 QUALCOMM HEXAGON ARCHITECTURE
10535 M:      Richard Kuo <[email protected]>
10536 L:      [email protected]
10537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rkuo/linux-hexagon-kernel.git
10538 S:      Supported
10539 F:      arch/hexagon/
10540
10541 QUALCOMM WCN36XX WIRELESS DRIVER
10542 M:      Eugene Krasnikov <[email protected]>
10543 L:      [email protected]
10544 W:      http://wireless.kernel.org/en/users/Drivers/wcn36xx
10545 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
10546 S:      Supported
10547 F:      drivers/net/wireless/ath/wcn36xx/
10548
10549 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
10550 M:      Gabriel Somlo <[email protected]>
10551 M:      "Michael S. Tsirkin" <[email protected]>
10552 L:      [email protected]
10553 S:      Maintained
10554 F:      drivers/firmware/qemu_fw_cfg.c
10555
10556 RADOS BLOCK DEVICE (RBD)
10557 M:      Ilya Dryomov <[email protected]>
10558 M:      Sage Weil <[email protected]>
10559 M:      Alex Elder <[email protected]>
10560 L:      [email protected]
10561 W:      http://ceph.com/
10562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sage/ceph-client.git
10563 T:      git git://github.com/ceph/ceph-client.git
10564 S:      Supported
10565 F:      Documentation/ABI/testing/sysfs-bus-rbd
10566 F:      drivers/block/rbd.c
10567 F:      drivers/block/rbd_types.h
10568
10569 RADEON FRAMEBUFFER DISPLAY DRIVER
10570 M:      Benjamin Herrenschmidt <[email protected]>
10571 L:      [email protected]
10572 S:      Maintained
10573 F:      drivers/video/fbdev/aty/radeon*
10574 F:      include/uapi/linux/radeonfb.h
10575
10576 RADIOSHARK RADIO DRIVER
10577 M:      Hans Verkuil <[email protected]>
10578 L:      [email protected]
10579 T:      git git://linuxtv.org/media_tree.git
10580 S:      Maintained
10581 F:      drivers/media/radio/radio-shark.c
10582
10583 RADIOSHARK2 RADIO DRIVER
10584 M:      Hans Verkuil <[email protected]>
10585 L:      [email protected]
10586 T:      git git://linuxtv.org/media_tree.git
10587 S:      Maintained
10588 F:      drivers/media/radio/radio-shark2.c
10589 F:      drivers/media/radio/radio-tea5777.c
10590
10591 RAGE128 FRAMEBUFFER DISPLAY DRIVER
10592 M:      Paul Mackerras <[email protected]>
10593 L:      [email protected]
10594 S:      Maintained
10595 F:      drivers/video/fbdev/aty/aty128fb.c
10596
10597 RAINSHADOW-CEC DRIVER
10598 M:      Hans Verkuil <[email protected]>
10599 L:      [email protected]
10600 T:      git git://linuxtv.org/media_tree.git
10601 S:      Maintained
10602 F:      drivers/media/usb/rainshadow-cec/*
10603
10604 RALINK MIPS ARCHITECTURE
10605 M:      John Crispin <[email protected]>
10606 L:      [email protected]
10607 S:      Maintained
10608 F:      arch/mips/ralink
10609
10610 RALINK RT2X00 WIRELESS LAN DRIVER
10611 P:      rt2x00 project
10612 M:      Stanislaw Gruszka <[email protected]>
10613 M:      Helmut Schaa <[email protected]>
10614 L:      [email protected]
10615 S:      Maintained
10616 F:      drivers/net/wireless/ralink/rt2x00/
10617
10618 RAMDISK RAM BLOCK DEVICE DRIVER
10619 M:      Jens Axboe <[email protected]>
10620 S:      Maintained
10621 F:      Documentation/blockdev/ramdisk.txt
10622 F:      drivers/block/brd.c
10623
10624 RANDOM NUMBER DRIVER
10625 M:      "Theodore Ts'o" <[email protected]>
10626 S:      Maintained
10627 F:      drivers/char/random.c
10628
10629 RAPIDIO SUBSYSTEM
10630 M:      Matt Porter <[email protected]>
10631 M:      Alexandre Bounine <[email protected]>
10632 S:      Maintained
10633 F:      drivers/rapidio/
10634
10635 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
10636 L:      [email protected]
10637 S:      Orphan
10638 F:      drivers/net/wireless/ray*
10639
10640 RCUTORTURE MODULE
10641 M:      Josh Triplett <[email protected]>
10642 M:      "Paul E. McKenney" <[email protected]>
10643 L:      [email protected]
10644 S:      Supported
10645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10646 F:      Documentation/RCU/torture.txt
10647 F:      kernel/rcu/rcutorture.c
10648
10649 RCUTORTURE TEST FRAMEWORK
10650 M:      "Paul E. McKenney" <[email protected]>
10651 M:      Josh Triplett <[email protected]>
10652 R:      Steven Rostedt <[email protected]>
10653 R:      Mathieu Desnoyers <[email protected]>
10654 R:      Lai Jiangshan <[email protected]>
10655 L:      [email protected]
10656 S:      Supported
10657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10658 F:      tools/testing/selftests/rcutorture
10659
10660 RDC R-321X SoC
10661 M:      Florian Fainelli <[email protected]>
10662 S:      Maintained
10663
10664 RDC R6040 FAST ETHERNET DRIVER
10665 M:      Florian Fainelli <[email protected]>
10666 L:      [email protected]
10667 S:      Maintained
10668 F:      drivers/net/ethernet/rdc/r6040.c
10669
10670 RDS - RELIABLE DATAGRAM SOCKETS
10671 M:      Santosh Shilimkar <[email protected]>
10672 L:      [email protected]
10673 L:      [email protected]
10674 L:      [email protected] (moderated for non-subscribers)
10675 W:      https://oss.oracle.com/projects/rds/
10676 S:      Supported
10677 F:      net/rds/
10678 F:      Documentation/networking/rds.txt
10679
10680 RDMAVT - RDMA verbs software
10681 M:      Dennis Dalessandro <[email protected]>
10682 L:      [email protected]
10683 S:      Supported
10684 F:      drivers/infiniband/sw/rdmavt
10685
10686 RDT - RESOURCE ALLOCATION
10687 M:      Fenghua Yu <[email protected]>
10688 L:      [email protected]
10689 S:      Supported
10690 F:      arch/x86/kernel/cpu/intel_rdt*
10691 F:      arch/x86/include/asm/intel_rdt*
10692 F:      Documentation/x86/intel_rdt*
10693
10694 READ-COPY UPDATE (RCU)
10695 M:      "Paul E. McKenney" <[email protected]>
10696 M:      Josh Triplett <[email protected]>
10697 R:      Steven Rostedt <[email protected]>
10698 R:      Mathieu Desnoyers <[email protected]>
10699 R:      Lai Jiangshan <[email protected]>
10700 L:      [email protected]
10701 W:      http://www.rdrop.com/users/paulmck/RCU/
10702 S:      Supported
10703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
10704 F:      Documentation/RCU/
10705 X:      Documentation/RCU/torture.txt
10706 F:      include/linux/rcu*
10707 X:      include/linux/srcu.h
10708 F:      kernel/rcu/
10709 X:      kernel/torture.c
10710
10711 REAL TIME CLOCK (RTC) SUBSYSTEM
10712 M:      Alessandro Zummo <[email protected]>
10713 M:      Alexandre Belloni <[email protected]>
10714 L:      [email protected]
10715 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
10716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
10717 S:      Maintained
10718 F:      Documentation/devicetree/bindings/rtc/
10719 F:      Documentation/rtc.txt
10720 F:      drivers/rtc/
10721 F:      include/linux/rtc.h
10722 F:      include/uapi/linux/rtc.h
10723 F:      include/linux/rtc/
10724 F:      include/linux/platform_data/rtc-*
10725 F:      tools/testing/selftests/timers/rtctest.c
10726
10727 REALTEK AUDIO CODECS
10728 M:      Bard Liao <[email protected]>
10729 M:      Oder Chiou <[email protected]>
10730 S:      Maintained
10731 F:      sound/soc/codecs/rt*
10732 F:      include/sound/rt*.h
10733
10734 REISERFS FILE SYSTEM
10735 L:      [email protected]
10736 S:      Supported
10737 F:      fs/reiserfs/
10738
10739 REGISTER MAP ABSTRACTION
10740 M:      Mark Brown <[email protected]>
10741 L:      [email protected]
10742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
10743 S:      Supported
10744 F:      Documentation/devicetree/bindings/regmap/
10745 F:      drivers/base/regmap/
10746 F:      include/linux/regmap.h
10747
10748 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
10749 M:      Ohad Ben-Cohen <[email protected]>
10750 M:      Bjorn Andersson <[email protected]>
10751 L:      [email protected]
10752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git
10753 S:      Maintained
10754 F:      Documentation/devicetree/bindings/remoteproc/
10755 F:      Documentation/remoteproc.txt
10756 F:      drivers/remoteproc/
10757 F:      include/linux/remoteproc.h
10758
10759 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
10760 M:      Ohad Ben-Cohen <[email protected]>
10761 M:      Bjorn Andersson <[email protected]>
10762 L:      [email protected]
10763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ohad/rpmsg.git
10764 S:      Maintained
10765 F:      drivers/rpmsg/
10766 F:      Documentation/rpmsg.txt
10767 F:      include/linux/rpmsg.h
10768 F:      include/linux/rpmsg/
10769
10770 RENESAS CLOCK DRIVERS
10771 M:      Geert Uytterhoeven <[email protected]>
10772 L:      [email protected]
10773 S:      Supported
10774 F:      drivers/clk/renesas/
10775
10776 RENESAS ETHERNET DRIVERS
10777 R:      Sergei Shtylyov <[email protected]>
10778 L:      [email protected]
10779 L:      [email protected]
10780 F:      drivers/net/ethernet/renesas/
10781 F:      include/linux/sh_eth.h
10782
10783 RENESAS R-CAR GYROADC DRIVER
10784 M:      Marek Vasut <[email protected]>
10785 L:      [email protected]
10786 S:      Supported
10787 F:      drivers/iio/adc/rcar_gyro_adc.c
10788
10789 RENESAS USB2 PHY DRIVER
10790 M:      Yoshihiro Shimoda <[email protected]>
10791 L:      [email protected]
10792 S:      Maintained
10793 F:      drivers/phy/phy-rcar-gen3-usb2.c
10794
10795 RESET CONTROLLER FRAMEWORK
10796 M:      Philipp Zabel <[email protected]>
10797 T:      git git://git.pengutronix.de/git/pza/linux
10798 S:      Maintained
10799 F:      drivers/reset/
10800 F:      Documentation/devicetree/bindings/reset/
10801 F:      include/dt-bindings/reset/
10802 F:      include/linux/reset.h
10803 F:      include/linux/reset-controller.h
10804
10805 RFKILL
10806 M:      Johannes Berg <[email protected]>
10807 L:      [email protected]
10808 W:      http://wireless.kernel.org/
10809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
10810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
10811 S:      Maintained
10812 F:      Documentation/rfkill.txt
10813 F:      net/rfkill/
10814
10815 RHASHTABLE
10816 M:      Thomas Graf <[email protected]>
10817 M:      Herbert Xu <[email protected]>
10818 L:      [email protected]
10819 S:      Maintained
10820 F:      lib/rhashtable.c
10821 F:      include/linux/rhashtable.h
10822
10823 RICOH SMARTMEDIA/XD DRIVER
10824 M:      Maxim Levitsky <[email protected]>
10825 S:      Maintained
10826 F:      drivers/mtd/nand/r852.c
10827 F:      drivers/mtd/nand/r852.h
10828
10829 RICOH R5C592 MEMORYSTICK DRIVER
10830 M:      Maxim Levitsky <[email protected]>
10831 S:      Maintained
10832 F:      drivers/memstick/host/r592.*
10833
10834 ROCCAT DRIVERS
10835 M:      Stefan Achatz <[email protected]>
10836 W:      http://sourceforge.net/projects/roccat/
10837 S:      Maintained
10838 F:      drivers/hid/hid-roccat*
10839 F:      include/linux/hid-roccat*
10840 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
10841
10842 ROCKER DRIVER
10843 M:      Jiri Pirko <[email protected]>
10844 L:      [email protected]
10845 S:      Supported
10846 F:      drivers/net/ethernet/rocker/
10847
10848 ROCKETPORT DRIVER
10849 P:      Comtrol Corp.
10850 W:      http://www.comtrol.com
10851 S:      Maintained
10852 F:      Documentation/serial/rocket.txt
10853 F:      drivers/tty/rocket*
10854
10855 ROCKETPORT EXPRESS/INFINITY DRIVER
10856 M:      Kevin Cernekee <[email protected]>
10857 L:      [email protected]
10858 S:      Odd Fixes
10859 F:      drivers/tty/serial/rp2.*
10860
10861 ROSE NETWORK LAYER
10862 M:      Ralf Baechle <[email protected]>
10863 L:      [email protected]
10864 W:      http://www.linux-ax25.org/
10865 S:      Maintained
10866 F:      include/net/rose.h
10867 F:      include/uapi/linux/rose.h
10868 F:      net/rose/
10869
10870 RTL2830 MEDIA DRIVER
10871 M:      Antti Palosaari <[email protected]>
10872 L:      [email protected]
10873 W:      https://linuxtv.org
10874 W:      http://palosaari.fi/linux/
10875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10876 T:      git git://linuxtv.org/anttip/media_tree.git
10877 S:      Maintained
10878 F:      drivers/media/dvb-frontends/rtl2830*
10879
10880 RTL2832 MEDIA DRIVER
10881 M:      Antti Palosaari <[email protected]>
10882 L:      [email protected]
10883 W:      https://linuxtv.org
10884 W:      http://palosaari.fi/linux/
10885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10886 T:      git git://linuxtv.org/anttip/media_tree.git
10887 S:      Maintained
10888 F:      drivers/media/dvb-frontends/rtl2832*
10889
10890 RTL2832_SDR MEDIA DRIVER
10891 M:      Antti Palosaari <[email protected]>
10892 L:      [email protected]
10893 W:      https://linuxtv.org
10894 W:      http://palosaari.fi/linux/
10895 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10896 T:      git git://linuxtv.org/anttip/media_tree.git
10897 S:      Maintained
10898 F:      drivers/media/dvb-frontends/rtl2832_sdr*
10899
10900 RTL8180 WIRELESS DRIVER
10901 L:      [email protected]
10902 W:      http://wireless.kernel.org/
10903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
10904 S:      Orphan
10905 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
10906
10907 RTL8187 WIRELESS DRIVER
10908 M:      Herton Ronaldo Krzesinski <[email protected]>
10909 M:      Hin-Tak Leung <[email protected]>
10910 M:      Larry Finger <[email protected]>
10911 L:      [email protected]
10912 W:      http://wireless.kernel.org/
10913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
10914 S:      Maintained
10915 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
10916
10917 RTL8192CE WIRELESS DRIVER
10918 M:      Larry Finger <[email protected]>
10919 M:      Chaoming Li <[email protected]>
10920 L:      [email protected]
10921 W:      http://wireless.kernel.org/
10922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
10923 S:      Maintained
10924 F:      drivers/net/wireless/realtek/rtlwifi/
10925 F:      drivers/net/wireless/realtek/rtlwifi/rtl8192ce/
10926
10927 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
10928 M:      Jes Sorensen <[email protected]>
10929 L:      [email protected]
10930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
10931 S:      Maintained
10932 F:      drivers/net/wireless/realtek/rtl8xxxu/
10933
10934 S3 SAVAGE FRAMEBUFFER DRIVER
10935 M:      Antonino Daplas <[email protected]>
10936 L:      [email protected]
10937 S:      Maintained
10938 F:      drivers/video/fbdev/savage/
10939
10940 S390
10941 M:      Martin Schwidefsky <[email protected]>
10942 M:      Heiko Carstens <[email protected]>
10943 L:      [email protected]
10944 W:      http://www.ibm.com/developerworks/linux/linux390/
10945 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
10946 S:      Supported
10947 F:      arch/s390/
10948 F:      drivers/s390/
10949 F:      Documentation/s390/
10950 F:      Documentation/DocBook/s390*
10951
10952 S390 COMMON I/O LAYER
10953 M:      Sebastian Ott <[email protected]>
10954 M:      Peter Oberparleiter <[email protected]>
10955 L:      [email protected]
10956 W:      http://www.ibm.com/developerworks/linux/linux390/
10957 S:      Supported
10958 F:      drivers/s390/cio/
10959
10960 S390 DASD DRIVER
10961 M:      Stefan Haberland <[email protected]>
10962 M:      Jan Hoeppner <[email protected]>
10963 L:      [email protected]
10964 W:      http://www.ibm.com/developerworks/linux/linux390/
10965 S:      Supported
10966 F:      drivers/s390/block/dasd*
10967 F:      block/partitions/ibm.c
10968
10969 S390 NETWORK DRIVERS
10970 M:      Julian Wiedmann <[email protected]>
10971 M:      Ursula Braun <[email protected]>
10972 L:      [email protected]
10973 W:      http://www.ibm.com/developerworks/linux/linux390/
10974 S:      Supported
10975 F:      drivers/s390/net/
10976
10977 S390 PCI SUBSYSTEM
10978 M:      Sebastian Ott <[email protected]>
10979 M:      Gerald Schaefer <[email protected]>
10980 L:      [email protected]
10981 W:      http://www.ibm.com/developerworks/linux/linux390/
10982 S:      Supported
10983 F:      arch/s390/pci/
10984 F:      drivers/pci/hotplug/s390_pci_hpc.c
10985
10986 S390 ZCRYPT DRIVER
10987 M:      Harald Freudenberger <[email protected]>
10988 L:      [email protected]
10989 W:      http://www.ibm.com/developerworks/linux/linux390/
10990 S:      Supported
10991 F:      drivers/s390/crypto/
10992
10993 S390 ZFCP DRIVER
10994 M:      Steffen Maier <[email protected]>
10995 L:      [email protected]
10996 W:      http://www.ibm.com/developerworks/linux/linux390/
10997 S:      Supported
10998 F:      drivers/s390/scsi/zfcp_*
10999
11000 S390 IUCV NETWORK LAYER
11001 M:      Julian Wiedmann <[email protected]>
11002 M:      Ursula Braun <[email protected]>
11003 L:      [email protected]
11004 W:      http://www.ibm.com/developerworks/linux/linux390/
11005 S:      Supported
11006 F:      drivers/s390/net/*iucv*
11007 F:      include/net/iucv/
11008 F:      net/iucv/
11009
11010 S390 IOMMU (PCI)
11011 M:      Gerald Schaefer <[email protected]>
11012 L:      [email protected]
11013 W:      http://www.ibm.com/developerworks/linux/linux390/
11014 S:      Supported
11015 F:      drivers/iommu/s390-iommu.c
11016
11017 S390 VFIO-CCW DRIVER
11018 M:      Cornelia Huck <[email protected]>
11019 M:      Dong Jia Shi <[email protected]>
11020 L:      [email protected]
11021 L:      [email protected]
11022 S:      Supported
11023 F:      drivers/s390/cio/vfio_ccw*
11024 F:      Documentation/s390/vfio-ccw.txt
11025 F:      include/uapi/linux/vfio_ccw.h
11026
11027 S3C24XX SD/MMC Driver
11028 M:      Ben Dooks <[email protected]>
11029 L:      [email protected] (moderated for non-subscribers)
11030 S:      Supported
11031 F:      drivers/mmc/host/s3cmci.*
11032
11033 SAA6588 RDS RECEIVER DRIVER
11034 M:      Hans Verkuil <[email protected]>
11035 L:      [email protected]
11036 T:      git git://linuxtv.org/media_tree.git
11037 W:      https://linuxtv.org
11038 S:      Odd Fixes
11039 F:      drivers/media/i2c/saa6588*
11040
11041 SAA7134 VIDEO4LINUX DRIVER
11042 M:      Mauro Carvalho Chehab <[email protected]>
11043 M:      Mauro Carvalho Chehab <[email protected]>
11044 L:      [email protected]
11045 W:      https://linuxtv.org
11046 T:      git git://linuxtv.org/media_tree.git
11047 S:      Odd fixes
11048 F:      Documentation/media/v4l-drivers/saa7134*
11049 F:      drivers/media/pci/saa7134/
11050
11051 SAA7146 VIDEO4LINUX-2 DRIVER
11052 M:      Hans Verkuil <[email protected]>
11053 L:      [email protected]
11054 T:      git git://linuxtv.org/media_tree.git
11055 S:      Maintained
11056 F:      drivers/media/common/saa7146/
11057 F:      drivers/media/pci/saa7146/
11058 F:      include/media/saa7146*
11059
11060 SAMSUNG LAPTOP DRIVER
11061 M:      Corentin Chary <[email protected]>
11062 L:      [email protected]
11063 S:      Maintained
11064 F:      drivers/platform/x86/samsung-laptop.c
11065
11066 SAMSUNG AUDIO (ASoC) DRIVERS
11067 M:      Krzysztof Kozlowski <[email protected]>
11068 M:      Sangbeom Kim <[email protected]>
11069 M:      Sylwester Nawrocki <[email protected]>
11070 L:      [email protected] (moderated for non-subscribers)
11071 S:      Supported
11072 F:      sound/soc/samsung/
11073
11074 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
11075 M:      Krzysztof Kozlowski <[email protected]>
11076 L:      [email protected]
11077 L:      [email protected]
11078 S:      Maintained
11079 F:      drivers/crypto/exynos-rng.c
11080 F:      Documentation/devicetree/bindings/rng/samsung,exynos-rng4.txt
11081
11082 SAMSUNG FRAMEBUFFER DRIVER
11083 M:      Jingoo Han <[email protected]>
11084 L:      [email protected]
11085 S:      Maintained
11086 F:      drivers/video/fbdev/s3c-fb.c
11087
11088 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
11089 M:      Sangbeom Kim <[email protected]>
11090 M:      Krzysztof Kozlowski <[email protected]>
11091 M:      Bartlomiej Zolnierkiewicz <[email protected]>
11092 L:      [email protected]
11093 L:      [email protected]
11094 S:      Supported
11095 F:      drivers/mfd/sec*.c
11096 F:      drivers/regulator/s2m*.c
11097 F:      drivers/regulator/s5m*.c
11098 F:      drivers/clk/clk-s2mps11.c
11099 F:      drivers/rtc/rtc-s5m.c
11100 F:      include/linux/mfd/samsung/
11101 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
11102 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
11103 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
11104 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
11105
11106 SAMSUNG S5P Security SubSystem (SSS) DRIVER
11107 M:      Krzysztof Kozlowski <[email protected]>
11108 M:      Vladimir Zapolskiy <[email protected]>
11109 L:      [email protected]
11110 L:      [email protected]
11111 S:      Maintained
11112 F:      drivers/crypto/s5p-sss.c
11113
11114 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
11115 M:      Kyungmin Park <[email protected]>
11116 M:      Sylwester Nawrocki <[email protected]>
11117 L:      [email protected]
11118 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
11119 S:      Supported
11120 F:      drivers/media/platform/exynos4-is/
11121
11122 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
11123 M:      Sylwester Nawrocki <[email protected]>
11124 L:      [email protected]
11125 L:      [email protected] (moderated for non-subscribers)
11126 S:      Maintained
11127 F:      drivers/media/platform/s3c-camif/
11128 F:      include/media/drv-intf/s3c_camif.h
11129
11130 SAMSUNG S5C73M3 CAMERA DRIVER
11131 M:      Kyungmin Park <[email protected]>
11132 M:      Andrzej Hajda <[email protected]>
11133 L:      [email protected]
11134 S:      Supported
11135 F:      drivers/media/i2c/s5c73m3/*
11136
11137 SAMSUNG S5K5BAF CAMERA DRIVER
11138 M:      Kyungmin Park <[email protected]>
11139 M:      Andrzej Hajda <[email protected]>
11140 L:      [email protected]
11141 S:      Supported
11142 F:      drivers/media/i2c/s5k5baf.c
11143
11144 SAMSUNG S3FWRN5 NFC DRIVER
11145 M:      Robert Baldyga <[email protected]>
11146 M:      Krzysztof Opasiak <[email protected]>
11147 L:      [email protected] (moderated for non-subscribers)
11148 S:      Supported
11149 F:      drivers/nfc/s3fwrn5
11150
11151 SAMSUNG SOC CLOCK DRIVERS
11152 M:      Sylwester Nawrocki <[email protected]>
11153 M:      Tomasz Figa <[email protected]>
11154 M:      Chanwoo Choi <[email protected]>
11155 S:      Supported
11156 L:      [email protected] (moderated for non-subscribers)
11157 F:      drivers/clk/samsung/
11158 F:      include/dt-bindings/clock/exynos*.h
11159 F:      Documentation/devicetree/bindings/clock/exynos*.txt
11160
11161 SAMSUNG SPI DRIVERS
11162 M:      Kukjin Kim <[email protected]>
11163 M:      Krzysztof Kozlowski <[email protected]>
11164 M:      Andi Shyti <[email protected]>
11165 L:      [email protected]
11166 L:      [email protected] (moderated for non-subscribers)
11167 S:      Maintained
11168 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
11169 F:      drivers/spi/spi-s3c*
11170 F:      include/linux/platform_data/spi-s3c64xx.h
11171
11172 SAMSUNG SXGBE DRIVERS
11173 M:      Byungho An <[email protected]>
11174 M:      Girish K S <[email protected]>
11175 M:      Vipul Pandya <[email protected]>
11176 S:      Supported
11177 L:      [email protected]
11178 F:      drivers/net/ethernet/samsung/sxgbe/
11179
11180 SAMSUNG THERMAL DRIVER
11181 M:      Bartlomiej Zolnierkiewicz <[email protected]>
11182 L:      [email protected]
11183 L:      [email protected]
11184 S:      Supported
11185 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
11186 F:      drivers/thermal/samsung/
11187
11188 SAMSUNG USB2 PHY DRIVER
11189 M:      Kamil Debski <[email protected]>
11190 M:      Sylwester Nawrocki <[email protected]>
11191 L:      [email protected]
11192 S:      Supported
11193 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
11194 F:      Documentation/phy/samsung-usb2.txt
11195 F:      drivers/phy/phy-exynos4210-usb2.c
11196 F:      drivers/phy/phy-exynos4x12-usb2.c
11197 F:      drivers/phy/phy-exynos5250-usb2.c
11198 F:      drivers/phy/phy-s5pv210-usb2.c
11199 F:      drivers/phy/phy-samsung-usb2.c
11200 F:      drivers/phy/phy-samsung-usb2.h
11201
11202 SERIAL DRIVERS
11203 M:      Greg Kroah-Hartman <[email protected]>
11204 L:      [email protected]
11205 S:      Maintained
11206 F:      Documentation/devicetree/bindings/serial/
11207 F:      drivers/tty/serial/
11208
11209 SERIAL DEVICE BUS
11210 M:      Rob Herring <[email protected]>
11211 L:      [email protected]
11212 S:      Maintained
11213 F:      Documentation/devicetree/bindings/serial/slave-device.txt
11214 F:      drivers/tty/serdev/
11215 F:      include/linux/serdev.h
11216
11217 SERIAL IR RECEIVER
11218 M:      Sean Young <[email protected]>
11219 L:      [email protected]
11220 S:      Maintained
11221 F:      drivers/media/rc/serial_ir.c
11222
11223 STI CEC DRIVER
11224 M:      Benjamin Gaignard <[email protected]>
11225 L:      [email protected]
11226 S:      Maintained
11227 F:      drivers/staging/media/st-cec/
11228 F:      Documentation/devicetree/bindings/media/stih-cec.txt
11229
11230 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
11231 M:      Ursula Braun <[email protected]>
11232 L:      [email protected]
11233 W:      http://www.ibm.com/developerworks/linux/linux390/
11234 S:      Supported
11235 F:      net/smc/
11236
11237 SYNOPSYS DESIGNWARE DMAC DRIVER
11238 M:      Viresh Kumar <[email protected]>
11239 M:      Andy Shevchenko <[email protected]>
11240 S:      Maintained
11241 F:      include/linux/dma/dw.h
11242 F:      include/linux/platform_data/dma-dw.h
11243 F:      drivers/dma/dw/
11244
11245 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
11246 M:      Jie Deng <[email protected]>
11247 L:      [email protected]
11248 S:      Supported
11249 F:      drivers/net/ethernet/synopsys/
11250
11251 SYNOPSYS DESIGNWARE I2C DRIVER
11252 M:      Jarkko Nikula <[email protected]>
11253 R:      Andy Shevchenko <[email protected]>
11254 R:      Mika Westerberg <[email protected]>
11255 L:      [email protected]
11256 S:      Maintained
11257 F:      drivers/i2c/busses/i2c-designware-*
11258 F:      include/linux/platform_data/i2c-designware.h
11259
11260 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
11261 M:      Jaehoon Chung <[email protected]>
11262 L:      [email protected]
11263 S:      Maintained
11264 F:      drivers/mmc/host/dw_mmc*
11265
11266 SYSTEM TRACE MODULE CLASS
11267 M:      Alexander Shishkin <[email protected]>
11268 S:      Maintained
11269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
11270 F:      Documentation/trace/stm.txt
11271 F:      drivers/hwtracing/stm/
11272 F:      include/linux/stm.h
11273 F:      include/uapi/linux/stm.h
11274
11275 THUNDERBOLT DRIVER
11276 M:      Andreas Noever <[email protected]>
11277 S:      Maintained
11278 F:      drivers/thunderbolt/
11279
11280 TI BQ27XXX POWER SUPPLY DRIVER
11281 R:      Andrew F. Davis <[email protected]>
11282 F:      include/linux/power/bq27xxx_battery.h
11283 F:      drivers/power/supply/bq27xxx_battery.c
11284 F:      drivers/power/supply/bq27xxx_battery_i2c.c
11285
11286 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
11287 M:      John Stultz <[email protected]>
11288 M:      Thomas Gleixner <[email protected]>
11289 R:      Stephen Boyd <[email protected]>
11290 L:      [email protected]
11291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
11292 S:      Supported
11293 F:      include/linux/clocksource.h
11294 F:      include/linux/time.h
11295 F:      include/linux/timex.h
11296 F:      include/uapi/linux/time.h
11297 F:      include/uapi/linux/timex.h
11298 F:      kernel/time/clocksource.c
11299 F:      kernel/time/time*.c
11300 F:      kernel/time/alarmtimer.c
11301 F:      kernel/time/ntp.c
11302 F:      tools/testing/selftests/timers/
11303
11304 SC1200 WDT DRIVER
11305 M:      Zwane Mwaikambo <[email protected]>
11306 S:      Maintained
11307 F:      drivers/watchdog/sc1200wdt.c
11308
11309 SCHEDULER
11310 M:      Ingo Molnar <[email protected]>
11311 M:      Peter Zijlstra <[email protected]>
11312 L:      [email protected]
11313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
11314 S:      Maintained
11315 F:      kernel/sched/
11316 F:      include/linux/sched.h
11317 F:      include/uapi/linux/sched.h
11318 F:      include/linux/wait.h
11319
11320 SCORE ARCHITECTURE
11321 M:      Chen Liqin <[email protected]>
11322 M:      Lennox Wu <[email protected]>
11323 W:      http://www.sunplus.com
11324 S:      Supported
11325 F:      arch/score/
11326
11327 SCR24X CHIP CARD INTERFACE DRIVER
11328 M:      Lubomir Rintel <[email protected]>
11329 S:      Supported
11330 F:      drivers/char/pcmcia/scr24x_cs.c
11331
11332 SYSTEM CONTROL & POWER INTERFACE (SCPI) Message Protocol drivers
11333 M:      Sudeep Holla <[email protected]>
11334 L:      [email protected]
11335 S:      Maintained
11336 F:      Documentation/devicetree/bindings/arm/arm,scpi.txt
11337 F:      drivers/clk/clk-scpi.c
11338 F:      drivers/cpufreq/scpi-cpufreq.c
11339 F:      drivers/firmware/arm_scpi.c
11340 F:      include/linux/scpi_protocol.h
11341
11342 SCSI CDROM DRIVER
11343 M:      Jens Axboe <[email protected]>
11344 L:      [email protected]
11345 W:      http://www.kernel.dk
11346 S:      Maintained
11347 F:      drivers/scsi/sr*
11348
11349 SCSI RDMA PROTOCOL (SRP) INITIATOR
11350 M:      Bart Van Assche <[email protected]>
11351 L:      [email protected]
11352 S:      Supported
11353 W:      http://www.openfabrics.org
11354 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
11355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dad/srp-initiator.git
11356 F:      drivers/infiniband/ulp/srp/
11357 F:      include/scsi/srp.h
11358
11359 SCSI SG DRIVER
11360 M:      Doug Gilbert <[email protected]>
11361 L:      [email protected]
11362 W:      http://sg.danny.cz/sg
11363 S:      Maintained
11364 F:      Documentation/scsi/scsi-generic.txt
11365 F:      drivers/scsi/sg.c
11366 F:      include/scsi/sg.h
11367
11368 SCSI SUBSYSTEM
11369 M:      "James E.J. Bottomley" <[email protected]>
11370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
11371 M:      "Martin K. Petersen" <[email protected]>
11372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
11373 L:      [email protected]
11374 S:      Maintained
11375 F:      Documentation/devicetree/bindings/scsi/
11376 F:      drivers/scsi/
11377 F:      include/scsi/
11378
11379 SCSI TAPE DRIVER
11380 M:      Kai Mäkisara <[email protected]>
11381 L:      [email protected]
11382 S:      Maintained
11383 F:      Documentation/scsi/st.txt
11384 F:      drivers/scsi/st.*
11385 F:      drivers/scsi/st_*.h
11386
11387 SCTP PROTOCOL
11388 M:      Vlad Yasevich <[email protected]>
11389 M:      Neil Horman <[email protected]>
11390 L:      [email protected]
11391 W:      http://lksctp.sourceforge.net
11392 S:      Maintained
11393 F:      Documentation/networking/sctp.txt
11394 F:      include/linux/sctp.h
11395 F:      include/uapi/linux/sctp.h
11396 F:      include/net/sctp/
11397 F:      net/sctp/
11398
11399 SCx200 CPU SUPPORT
11400 M:      Jim Cromie <[email protected]>
11401 S:      Odd Fixes
11402 F:      Documentation/i2c/busses/scx200_acb
11403 F:      arch/x86/platform/scx200/
11404 F:      drivers/watchdog/scx200_wdt.c
11405 F:      drivers/i2c/busses/scx200*
11406 F:      drivers/mtd/maps/scx200_docflash.c
11407 F:      include/linux/scx200.h
11408
11409 SCx200 GPIO DRIVER
11410 M:      Jim Cromie <[email protected]>
11411 S:      Maintained
11412 F:      drivers/char/scx200_gpio.c
11413 F:      include/linux/scx200_gpio.h
11414
11415 SCx200 HRT CLOCKSOURCE DRIVER
11416 M:      Jim Cromie <[email protected]>
11417 S:      Maintained
11418 F:      drivers/clocksource/scx200_hrt.c
11419
11420 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
11421 M:      Sascha Sommer <[email protected]>
11422 L:      [email protected] (subscribers-only)
11423 S:      Maintained
11424 F:      drivers/mmc/host/sdricoh_cs.c
11425
11426 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
11427 M:      Adrian Hunter <[email protected]>
11428 L:      [email protected]
11429 T:      git git://git.infradead.org/users/ahunter/linux-sdhci.git
11430 S:      Maintained
11431 F:      drivers/mmc/host/sdhci*
11432 F:      include/linux/mmc/sdhci*
11433
11434 SECURE COMPUTING
11435 M:      Kees Cook <[email protected]>
11436 R:      Andy Lutomirski <[email protected]>
11437 R:      Will Drewry <[email protected]>
11438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
11439 S:      Supported
11440 F:      kernel/seccomp.c
11441 F:      include/uapi/linux/seccomp.h
11442 F:      include/linux/seccomp.h
11443 F:      tools/testing/selftests/seccomp/*
11444 K:      \bsecure_computing
11445 K:      \bTIF_SECCOMP\b
11446
11447 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
11448 M:      Al Cooper <[email protected]>
11449 L:      [email protected]
11450 L:      [email protected]
11451 S:      Maintained
11452 F:      drivers/mmc/host/sdhci-brcmstb*
11453
11454 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
11455 M:      Ben Dooks <[email protected]>
11456 M:      Jaehoon Chung <[email protected]>
11457 L:      [email protected]
11458 S:      Maintained
11459 F:      drivers/mmc/host/sdhci-s3c*
11460
11461 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
11462 M:      Viresh Kumar <[email protected]>
11463 L:      [email protected]
11464 S:      Maintained
11465 F:      drivers/mmc/host/sdhci-spear.c
11466
11467 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
11468 M:      Scott Bauer <[email protected]>
11469 M:      Jonathan Derrick <[email protected]>
11470 M:      Rafael Antognolli <[email protected]>
11471 L:      [email protected]
11472 S:      Supported
11473 F:      block/sed*
11474 F:      block/opal_proto.h
11475 F:      include/linux/sed*
11476 F:      include/uapi/linux/sed*
11477
11478 SECURITY SUBSYSTEM
11479 M:      James Morris <[email protected]>
11480 M:      "Serge E. Hallyn" <[email protected]>
11481 L:      [email protected] (suggested Cc:)
11482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
11483 W:      http://kernsec.org/
11484 S:      Supported
11485 F:      security/
11486
11487 SECURITY CONTACT
11488 M:      Security Officers <[email protected]>
11489 S:      Supported
11490
11491 SELINUX SECURITY MODULE
11492 M:      Paul Moore <[email protected]>
11493 M:      Stephen Smalley <[email protected]>
11494 M:      Eric Paris <[email protected]>
11495 L:      [email protected] (moderated for non-subscribers)
11496 W:      http://selinuxproject.org
11497 T:      git git://git.infradead.org/users/pcmoore/selinux
11498 S:      Supported
11499 F:      include/linux/selinux*
11500 F:      security/selinux/
11501 F:      scripts/selinux/
11502
11503 APPARMOR SECURITY MODULE
11504 M:      John Johansen <[email protected]>
11505 L:      [email protected] (subscribers-only, general discussion)
11506 W:      apparmor.wiki.kernel.org
11507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/apparmor-dev.git
11508 S:      Supported
11509 F:      security/apparmor/
11510
11511 LOADPIN SECURITY MODULE
11512 M:      Kees Cook <[email protected]>
11513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11514 S:      Supported
11515 F:      security/loadpin/
11516
11517 YAMA SECURITY MODULE
11518 M:      Kees Cook <[email protected]>
11519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
11520 S:      Supported
11521 F:      security/yama/
11522
11523 SENSABLE PHANTOM
11524 M:      Jiri Slaby <[email protected]>
11525 S:      Maintained
11526 F:      drivers/misc/phantom.c
11527 F:      include/uapi/linux/phantom.h
11528
11529 Emulex 10Gbps iSCSI - OneConnect DRIVER
11530 M:      Subbu Seetharaman <[email protected]>
11531 M:      Ketan Mukadam <[email protected]>
11532 M:      Jitendra Bhivare <[email protected]>
11533 L:      [email protected]
11534 W:      http://www.broadcom.com
11535 S:      Supported
11536 F:      drivers/scsi/be2iscsi/
11537
11538 Emulex 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
11539 M:      Sathya Perla <[email protected]>
11540 M:      Ajit Khaparde <[email protected]>
11541 M:      Sriharsha Basavapatna <[email protected]>
11542 M:      Somnath Kotur <[email protected]>
11543 L:      [email protected]
11544 W:      http://www.emulex.com
11545 S:      Supported
11546 F:      drivers/net/ethernet/emulex/benet/
11547
11548 EMULEX ONECONNECT ROCE DRIVER
11549 M:      Selvin Xavier <[email protected]>
11550 M:      Devesh Sharma <[email protected]>
11551 L:      [email protected]
11552 W:      http://www.broadcom.com
11553 S:      Odd Fixes
11554 F:      drivers/infiniband/hw/ocrdma/
11555 F:      include/uapi/rdma/ocrdma-abi.h
11556
11557 SFC NETWORK DRIVER
11558 M:      Solarflare linux maintainers <[email protected]>
11559 M:      Edward Cree <[email protected]>
11560 M:      Bert Kenward <[email protected]>
11561 L:      [email protected]
11562 S:      Supported
11563 F:      drivers/net/ethernet/sfc/
11564
11565 SGI GRU DRIVER
11566 M:      Dimitri Sivanich <[email protected]>
11567 S:      Maintained
11568 F:      drivers/misc/sgi-gru/
11569
11570 SGI SN-IA64 (Altix) SERIAL CONSOLE DRIVER
11571 M:      Pat Gefre <[email protected]>
11572 L:      [email protected]
11573 S:      Supported
11574 F:      Documentation/ia64/serial.txt
11575 F:      drivers/tty/serial/ioc?_serial.c
11576 F:      include/linux/ioc?.h
11577
11578 SGI XP/XPC/XPNET DRIVER
11579 M:      Cliff Whickman <[email protected]>
11580 M:      Robin Holt <[email protected]>
11581 S:      Maintained
11582 F:      drivers/misc/sgi-xp/
11583
11584 SI2157 MEDIA DRIVER
11585 M:      Antti Palosaari <[email protected]>
11586 L:      [email protected]
11587 W:      https://linuxtv.org
11588 W:      http://palosaari.fi/linux/
11589 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11590 T:      git git://linuxtv.org/anttip/media_tree.git
11591 S:      Maintained
11592 F:      drivers/media/tuners/si2157*
11593
11594 SI2168 MEDIA DRIVER
11595 M:      Antti Palosaari <[email protected]>
11596 L:      [email protected]
11597 W:      https://linuxtv.org
11598 W:      http://palosaari.fi/linux/
11599 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11600 T:      git git://linuxtv.org/anttip/media_tree.git
11601 S:      Maintained
11602 F:      drivers/media/dvb-frontends/si2168*
11603
11604 SI470X FM RADIO RECEIVER I2C DRIVER
11605 M:      Hans Verkuil <[email protected]>
11606 L:      [email protected]
11607 T:      git git://linuxtv.org/media_tree.git
11608 W:      https://linuxtv.org
11609 S:      Odd Fixes
11610 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
11611
11612 SI470X FM RADIO RECEIVER USB DRIVER
11613 M:      Hans Verkuil <[email protected]>
11614 L:      [email protected]
11615 T:      git git://linuxtv.org/media_tree.git
11616 W:      https://linuxtv.org
11617 S:      Maintained
11618 F:      drivers/media/radio/si470x/radio-si470x-common.c
11619 F:      drivers/media/radio/si470x/radio-si470x.h
11620 F:      drivers/media/radio/si470x/radio-si470x-usb.c
11621
11622 SI4713 FM RADIO TRANSMITTER I2C DRIVER
11623 M:      Eduardo Valentin <[email protected]>
11624 L:      [email protected]
11625 T:      git git://linuxtv.org/media_tree.git
11626 W:      https://linuxtv.org
11627 S:      Odd Fixes
11628 F:      drivers/media/radio/si4713/si4713.?
11629
11630 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
11631 M:      Eduardo Valentin <[email protected]>
11632 L:      [email protected]
11633 T:      git git://linuxtv.org/media_tree.git
11634 W:      https://linuxtv.org
11635 S:      Odd Fixes
11636 F:      drivers/media/radio/si4713/radio-platform-si4713.c
11637
11638 SI4713 FM RADIO TRANSMITTER USB DRIVER
11639 M:      Hans Verkuil <[email protected]>
11640 L:      [email protected]
11641 T:      git git://linuxtv.org/media_tree.git
11642 W:      https://linuxtv.org
11643 S:      Maintained
11644 F:      drivers/media/radio/si4713/radio-usb-si4713.c
11645
11646 SIANO DVB DRIVER
11647 M:      Mauro Carvalho Chehab <[email protected]>
11648 M:      Mauro Carvalho Chehab <[email protected]>
11649 L:      [email protected]
11650 W:      https://linuxtv.org
11651 T:      git git://linuxtv.org/media_tree.git
11652 S:      Odd fixes
11653 F:      drivers/media/common/siano/
11654 F:      drivers/media/usb/siano/
11655 F:      drivers/media/usb/siano/
11656 F:      drivers/media/mmc/siano/
11657
11658 SILEAD TOUCHSCREEN DRIVER
11659 M:      Hans de Goede <[email protected]>
11660 L:      [email protected]
11661 L:      [email protected]
11662 S:      Maintained
11663 F:      drivers/input/touchscreen/silead.c
11664 F:      drivers/platform/x86/silead_dmi.c
11665
11666 SIMPLEFB FB DRIVER
11667 M:      Hans de Goede <[email protected]>
11668 L:      [email protected]
11669 S:      Maintained
11670 F:      Documentation/devicetree/bindings/display/simple-framebuffer.txt
11671 F:      drivers/video/fbdev/simplefb.c
11672 F:      include/linux/platform_data/simplefb.h
11673
11674 SH_VEU V4L2 MEM2MEM DRIVER
11675 L:      [email protected]
11676 S:      Orphan
11677 F:      drivers/media/platform/sh_veu.c
11678
11679 SH_VOU V4L2 OUTPUT DRIVER
11680 L:      [email protected]
11681 S:      Orphan
11682 F:      drivers/media/platform/sh_vou.c
11683 F:      include/media/drv-intf/sh_vou.h
11684
11685 SIMPLE FIRMWARE INTERFACE (SFI)
11686 M:      Len Brown <[email protected]>
11687 L:      [email protected]
11688 W:      http://simplefirmware.org/
11689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-sfi-2.6.git
11690 S:      Supported
11691 F:      arch/x86/platform/sfi/
11692 F:      drivers/sfi/
11693 F:      include/linux/sfi*.h
11694
11695 SIMTEC EB110ATX (Chalice CATS)
11696 P:      Ben Dooks
11697 P:      Vincent Sanders <[email protected]>
11698 M:      Simtec Linux Team <[email protected]>
11699 W:      http://www.simtec.co.uk/products/EB110ATX/
11700 S:      Supported
11701
11702 SIMTEC EB2410ITX (BAST)
11703 P:      Ben Dooks
11704 P:      Vincent Sanders <[email protected]>
11705 M:      Simtec Linux Team <[email protected]>
11706 W:      http://www.simtec.co.uk/products/EB2410ITX/
11707 S:      Supported
11708 F:      arch/arm/mach-s3c24xx/mach-bast.c
11709 F:      arch/arm/mach-s3c24xx/bast-ide.c
11710 F:      arch/arm/mach-s3c24xx/bast-irq.c
11711
11712 SIPHASH PRF ROUTINES
11713 M:      Jason A. Donenfeld <[email protected]>
11714 S:      Maintained
11715 F:      lib/siphash.c
11716 F:      lib/test_siphash.c
11717 F:      include/linux/siphash.h
11718
11719 TI DAVINCI MACHINE SUPPORT
11720 M:      Sekhar Nori <[email protected]>
11721 M:      Kevin Hilman <[email protected]>
11722 L:      [email protected] (moderated for non-subscribers)
11723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
11724 S:      Supported
11725 F:      arch/arm/mach-davinci/
11726 F:      drivers/i2c/busses/i2c-davinci.c
11727
11728 TI DAVINCI SERIES MEDIA DRIVER
11729 M:      "Lad, Prabhakar" <[email protected]>
11730 L:      [email protected]
11731 W:      https://linuxtv.org
11732 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11733 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
11734 S:      Maintained
11735 F:      drivers/media/platform/davinci/
11736 F:      include/media/davinci/
11737
11738 TI AM437X VPFE DRIVER
11739 M:      "Lad, Prabhakar" <[email protected]>
11740 L:      [email protected]
11741 W:      https://linuxtv.org
11742 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11743 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
11744 S:      Maintained
11745 F:      drivers/media/platform/am437x/
11746
11747 OV2659 OMNIVISION SENSOR DRIVER
11748 M:      "Lad, Prabhakar" <[email protected]>
11749 L:      [email protected]
11750 W:      https://linuxtv.org
11751 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11752 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
11753 S:      Maintained
11754 F:      drivers/media/i2c/ov2659.c
11755 F:      include/media/i2c/ov2659.h
11756
11757 SILICON MOTION SM712 FRAME BUFFER DRIVER
11758 M:      Sudip Mukherjee <[email protected]>
11759 M:      Teddy Wang <[email protected]>
11760 M:      Sudip Mukherjee <[email protected]>
11761 L:      [email protected]
11762 S:      Maintained
11763 F:      drivers/video/fbdev/sm712*
11764 F:      Documentation/fb/sm712fb.txt
11765
11766 SIS 190 ETHERNET DRIVER
11767 M:      Francois Romieu <[email protected]>
11768 L:      [email protected]
11769 S:      Maintained
11770 F:      drivers/net/ethernet/sis/sis190.c
11771
11772 SIS 900/7016 FAST ETHERNET DRIVER
11773 M:      Daniele Venzano <[email protected]>
11774 W:      http://www.brownhat.org/sis900.html
11775 L:      [email protected]
11776 S:      Maintained
11777 F:      drivers/net/ethernet/sis/sis900.*
11778
11779 SIS FRAMEBUFFER DRIVER
11780 M:      Thomas Winischhofer <[email protected]>
11781 W:      http://www.winischhofer.net/linuxsisvga.shtml
11782 S:      Maintained
11783 F:      Documentation/fb/sisfb.txt
11784 F:      drivers/video/fbdev/sis/
11785 F:      include/video/sisfb.h
11786
11787 SIS USB2VGA DRIVER
11788 M:      Thomas Winischhofer <[email protected]>
11789 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
11790 S:      Maintained
11791 F:      drivers/usb/misc/sisusbvga/
11792
11793 SLAB ALLOCATOR
11794 M:      Christoph Lameter <[email protected]>
11795 M:      Pekka Enberg <[email protected]>
11796 M:      David Rientjes <[email protected]>
11797 M:      Joonsoo Kim <[email protected]>
11798 M:      Andrew Morton <[email protected]>
11799 L:      [email protected]
11800 S:      Maintained
11801 F:      include/linux/sl?b*.h
11802 F:      mm/sl?b*
11803
11804 SLEEPABLE READ-COPY UPDATE (SRCU)
11805 M:      Lai Jiangshan <[email protected]>
11806 M:      "Paul E. McKenney" <[email protected]>
11807 M:      Josh Triplett <[email protected]>
11808 R:      Steven Rostedt <[email protected]>
11809 R:      Mathieu Desnoyers <[email protected]>
11810 L:      [email protected]
11811 W:      http://www.rdrop.com/users/paulmck/RCU/
11812 S:      Supported
11813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git
11814 F:      include/linux/srcu.h
11815 F:      kernel/rcu/srcu.c
11816
11817 SMACK SECURITY MODULE
11818 M:      Casey Schaufler <[email protected]>
11819 L:      [email protected]
11820 W:      http://schaufler-ca.com
11821 T:      git git://github.com/cschaufler/smack-next
11822 S:      Maintained
11823 F:      Documentation/security/Smack.txt
11824 F:      security/smack/
11825
11826 DRIVERS FOR ADAPTIVE VOLTAGE SCALING (AVS)
11827 M:      Kevin Hilman <[email protected]>
11828 M:      Nishanth Menon <[email protected]>
11829 S:      Maintained
11830 F:      drivers/power/avs/
11831 F:      include/linux/power/smartreflex.h
11832 L:      [email protected]
11833
11834 SMC91x ETHERNET DRIVER
11835 M:      Nicolas Pitre <[email protected]>
11836 S:      Odd Fixes
11837 F:      drivers/net/ethernet/smsc/smc91x.*
11838
11839 SMIA AND SMIA++ IMAGE SENSOR DRIVER
11840 M:      Sakari Ailus <[email protected]>
11841 L:      [email protected]
11842 S:      Maintained
11843 F:      drivers/media/i2c/smiapp/
11844 F:      include/media/i2c/smiapp.h
11845 F:      drivers/media/i2c/smiapp-pll.c
11846 F:      drivers/media/i2c/smiapp-pll.h
11847 F:      include/uapi/linux/smiapp.h
11848 F:      Documentation/devicetree/bindings/media/i2c/nokia,smia.txt
11849
11850 SMM665 HARDWARE MONITOR DRIVER
11851 M:      Guenter Roeck <[email protected]>
11852 L:      [email protected]
11853 S:      Maintained
11854 F:      Documentation/hwmon/smm665
11855 F:      drivers/hwmon/smm665.c
11856
11857 SMSC EMC2103 HARDWARE MONITOR DRIVER
11858 M:      Steve Glendinning <[email protected]>
11859 L:      [email protected]
11860 S:      Maintained
11861 F:      Documentation/hwmon/emc2103
11862 F:      drivers/hwmon/emc2103.c
11863
11864 SMSC SCH5627 HARDWARE MONITOR DRIVER
11865 M:      Hans de Goede <[email protected]>
11866 L:      [email protected]
11867 S:      Supported
11868 F:      Documentation/hwmon/sch5627
11869 F:      drivers/hwmon/sch5627.c
11870
11871 SMSC47B397 HARDWARE MONITOR DRIVER
11872 M:      Jean Delvare <[email protected]>
11873 L:      [email protected]
11874 S:      Maintained
11875 F:      Documentation/hwmon/smsc47b397
11876 F:      drivers/hwmon/smsc47b397.c
11877
11878 SMSC911x ETHERNET DRIVER
11879 M:      Steve Glendinning <[email protected]>
11880 L:      [email protected]
11881 S:      Maintained
11882 F:      include/linux/smsc911x.h
11883 F:      drivers/net/ethernet/smsc/smsc911x.*
11884
11885 SMSC9420 PCI ETHERNET DRIVER
11886 M:      Steve Glendinning <[email protected]>
11887 L:      [email protected]
11888 S:      Maintained
11889 F:      drivers/net/ethernet/smsc/smsc9420.*
11890
11891 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
11892 M:      Steve Glendinning <[email protected]>
11893 L:      [email protected]
11894 S:      Maintained
11895 F:      drivers/video/fbdev/smscufx.c
11896
11897 SOC-CAMERA V4L2 SUBSYSTEM
11898 M:      Guennadi Liakhovetski <[email protected]>
11899 L:      [email protected]
11900 T:      git git://linuxtv.org/media_tree.git
11901 S:      Maintained
11902 F:      include/media/soc*
11903 F:      drivers/media/i2c/soc_camera/
11904 F:      drivers/media/platform/soc_camera/
11905
11906 SOEKRIS NET48XX LED SUPPORT
11907 M:      Chris Boot <[email protected]>
11908 S:      Maintained
11909 F:      drivers/leds/leds-net48xx.c
11910
11911 SOFTLOGIC 6x10 MPEG CODEC
11912 M:      Bluecherry Maintainers <[email protected]>
11913 M:      Andrey Utkin <[email protected]>
11914 M:      Andrey Utkin <[email protected]>
11915 M:      Ismael Luceno <[email protected]>
11916 L:      [email protected]
11917 S:      Supported
11918 F:      drivers/media/pci/solo6x10/
11919
11920 SOFTWARE RAID (Multiple Disks) SUPPORT
11921 M:      Shaohua Li <[email protected]>
11922 L:      [email protected]
11923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git
11924 S:      Supported
11925 F:      drivers/md/
11926 F:      include/linux/raid/
11927 F:      include/uapi/linux/raid/
11928
11929 SONIC NETWORK DRIVER
11930 M:      Thomas Bogendoerfer <[email protected]>
11931 L:      [email protected]
11932 S:      Maintained
11933 F:      drivers/net/ethernet/natsemi/sonic.*
11934
11935 SONICS SILICON BACKPLANE DRIVER (SSB)
11936 M:      Michael Buesch <[email protected]>
11937 L:      [email protected]
11938 S:      Maintained
11939 F:      drivers/ssb/
11940 F:      include/linux/ssb/
11941
11942 SONY VAIO CONTROL DEVICE DRIVER
11943 M:      Mattia Dongili <[email protected]>
11944 L:      [email protected]
11945 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
11946 S:      Maintained
11947 F:      Documentation/laptops/sony-laptop.txt
11948 F:      drivers/char/sonypi.c
11949 F:      drivers/platform/x86/sony-laptop.c
11950 F:      include/linux/sony-laptop.h
11951
11952 SONY MEMORYSTICK CARD SUPPORT
11953 M:      Alex Dubov <[email protected]>
11954 W:      http://tifmxx.berlios.de/
11955 S:      Maintained
11956 F:      drivers/memstick/host/tifm_ms.c
11957
11958 SONY MEMORYSTICK STANDARD SUPPORT
11959 M:      Maxim Levitsky <[email protected]>
11960 S:      Maintained
11961 F:      drivers/memstick/core/ms_block.*
11962
11963 SOUND
11964 M:      Jaroslav Kysela <[email protected]>
11965 M:      Takashi Iwai <[email protected]>
11966 L:      [email protected] (moderated for non-subscribers)
11967 W:      http://www.alsa-project.org/
11968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
11969 T:      git git://git.alsa-project.org/alsa-kernel.git
11970 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
11971 S:      Maintained
11972 F:      Documentation/sound/
11973 F:      include/sound/
11974 F:      include/uapi/sound/
11975 F:      sound/
11976
11977 SOUND - COMPRESSED AUDIO
11978 M:      Vinod Koul <[email protected]>
11979 L:      [email protected] (moderated for non-subscribers)
11980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
11981 S:      Supported
11982 F:      Documentation/sound/alsa/compress_offload.txt
11983 F:      include/sound/compress_driver.h
11984 F:      include/uapi/sound/compress_*
11985 F:      sound/core/compress_offload.c
11986 F:      sound/soc/soc-compress.c
11987
11988 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
11989 M:      Liam Girdwood <[email protected]>
11990 M:      Mark Brown <[email protected]>
11991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
11992 L:      [email protected] (moderated for non-subscribers)
11993 W:      http://alsa-project.org/main/index.php/ASoC
11994 S:      Supported
11995 F:      Documentation/devicetree/bindings/sound/
11996 F:      Documentation/sound/alsa/soc/
11997 F:      sound/soc/
11998 F:      include/sound/soc*
11999
12000 SOUND - DMAENGINE HELPERS
12001 M:      Lars-Peter Clausen <[email protected]>
12002 S:      Supported
12003 F:      include/sound/dmaengine_pcm.h
12004 F:      sound/core/pcm_dmaengine.c
12005 F:      sound/soc/soc-generic-dmaengine-pcm.c
12006
12007 SP2 MEDIA DRIVER
12008 M:      Olli Salonen <[email protected]>
12009 L:      [email protected]
12010 W:      https://linuxtv.org
12011 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12012 S:      Maintained
12013 F:      drivers/media/dvb-frontends/sp2*
12014
12015 SPARC + UltraSPARC (sparc/sparc64)
12016 M:      "David S. Miller" <[email protected]>
12017 L:      [email protected]
12018 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
12019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12021 S:      Maintained
12022 F:      arch/sparc/
12023 F:      drivers/sbus/
12024
12025 SPARC SERIAL DRIVERS
12026 M:      "David S. Miller" <[email protected]>
12027 L:      [email protected]
12028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
12029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
12030 S:      Maintained
12031 F:      include/linux/sunserialcore.h
12032 F:      drivers/tty/serial/suncore.c
12033 F:      drivers/tty/serial/sunhv.c
12034 F:      drivers/tty/serial/sunsab.c
12035 F:      drivers/tty/serial/sunsab.h
12036 F:      drivers/tty/serial/sunsu.c
12037 F:      drivers/tty/serial/sunzilog.c
12038 F:      drivers/tty/serial/sunzilog.h
12039
12040 SPARSE CHECKER
12041 M:      "Christopher Li" <[email protected]>
12042 L:      [email protected]
12043 W:      https://sparse.wiki.kernel.org/
12044 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
12045 T:      git git://git.kernel.org/pub/scm/devel/sparse/chrisl/sparse.git
12046 S:      Maintained
12047 F:      include/linux/compiler.h
12048
12049 SPEAR PLATFORM SUPPORT
12050 M:      Viresh Kumar <[email protected]>
12051 M:      Shiraz Hashim <[email protected]>
12052 L:      [email protected] (moderated for non-subscribers)
12053 W:      http://www.st.com/spear
12054 S:      Maintained
12055 F:      arch/arm/boot/dts/spear*
12056 F:      arch/arm/mach-spear/
12057
12058 SPEAR CLOCK FRAMEWORK SUPPORT
12059 M:      Viresh Kumar <[email protected]>
12060 L:      [email protected] (moderated for non-subscribers)
12061 W:      http://www.st.com/spear
12062 S:      Maintained
12063 F:      drivers/clk/spear/
12064
12065 SPI NOR SUBSYSTEM
12066 M:      Cyrille Pitchen <[email protected]>
12067 M:      Marek Vasut <[email protected]>
12068 L:      [email protected]
12069 W:      http://www.linux-mtd.infradead.org/
12070 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12071 T:      git git://github.com/spi-nor/linux.git
12072 S:      Maintained
12073 F:      drivers/mtd/spi-nor/
12074 F:      include/linux/mtd/spi-nor.h
12075
12076 SPI SUBSYSTEM
12077 M:      Mark Brown <[email protected]>
12078 L:      [email protected]
12079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
12080 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
12081 S:      Maintained
12082 F:      Documentation/devicetree/bindings/spi/
12083 F:      Documentation/spi/
12084 F:      drivers/spi/
12085 F:      include/linux/spi/
12086 F:      include/uapi/linux/spi/
12087 F:      tools/spi/
12088
12089 SPIDERNET NETWORK DRIVER for CELL
12090 M:      Ishizaki Kou <[email protected]>
12091 L:      [email protected]
12092 S:      Supported
12093 F:      Documentation/networking/spider_net.txt
12094 F:      drivers/net/ethernet/toshiba/spider_net*
12095
12096 SPU FILE SYSTEM
12097 M:      Jeremy Kerr <[email protected]>
12098 L:      [email protected]
12099 W:      http://www.ibm.com/developerworks/power/cell/
12100 S:      Supported
12101 F:      Documentation/filesystems/spufs.txt
12102 F:      arch/powerpc/platforms/cell/spufs/
12103
12104 SQUASHFS FILE SYSTEM
12105 M:      Phillip Lougher <[email protected]>
12106 L:      [email protected] (subscribers-only)
12107 W:      http://squashfs.org.uk
12108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
12109 S:      Maintained
12110 F:      Documentation/filesystems/squashfs.txt
12111 F:      fs/squashfs/
12112
12113 SRM (Alpha) environment access
12114 M:      Jan-Benedict Glaw <[email protected]>
12115 S:      Maintained
12116 F:      arch/alpha/kernel/srm_env.c
12117
12118 STABLE BRANCH
12119 M:      Greg Kroah-Hartman <[email protected]>
12120 L:      [email protected]
12121 S:      Supported
12122 F:      Documentation/process/stable-kernel-rules.rst
12123
12124 STAGING SUBSYSTEM
12125 M:      Greg Kroah-Hartman <[email protected]>
12126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
12127 L:      [email protected]
12128 S:      Supported
12129 F:      drivers/staging/
12130
12131 STAGING - COMEDI
12132 M:      Ian Abbott <[email protected]>
12133 M:      H Hartley Sweeten <[email protected]>
12134 S:      Odd Fixes
12135 F:      drivers/staging/comedi/
12136
12137 STAGING - FLARION FT1000 DRIVERS
12138 M:      Marek Belisko <[email protected]>
12139 S:      Odd Fixes
12140 F:      drivers/staging/ft1000/
12141
12142 STAGING - INDUSTRIAL IO
12143 M:      Jonathan Cameron <[email protected]>
12144 L:      [email protected]
12145 S:      Odd Fixes
12146 F:      Documentation/devicetree/bindings/staging/iio/
12147 F:      drivers/staging/iio/
12148
12149 STAGING - LIRC (LINUX INFRARED REMOTE CONTROL) DRIVERS
12150 M:      Jarod Wilson <[email protected]>
12151 W:      http://www.lirc.org/
12152 S:      Odd Fixes
12153 F:      drivers/staging/media/lirc/
12154
12155 STAGING - LUSTRE PARALLEL FILESYSTEM
12156 M:      Oleg Drokin <[email protected]>
12157 M:      Andreas Dilger <[email protected]>
12158 M:      James Simmons <[email protected]>
12159 L:      [email protected] (moderated for non-subscribers)
12160 W:      http://wiki.lustre.org/
12161 S:      Maintained
12162 F:      drivers/staging/lustre
12163
12164 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
12165 M:      Marc Dietrich <[email protected]>
12166 L:      [email protected] (moderated for non-subscribers)
12167 L:      [email protected]
12168 S:      Maintained
12169 F:      drivers/staging/nvec/
12170
12171 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
12172 M:      Jens Frederich <[email protected]>
12173 M:      Daniel Drake <[email protected]>
12174 M:      Jon Nettleton <[email protected]>
12175 W:      http://wiki.laptop.org/go/DCON
12176 S:      Maintained
12177 F:      drivers/staging/olpc_dcon/
12178
12179 STAGING - REALTEK RTL8712U DRIVERS
12180 M:      Larry Finger <[email protected]>
12181 M:      Florian Schilhabel <[email protected]>.
12182 S:      Odd Fixes
12183 F:      drivers/staging/rtl8712/
12184
12185 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
12186 M:      Sudip Mukherjee <[email protected]>
12187 M:      Teddy Wang <[email protected]>
12188 M:      Sudip Mukherjee <[email protected]>
12189 L:      [email protected]
12190 S:      Maintained
12191 F:      drivers/staging/sm750fb/
12192
12193 STAGING - SPEAKUP CONSOLE SPEECH DRIVER
12194 M:      William Hubbs <[email protected]>
12195 M:      Chris Brannon <[email protected]>
12196 M:      Kirk Reiser <[email protected]>
12197 M:      Samuel Thibault <[email protected]>
12198 L:      [email protected]
12199 W:      http://www.linux-speakup.org/
12200 S:      Odd Fixes
12201 F:      drivers/staging/speakup/
12202
12203 STAGING - VIA VT665X DRIVERS
12204 M:      Forest Bond <[email protected]>
12205 S:      Odd Fixes
12206 F:      drivers/staging/vt665?/
12207
12208 STAGING - WILC1000 WIFI DRIVER
12209 M:      Aditya Shankar <[email protected]>
12210 M:      Ganesh Krishna <[email protected]>
12211 L:      [email protected]
12212 S:      Supported
12213 F:      drivers/staging/wilc1000/
12214
12215 STAGING - XGI Z7,Z9,Z11 PCI DISPLAY DRIVER
12216 M:      Arnaud Patard <[email protected]>
12217 S:      Odd Fixes
12218 F:      drivers/staging/xgifb/
12219
12220 STARFIRE/DURALAN NETWORK DRIVER
12221 M:      Ion Badulescu <[email protected]>
12222 S:      Odd Fixes
12223 F:      drivers/net/ethernet/adaptec/starfire*
12224
12225 SUN3/3X
12226 M:      Sam Creasey <[email protected]>
12227 W:      http://sammy.net/sun3/
12228 S:      Maintained
12229 F:      arch/m68k/kernel/*sun3*
12230 F:      arch/m68k/sun3*/
12231 F:      arch/m68k/include/asm/sun3*
12232 F:      drivers/net/ethernet/i825xx/sun3*
12233
12234 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
12235 M:      Hans de Goede <[email protected]>
12236 L:      [email protected]
12237 S:      Maintained
12238 F:      Documentation/devicetree/bindings/input/sun4i-lradc-keys.txt
12239 F:      drivers/input/keyboard/sun4i-lradc-keys.c
12240
12241 SUNDANCE NETWORK DRIVER
12242 M:      Denis Kirjanov <[email protected]>
12243 L:      [email protected]
12244 S:      Maintained
12245 F:      drivers/net/ethernet/dlink/sundance.c
12246
12247 SUPERH
12248 M:      Yoshinori Sato <[email protected]>
12249 M:      Rich Felker <[email protected]>
12250 L:      [email protected]
12251 Q:      http://patchwork.kernel.org/project/linux-sh/list/
12252 S:      Maintained
12253 F:      Documentation/sh/
12254 F:      arch/sh/
12255 F:      drivers/sh/
12256
12257 SUSPEND TO RAM
12258 M:      "Rafael J. Wysocki" <[email protected]>
12259 M:      Len Brown <[email protected]>
12260 M:      Pavel Machek <[email protected]>
12261 L:      [email protected]
12262 B:      https://bugzilla.kernel.org
12263 S:      Supported
12264 F:      Documentation/power/
12265 F:      arch/x86/kernel/acpi/
12266 F:      drivers/base/power/
12267 F:      kernel/power/
12268 F:      include/linux/suspend.h
12269 F:      include/linux/freezer.h
12270 F:      include/linux/pm.h
12271
12272 SVGA HANDLING
12273 M:      Martin Mares <[email protected]>
12274 L:      [email protected]
12275 S:      Maintained
12276 F:      Documentation/svga.txt
12277 F:      arch/x86/boot/video*
12278
12279 SWIOTLB SUBSYSTEM
12280 M:      Konrad Rzeszutek Wilk <[email protected]>
12281 L:      [email protected]
12282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/konrad/swiotlb.git
12283 S:      Supported
12284 F:      lib/swiotlb.c
12285 F:      arch/*/kernel/pci-swiotlb.c
12286 F:      include/linux/swiotlb.h
12287
12288 SWITCHDEV
12289 M:      Jiri Pirko <[email protected]>
12290 M:      Ivan Vecera <[email protected]>
12291 L:      [email protected]
12292 S:      Supported
12293 F:      net/switchdev/
12294 F:      include/net/switchdev.h
12295
12296 SYNOPSYS ARC ARCHITECTURE
12297 M:      Vineet Gupta <[email protected]>
12298 L:      [email protected]
12299 S:      Supported
12300 F:      arch/arc/
12301 F:      Documentation/devicetree/bindings/arc/*
12302 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
12303 F:      drivers/clocksource/arc_timer.c
12304 F:      drivers/tty/serial/arc_uart.c
12305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
12306
12307 SYNOPSYS ARC SDP platform support
12308 M:      Alexey Brodkin <[email protected]>
12309 S:      Supported
12310 F:      arch/arc/plat-axs10x
12311 F:      arch/arc/boot/dts/ax*
12312 F:      Documentation/devicetree/bindings/arc/axs10*
12313
12314 SYSTEM CONFIGURATION (SYSCON)
12315 M:      Lee Jones <[email protected]>
12316 M:      Arnd Bergmann <[email protected]>
12317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12318 S:      Supported
12319 F:      drivers/mfd/syscon.c
12320
12321 SYSTEM RESET/SHUTDOWN DRIVERS
12322 M:      Sebastian Reichel <[email protected]>
12323 L:      [email protected]
12324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
12325 S:      Maintained
12326 F:      Documentation/devicetree/bindings/power/reset/
12327 F:      drivers/power/reset/
12328
12329 SYSV FILESYSTEM
12330 M:      Christoph Hellwig <[email protected]>
12331 S:      Maintained
12332 F:      Documentation/filesystems/sysv-fs.txt
12333 F:      fs/sysv/
12334 F:      include/linux/sysv_fs.h
12335
12336 TARGET SUBSYSTEM
12337 M:      "Nicholas A. Bellinger" <[email protected]>
12338 L:      [email protected]
12339 L:      [email protected]
12340 W:      http://www.linux-iscsi.org
12341 W:      http://groups.google.com/group/linux-iscsi-target-dev
12342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
12343 S:      Supported
12344 F:      drivers/target/
12345 F:      include/target/
12346 F:      Documentation/target/
12347
12348 TASKSTATS STATISTICS INTERFACE
12349 M:      Balbir Singh <[email protected]>
12350 S:      Maintained
12351 F:      Documentation/accounting/taskstats*
12352 F:      include/linux/taskstats*
12353 F:      kernel/taskstats.c
12354
12355 TC subsystem
12356 M:      Jamal Hadi Salim <[email protected]>
12357 M:      Cong Wang <[email protected]>
12358 M:      Jiri Pirko <[email protected]>
12359 L:      [email protected]
12360 S:      Maintained
12361 F:      include/net/pkt_cls.h
12362 F:      include/net/pkt_sched.h
12363 F:      include/net/tc_act/
12364 F:      include/uapi/linux/pkt_cls.h
12365 F:      include/uapi/linux/pkt_sched.h
12366 F:      include/uapi/linux/tc_act/
12367 F:      include/uapi/linux/tc_ematch/
12368 F:      net/sched/
12369
12370 TCP LOW PRIORITY MODULE
12371 M:      "Wong Hoi Sing, Edison" <[email protected]>
12372 M:      "Hung Hing Lun, Mike" <[email protected]>
12373 W:      http://tcp-lp-mod.sourceforge.net/
12374 S:      Maintained
12375 F:      net/ipv4/tcp_lp.c
12376
12377 TDA10071 MEDIA DRIVER
12378 M:      Antti Palosaari <[email protected]>
12379 L:      [email protected]
12380 W:      https://linuxtv.org
12381 W:      http://palosaari.fi/linux/
12382 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12383 T:      git git://linuxtv.org/anttip/media_tree.git
12384 S:      Maintained
12385 F:      drivers/media/dvb-frontends/tda10071*
12386
12387 TDA18212 MEDIA DRIVER
12388 M:      Antti Palosaari <[email protected]>
12389 L:      [email protected]
12390 W:      https://linuxtv.org
12391 W:      http://palosaari.fi/linux/
12392 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12393 T:      git git://linuxtv.org/anttip/media_tree.git
12394 S:      Maintained
12395 F:      drivers/media/tuners/tda18212*
12396
12397 TDA18218 MEDIA DRIVER
12398 M:      Antti Palosaari <[email protected]>
12399 L:      [email protected]
12400 W:      https://linuxtv.org
12401 W:      http://palosaari.fi/linux/
12402 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12403 T:      git git://linuxtv.org/anttip/media_tree.git
12404 S:      Maintained
12405 F:      drivers/media/tuners/tda18218*
12406
12407 TDA18271 MEDIA DRIVER
12408 M:      Michael Krufky <[email protected]>
12409 L:      [email protected]
12410 W:      https://linuxtv.org
12411 W:      http://github.com/mkrufky
12412 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12413 T:      git git://linuxtv.org/mkrufky/tuners.git
12414 S:      Maintained
12415 F:      drivers/media/tuners/tda18271*
12416
12417 TDA827x MEDIA DRIVER
12418 M:      Michael Krufky <[email protected]>
12419 L:      [email protected]
12420 W:      https://linuxtv.org
12421 W:      http://github.com/mkrufky
12422 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12423 T:      git git://linuxtv.org/mkrufky/tuners.git
12424 S:      Maintained
12425 F:      drivers/media/tuners/tda8290.*
12426
12427 TDA8290 MEDIA DRIVER
12428 M:      Michael Krufky <[email protected]>
12429 L:      [email protected]
12430 W:      https://linuxtv.org
12431 W:      http://github.com/mkrufky
12432 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12433 T:      git git://linuxtv.org/mkrufky/tuners.git
12434 S:      Maintained
12435 F:      drivers/media/tuners/tda8290.*
12436
12437 TDA9840 MEDIA DRIVER
12438 M:      Hans Verkuil <[email protected]>
12439 L:      [email protected]
12440 T:      git git://linuxtv.org/media_tree.git
12441 W:      https://linuxtv.org
12442 S:      Maintained
12443 F:      drivers/media/i2c/tda9840*
12444
12445 TEA5761 TUNER DRIVER
12446 M:      Mauro Carvalho Chehab <[email protected]>
12447 M:      Mauro Carvalho Chehab <[email protected]>
12448 L:      [email protected]
12449 W:      https://linuxtv.org
12450 T:      git git://linuxtv.org/media_tree.git
12451 S:      Odd fixes
12452 F:      drivers/media/tuners/tea5761.*
12453
12454 TEA5767 TUNER DRIVER
12455 M:      Mauro Carvalho Chehab <[email protected]>
12456 M:      Mauro Carvalho Chehab <[email protected]>
12457 L:      [email protected]
12458 W:      https://linuxtv.org
12459 T:      git git://linuxtv.org/media_tree.git
12460 S:      Maintained
12461 F:      drivers/media/tuners/tea5767.*
12462
12463 TEA6415C MEDIA DRIVER
12464 M:      Hans Verkuil <[email protected]>
12465 L:      [email protected]
12466 T:      git git://linuxtv.org/media_tree.git
12467 W:      https://linuxtv.org
12468 S:      Maintained
12469 F:      drivers/media/i2c/tea6415c*
12470
12471 TEA6420 MEDIA DRIVER
12472 M:      Hans Verkuil <[email protected]>
12473 L:      [email protected]
12474 T:      git git://linuxtv.org/media_tree.git
12475 W:      https://linuxtv.org
12476 S:      Maintained
12477 F:      drivers/media/i2c/tea6420*
12478
12479 TEAM DRIVER
12480 M:      Jiri Pirko <[email protected]>
12481 L:      [email protected]
12482 S:      Supported
12483 F:      drivers/net/team/
12484 F:      include/linux/if_team.h
12485 F:      include/uapi/linux/if_team.h
12486
12487 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
12488 M:      "Savoir-faire Linux Inc." <[email protected]>
12489 S:      Maintained
12490 F:      arch/x86/platform/ts5500/
12491
12492 TECHNOTREND USB IR RECEIVER
12493 M:      Sean Young <[email protected]>
12494 L:      [email protected]
12495 S:      Maintained
12496 F:      drivers/media/rc/ttusbir.c
12497
12498 TEGRA ARCHITECTURE SUPPORT
12499 M:      Stephen Warren <[email protected]>
12500 M:      Thierry Reding <[email protected]>
12501 M:      Alexandre Courbot <[email protected]>
12502 L:      [email protected]
12503 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
12504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
12505 S:      Supported
12506 N:      [^a-z]tegra
12507
12508 TEGRA CLOCK DRIVER
12509 M:      Peter De Schrijver <[email protected]>
12510 M:      Prashant Gaikwad <[email protected]>
12511 S:      Supported
12512 F:      drivers/clk/tegra/
12513
12514 TEGRA DMA DRIVERS
12515 M:      Laxman Dewangan <[email protected]>
12516 M:      Jon Hunter <[email protected]>
12517 S:      Supported
12518 F:      drivers/dma/tegra*
12519
12520 TEGRA I2C DRIVER
12521 M:      Laxman Dewangan <[email protected]>
12522 S:      Supported
12523 F:      drivers/i2c/busses/i2c-tegra.c
12524
12525 TEGRA IOMMU DRIVERS
12526 M:      Hiroshi Doyu <[email protected]>
12527 S:      Supported
12528 F:      drivers/iommu/tegra*
12529
12530 TEGRA KBC DRIVER
12531 M:      Rakesh Iyer <[email protected]>
12532 M:      Laxman Dewangan <[email protected]>
12533 S:      Supported
12534 F:      drivers/input/keyboard/tegra-kbc.c
12535
12536 TEGRA PWM DRIVER
12537 M:      Thierry Reding <[email protected]>
12538 S:      Supported
12539 F:      drivers/pwm/pwm-tegra.c
12540
12541 TEGRA SERIAL DRIVER
12542 M:      Laxman Dewangan <[email protected]>
12543 S:      Supported
12544 F:      drivers/tty/serial/serial-tegra.c
12545
12546 TEGRA SPI DRIVER
12547 M:      Laxman Dewangan <[email protected]>
12548 S:      Supported
12549 F:      drivers/spi/spi-tegra*
12550
12551 TEHUTI ETHERNET DRIVER
12552 M:      Andy Gospodarek <[email protected]>
12553 L:      [email protected]
12554 S:      Supported
12555 F:      drivers/net/ethernet/tehuti/*
12556
12557 Telecom Clock Driver for MCPL0010
12558 M:      Mark Gross <[email protected]>
12559 S:      Supported
12560 F:      drivers/char/tlclk.c
12561
12562 TENSILICA XTENSA PORT (xtensa)
12563 M:      Chris Zankel <[email protected]>
12564 M:      Max Filippov <[email protected]>
12565 L:      [email protected]
12566 T:      git git://github.com/czankel/xtensa-linux.git
12567 S:      Maintained
12568 F:      arch/xtensa/
12569 F:      drivers/irqchip/irq-xtensa-*
12570
12571 Texas Instruments' System Control Interface (TISCI) Protocol Driver
12572 M:      Nishanth Menon <[email protected]>
12573 M:      Tero Kristo <[email protected]>
12574 M:      Santosh Shilimkar <[email protected]>
12575 L:      [email protected]
12576 S:      Maintained
12577 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
12578 F:      drivers/firmware/ti_sci*
12579 F:      include/linux/soc/ti/ti_sci_protocol.h
12580
12581 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
12582 M:      Hans Verkuil <[email protected]>
12583 L:      [email protected]
12584 T:      git git://linuxtv.org/media_tree.git
12585 W:      https://linuxtv.org
12586 S:      Maintained
12587 F:      drivers/media/radio/radio-raremono.c
12588
12589 THERMAL
12590 M:      Zhang Rui <[email protected]>
12591 M:      Eduardo Valentin <[email protected]>
12592 L:      [email protected]
12593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rzhang/linux.git
12594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal.git
12595 Q:      https://patchwork.kernel.org/project/linux-pm/list/
12596 S:      Supported
12597 F:      drivers/thermal/
12598 F:      include/linux/thermal.h
12599 F:      include/uapi/linux/thermal.h
12600 F:      include/linux/cpu_cooling.h
12601 F:      Documentation/devicetree/bindings/thermal/
12602
12603 THERMAL/CPU_COOLING
12604 M:      Amit Daniel Kachhap <[email protected]>
12605 M:      Viresh Kumar <[email protected]>
12606 M:      Javi Merino <[email protected]>
12607 L:      [email protected]
12608 S:      Supported
12609 F:      Documentation/thermal/cpu-cooling-api.txt
12610 F:      drivers/thermal/cpu_cooling.c
12611 F:      include/linux/cpu_cooling.h
12612
12613 THINKPAD ACPI EXTRAS DRIVER
12614 M:      Henrique de Moraes Holschuh <[email protected]>
12615 L:      [email protected]
12616 L:      [email protected]
12617 W:      http://ibm-acpi.sourceforge.net
12618 W:      http://thinkwiki.org/wiki/Ibm-acpi
12619 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
12620 S:      Maintained
12621 F:      drivers/platform/x86/thinkpad_acpi.c
12622
12623 TI BANDGAP AND THERMAL DRIVER
12624 M:      Eduardo Valentin <[email protected]>
12625 M:      Keerthy <[email protected]>
12626 L:      [email protected]
12627 L:      [email protected]
12628 S:      Maintained
12629 F:      drivers/thermal/ti-soc-thermal/
12630
12631 TI VPE/CAL DRIVERS
12632 M:      Benoit Parrot <[email protected]>
12633 L:      [email protected]
12634 W:      http://linuxtv.org/
12635 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12636 S:      Maintained
12637 F:      drivers/media/platform/ti-vpe/
12638
12639 TI CDCE706 CLOCK DRIVER
12640 M:      Max Filippov <[email protected]>
12641 S:      Maintained
12642 F:      drivers/clk/clk-cdce706.c
12643
12644 TI CLOCK DRIVER
12645 M:      Tero Kristo <[email protected]>
12646 L:      [email protected]
12647 S:      Maintained
12648 F:      drivers/clk/ti/
12649 F:      include/linux/clk/ti.h
12650
12651 TI ETHERNET SWITCH DRIVER (CPSW)
12652 R:      Grygorii Strashko <[email protected]>
12653 L:      [email protected]
12654 L:      [email protected]
12655 S:      Maintained
12656 F:      drivers/net/ethernet/ti/cpsw*
12657 F:      drivers/net/ethernet/ti/davinci*
12658
12659 TI FLASH MEDIA INTERFACE DRIVER
12660 M:      Alex Dubov <[email protected]>
12661 S:      Maintained
12662 F:      drivers/misc/tifm*
12663 F:      drivers/mmc/host/tifm_sd.c
12664 F:      include/linux/tifm.h
12665
12666 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
12667 M:      Santosh Shilimkar <[email protected]>
12668 L:      [email protected]
12669 L:      [email protected] (moderated for non-subscribers)
12670 S:      Maintained
12671 F:      drivers/soc/ti/*
12672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
12673
12674
12675 TI LM49xxx FAMILY ASoC CODEC DRIVERS
12676 M:      M R Swami Reddy <[email protected]>
12677 M:      Vishwas A Deshpande <[email protected]>
12678 L:      [email protected] (moderated for non-subscribers)
12679 S:      Maintained
12680 F:      sound/soc/codecs/lm49453*
12681 F:      sound/soc/codecs/isabelle*
12682
12683 TI LP855x BACKLIGHT DRIVER
12684 M:      Milo Kim <[email protected]>
12685 S:      Maintained
12686 F:      Documentation/backlight/lp855x-driver.txt
12687 F:      drivers/video/backlight/lp855x_bl.c
12688 F:      include/linux/platform_data/lp855x.h
12689
12690 TI LP8727 CHARGER DRIVER
12691 M:      Milo Kim <[email protected]>
12692 S:      Maintained
12693 F:      drivers/power/supply/lp8727_charger.c
12694 F:      include/linux/platform_data/lp8727.h
12695
12696 TI LP8788 MFD DRIVER
12697 M:      Milo Kim <[email protected]>
12698 S:      Maintained
12699 F:      drivers/iio/adc/lp8788_adc.c
12700 F:      drivers/leds/leds-lp8788.c
12701 F:      drivers/mfd/lp8788*.c
12702 F:      drivers/power/supply/lp8788-charger.c
12703 F:      drivers/regulator/lp8788-*.c
12704 F:      include/linux/mfd/lp8788*.h
12705
12706 TI NETCP ETHERNET DRIVER
12707 M:      Wingman Kwok <[email protected]>
12708 M:      Murali Karicheri <[email protected]>
12709 L:      [email protected]
12710 S:      Maintained
12711 F:      drivers/net/ethernet/ti/netcp*
12712
12713 TI TAS571X FAMILY ASoC CODEC DRIVER
12714 M:      Kevin Cernekee <[email protected]>
12715 L:      [email protected] (moderated for non-subscribers)
12716 S:      Odd Fixes
12717 F:      sound/soc/codecs/tas571x*
12718
12719 TI TWL4030 SERIES SOC CODEC DRIVER
12720 M:      Peter Ujfalusi <[email protected]>
12721 L:      [email protected] (moderated for non-subscribers)
12722 S:      Maintained
12723 F:      sound/soc/codecs/twl4030*
12724
12725 TI WILINK WIRELESS DRIVERS
12726 L:      [email protected]
12727 W:      http://wireless.kernel.org/en/users/Drivers/wl12xx
12728 W:      http://wireless.kernel.org/en/users/Drivers/wl1251
12729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
12730 S:      Orphan
12731 F:      drivers/net/wireless/ti/
12732 F:      include/linux/wl12xx.h
12733
12734 TIPC NETWORK LAYER
12735 M:      Jon Maloy <[email protected]>
12736 M:      Ying Xue <[email protected]>
12737 L:      [email protected] (core kernel code)
12738 L:      [email protected] (user apps, general discussion)
12739 W:      http://tipc.sourceforge.net/
12740 S:      Maintained
12741 F:      include/uapi/linux/tipc*.h
12742 F:      net/tipc/
12743
12744 TILE ARCHITECTURE
12745 M:      Chris Metcalf <[email protected]>
12746 W:      http://www.mellanox.com/repository/solutions/tile-scm/
12747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile.git
12748 S:      Supported
12749 F:      arch/tile/
12750 F:      drivers/char/tile-srom.c
12751 F:      drivers/edac/tile_edac.c
12752 F:      drivers/net/ethernet/tile/
12753 F:      drivers/rtc/rtc-tile.c
12754 F:      drivers/tty/hvc/hvc_tile.c
12755 F:      drivers/tty/serial/tilegx.c
12756 F:      drivers/usb/host/*-tilegx.c
12757 F:      include/linux/usb/tilegx.h
12758
12759 TLAN NETWORK DRIVER
12760 M:      Samuel Chessman <[email protected]>
12761 L:      [email protected] (subscribers-only)
12762 W:      http://sourceforge.net/projects/tlan/
12763 S:      Maintained
12764 F:      Documentation/networking/tlan.txt
12765 F:      drivers/net/ethernet/ti/tlan.*
12766
12767 TOMOYO SECURITY MODULE
12768 M:      Kentaro Takeda <[email protected]>
12769 M:      Tetsuo Handa <[email protected]>
12770 L:      [email protected] (subscribers-only, for developers in English)
12771 L:      [email protected] (subscribers-only, for users in English)
12772 L:      [email protected] (subscribers-only, for developers in Japanese)
12773 L:      [email protected] (subscribers-only, for users in Japanese)
12774 W:      http://tomoyo.sourceforge.jp/
12775 T:      quilt http://svn.sourceforge.jp/svnroot/tomoyo/trunk/2.5.x/tomoyo-lsm/patches/
12776 S:      Maintained
12777 F:      security/tomoyo/
12778
12779 TOPSTAR LAPTOP EXTRAS DRIVER
12780 M:      Herton Ronaldo Krzesinski <[email protected]>
12781 L:      [email protected]
12782 S:      Maintained
12783 F:      drivers/platform/x86/topstar-laptop.c
12784
12785 TOSHIBA ACPI EXTRAS DRIVER
12786 M:      Azael Avalos <[email protected]>
12787 L:      [email protected]
12788 S:      Maintained
12789 F:      drivers/platform/x86/toshiba_acpi.c
12790
12791 TOSHIBA BLUETOOTH DRIVER
12792 M:      Azael Avalos <[email protected]>
12793 L:      [email protected]
12794 S:      Maintained
12795 F:      drivers/platform/x86/toshiba_bluetooth.c
12796
12797 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
12798 M:      Azael Avalos <[email protected]>
12799 L:      [email protected]
12800 S:      Maintained
12801 F:      drivers/platform/x86/toshiba_haps.c
12802
12803 TOSHIBA WMI HOTKEYS DRIVER
12804 M:      Azael Avalos <[email protected]>
12805 L:      [email protected]
12806 S:      Maintained
12807 F:      drivers/platform/x86/toshiba-wmi.c
12808
12809 TOSHIBA SMM DRIVER
12810 M:      Jonathan Buzzard <[email protected]>
12811 W:      http://www.buzzard.org.uk/toshiba/
12812 S:      Maintained
12813 F:      drivers/char/toshiba.c
12814 F:      include/linux/toshiba.h
12815 F:      include/uapi/linux/toshiba.h
12816
12817 TOSHIBA TC358743 DRIVER
12818 M:      Mats Randgaard <[email protected]>
12819 L:      [email protected]
12820 S:      Maintained
12821 F:      drivers/media/i2c/tc358743*
12822 F:      include/media/i2c/tc358743.h
12823
12824 TMIO/SDHI MMC DRIVER
12825 M:      Wolfram Sang <[email protected]>
12826 L:      [email protected]
12827 S:      Supported
12828 F:      drivers/mmc/host/tmio_mmc*
12829 F:      drivers/mmc/host/sh_mobile_sdhi.c
12830 F:      include/linux/mfd/tmio.h
12831
12832 TMP401 HARDWARE MONITOR DRIVER
12833 M:      Guenter Roeck <[email protected]>
12834 L:      [email protected]
12835 S:      Maintained
12836 F:      Documentation/hwmon/tmp401
12837 F:      drivers/hwmon/tmp401.c
12838
12839 TMPFS (SHMEM FILESYSTEM)
12840 M:      Hugh Dickins <[email protected]>
12841 L:      [email protected]
12842 S:      Maintained
12843 F:      include/linux/shmem_fs.h
12844 F:      mm/shmem.c
12845
12846 TM6000 VIDEO4LINUX DRIVER
12847 M:      Mauro Carvalho Chehab <[email protected]>
12848 M:      Mauro Carvalho Chehab <[email protected]>
12849 L:      [email protected]
12850 W:      https://linuxtv.org
12851 T:      git git://linuxtv.org/media_tree.git
12852 S:      Odd fixes
12853 F:      drivers/media/usb/tm6000/
12854 F:      Documentation/media/v4l-drivers/tm6000*
12855
12856 TW5864 VIDEO4LINUX DRIVER
12857 M:      Bluecherry Maintainers <[email protected]>
12858 M:      Andrey Utkin <[email protected]>
12859 M:      Andrey Utkin <[email protected]>
12860 L:      [email protected]
12861 S:      Supported
12862 F:      drivers/media/pci/tw5864/
12863
12864 TW68 VIDEO4LINUX DRIVER
12865 M:      Hans Verkuil <[email protected]>
12866 L:      [email protected]
12867 T:      git git://linuxtv.org/media_tree.git
12868 W:      https://linuxtv.org
12869 S:      Odd Fixes
12870 F:      drivers/media/pci/tw68/
12871
12872 TW686X VIDEO4LINUX DRIVER
12873 M:      Ezequiel Garcia <[email protected]>
12874 L:      [email protected]
12875 T:      git git://linuxtv.org/media_tree.git
12876 W:      http://linuxtv.org
12877 S:      Maintained
12878 F:      drivers/media/pci/tw686x/
12879
12880 TPM DEVICE DRIVER
12881 M:      Peter Huewe <[email protected]>
12882 M:      Marcel Selhorst <[email protected]>
12883 M:      Jarkko Sakkinen <[email protected]>
12884 R:      Jason Gunthorpe <[email protected]>
12885 W:      http://tpmdd.sourceforge.net
12886 L:      [email protected] (moderated for non-subscribers)
12887 Q:      https://patchwork.kernel.org/project/tpmdd-devel/list/
12888 T:      git git://git.infradead.org/users/jjs/linux-tpmdd.git
12889 S:      Maintained
12890 F:      drivers/char/tpm/
12891
12892 TPM IBM_VTPM DEVICE DRIVER
12893 M:      Ashley Lai <[email protected]>
12894 W:      http://tpmdd.sourceforge.net
12895 L:      [email protected] (moderated for non-subscribers)
12896 S:      Maintained
12897 F:      drivers/char/tpm/tpm_ibmvtpm*
12898
12899 TRACING
12900 M:      Steven Rostedt <[email protected]>
12901 M:      Ingo Molnar <[email protected]>
12902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
12903 S:      Maintained
12904 F:      Documentation/trace/ftrace.txt
12905 F:      arch/*/*/*/ftrace.h
12906 F:      arch/*/kernel/ftrace.c
12907 F:      include/*/ftrace.h
12908 F:      include/linux/trace*.h
12909 F:      include/trace/
12910 F:      kernel/trace/
12911 F:      tools/testing/selftests/ftrace/
12912
12913 TRACING MMIO ACCESSES (MMIOTRACE)
12914 M:      Steven Rostedt <[email protected]>
12915 M:      Ingo Molnar <[email protected]>
12916 R:      Karol Herbst <[email protected]>
12917 R:      Pekka Paalanen <[email protected]>
12918 S:      Maintained
12919 L:      [email protected]
12920 L:      [email protected]
12921 F:      kernel/trace/trace_mmiotrace.c
12922 F:      include/linux/mmiotrace.h
12923 F:      arch/x86/mm/kmmio.c
12924 F:      arch/x86/mm/mmio-mod.c
12925 F:      arch/x86/mm/testmmiotrace.c
12926
12927 TRIVIAL PATCHES
12928 M:      Jiri Kosina <[email protected]>
12929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
12930 S:      Maintained
12931 K:      ^Subject:.*(?i)trivial
12932
12933 TTY LAYER
12934 M:      Greg Kroah-Hartman <[email protected]>
12935 M:      Jiri Slaby <[email protected]>
12936 S:      Supported
12937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
12938 F:      Documentation/serial/
12939 F:      drivers/tty/
12940 F:      drivers/tty/serial/serial_core.c
12941 F:      include/linux/serial_core.h
12942 F:      include/linux/serial.h
12943 F:      include/linux/tty.h
12944 F:      include/uapi/linux/serial_core.h
12945 F:      include/uapi/linux/serial.h
12946 F:      include/uapi/linux/tty.h
12947
12948 TUA9001 MEDIA DRIVER
12949 M:      Antti Palosaari <[email protected]>
12950 L:      [email protected]
12951 W:      https://linuxtv.org
12952 W:      http://palosaari.fi/linux/
12953 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12954 T:      git git://linuxtv.org/anttip/media_tree.git
12955 S:      Maintained
12956 F:      drivers/media/tuners/tua9001*
12957
12958 TULIP NETWORK DRIVERS
12959 L:      [email protected]
12960 L:      [email protected]
12961 S:      Orphan
12962 F:      drivers/net/ethernet/dec/tulip/
12963
12964 TUN/TAP driver
12965 M:      Maxim Krasnyansky <[email protected]>
12966 W:      http://vtun.sourceforge.net/tun
12967 S:      Maintained
12968 F:      Documentation/networking/tuntap.txt
12969 F:      arch/um/os-Linux/drivers/
12970
12971 TURBOCHANNEL SUBSYSTEM
12972 M:      "Maciej W. Rozycki" <[email protected]>
12973 M:      Ralf Baechle <[email protected]>
12974 L:      [email protected]
12975 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
12976 S:      Maintained
12977 F:      drivers/tc/
12978 F:      include/linux/tc.h
12979
12980 UBI FILE SYSTEM (UBIFS)
12981 M:      Richard Weinberger <[email protected]>
12982 M:      Artem Bityutskiy <[email protected]>
12983 M:      Adrian Hunter <[email protected]>
12984 L:      [email protected]
12985 T:      git git://git.infradead.org/ubifs-2.6.git
12986 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
12987 S:      Supported
12988 F:      Documentation/filesystems/ubifs.txt
12989 F:      fs/ubifs/
12990
12991 UCLINUX (M68KNOMMU AND COLDFIRE)
12992 M:      Greg Ungerer <[email protected]>
12993 W:      http://www.linux-m68k.org/
12994 W:      http://www.uclinux.org/
12995 L:      [email protected]
12996 L:      [email protected]  (subscribers-only)
12997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
12998 S:      Maintained
12999 F:      arch/m68k/coldfire/
13000 F:      arch/m68k/68*/
13001 F:      arch/m68k/*/*_no.*
13002 F:      arch/m68k/include/asm/*_no.*
13003
13004 UDF FILESYSTEM
13005 M:      Jan Kara <[email protected]>
13006 S:      Maintained
13007 F:      Documentation/filesystems/udf.txt
13008 F:      fs/udf/
13009
13010 UDRAW TABLET
13011 M:      Bastien Nocera <[email protected]>
13012 L:      [email protected]
13013 S:      Maintained
13014 F:      drivers/hid/hid-udraw.c
13015
13016 UFS FILESYSTEM
13017 M:      Evgeniy Dushistov <[email protected]>
13018 S:      Maintained
13019 F:      Documentation/filesystems/ufs.txt
13020 F:      fs/ufs/
13021
13022 UHID USERSPACE HID IO DRIVER:
13023 M:      David Herrmann <[email protected]>
13024 L:      [email protected]
13025 S:      Maintained
13026 F:      drivers/hid/uhid.c
13027 F:      include/uapi/linux/uhid.h
13028
13029 ULTRA-WIDEBAND (UWB) SUBSYSTEM:
13030 L:      [email protected]
13031 S:      Orphan
13032 F:      drivers/uwb/
13033 F:      include/linux/uwb.h
13034 F:      include/linux/uwb/
13035
13036 UNICORE32 ARCHITECTURE:
13037 M:      Guan Xuetao <[email protected]>
13038 W:      http://mprc.pku.edu.cn/~guanxuetao/linux
13039 S:      Maintained
13040 T:      git git://github.com/gxt/linux.git
13041 F:      arch/unicore32/
13042
13043 UNIFDEF
13044 M:      Tony Finch <[email protected]>
13045 W:      http://dotat.at/prog/unifdef
13046 S:      Maintained
13047 F:      scripts/unifdef.c
13048
13049 UNIFORM CDROM DRIVER
13050 M:      Jens Axboe <[email protected]>
13051 W:      http://www.kernel.dk
13052 S:      Maintained
13053 F:      Documentation/cdrom/
13054 F:      drivers/cdrom/cdrom.c
13055 F:      include/linux/cdrom.h
13056 F:      include/uapi/linux/cdrom.h
13057
13058 UNISYS S-PAR DRIVERS
13059 M:      David Kershner <[email protected]>
13060 L:      [email protected] (Unisys internal)
13061 S:      Supported
13062 F:      drivers/staging/unisys/
13063
13064 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
13065 M:      Vinayak Holikatti <[email protected]>
13066 L:      [email protected]
13067 S:      Supported
13068 F:      Documentation/scsi/ufs.txt
13069 F:      drivers/scsi/ufs/
13070
13071 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
13072 M:      Manjunath M Bettegowda <[email protected]>
13073 M:      Prabu Thangamuthu <[email protected]>
13074 L:      [email protected]
13075 S:      Supported
13076 F:      drivers/scsi/ufs/*dwc*
13077
13078 UNSORTED BLOCK IMAGES (UBI)
13079 M:      Artem Bityutskiy <[email protected]>
13080 M:      Richard Weinberger <[email protected]>
13081 W:      http://www.linux-mtd.infradead.org/
13082 L:      [email protected]
13083 T:      git git://git.infradead.org/ubifs-2.6.git
13084 S:      Supported
13085 F:      drivers/mtd/ubi/
13086 F:      include/linux/mtd/ubi.h
13087 F:      include/uapi/mtd/ubi-user.h
13088
13089 USB ACM DRIVER
13090 M:      Oliver Neukum <[email protected]>
13091 L:      [email protected]
13092 S:      Maintained
13093 F:      Documentation/usb/acm.txt
13094 F:      drivers/usb/class/cdc-acm.*
13095
13096 USB AR5523 WIRELESS DRIVER
13097 M:      Pontus Fuchs <[email protected]>
13098 L:      [email protected]
13099 S:      Maintained
13100 F:      drivers/net/wireless/ath/ar5523/
13101
13102 USB ATTACHED SCSI
13103 M:      Oliver Neukum <[email protected]>
13104 L:      [email protected]
13105 L:      [email protected]
13106 S:      Maintained
13107 F:      drivers/usb/storage/uas.c
13108
13109 USB CDC ETHERNET DRIVER
13110 M:      Oliver Neukum <[email protected]>
13111 L:      [email protected]
13112 S:      Maintained
13113 F:      drivers/net/usb/cdc_*.c
13114 F:      include/uapi/linux/usb/cdc.h
13115
13116 USB CHAOSKEY DRIVER
13117 M:      Keith Packard <[email protected]>
13118 L:      [email protected]
13119 S:      Maintained
13120 F:      drivers/usb/misc/chaoskey.c
13121
13122 USB CYPRESS C67X00 DRIVER
13123 M:      Peter Korsgaard <[email protected]>
13124 L:      [email protected]
13125 S:      Maintained
13126 F:      drivers/usb/c67x00/
13127
13128 USB DAVICOM DM9601 DRIVER
13129 M:      Peter Korsgaard <[email protected]>
13130 L:      [email protected]
13131 W:      http://www.linux-usb.org/usbnet
13132 S:      Maintained
13133 F:      drivers/net/usb/dm9601.c
13134
13135 USB DIAMOND RIO500 DRIVER
13136 M:      Cesar Miquel <[email protected]>
13137 L:      [email protected]
13138 W:      http://rio500.sourceforge.net
13139 S:      Maintained
13140 F:      drivers/usb/misc/rio500*
13141
13142 USB EHCI DRIVER
13143 M:      Alan Stern <[email protected]>
13144 L:      [email protected]
13145 S:      Maintained
13146 F:      Documentation/usb/ehci.txt
13147 F:      drivers/usb/host/ehci*
13148
13149 USB GADGET/PERIPHERAL SUBSYSTEM
13150 M:      Felipe Balbi <[email protected]>
13151 L:      [email protected]
13152 W:      http://www.linux-usb.org/gadget
13153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
13154 S:      Maintained
13155 F:      drivers/usb/gadget/
13156 F:      include/linux/usb/gadget*
13157
13158 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
13159 M:      Jiri Kosina <[email protected]>
13160 R:      Benjamin Tissoires <[email protected]>
13161 L:      [email protected]
13162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git
13163 S:      Maintained
13164 F:      Documentation/hid/hiddev.txt
13165 F:      drivers/hid/usbhid/
13166
13167 USB ISP116X DRIVER
13168 M:      Olav Kongas <[email protected]>
13169 L:      [email protected]
13170 S:      Maintained
13171 F:      drivers/usb/host/isp116x*
13172 F:      include/linux/usb/isp116x.h
13173
13174 USB LAN78XX ETHERNET DRIVER
13175 M:      Woojung Huh <[email protected]>
13176 M:      Microchip Linux Driver Support <[email protected]>
13177 L:      [email protected]
13178 S:      Maintained
13179 F:      drivers/net/usb/lan78xx.*
13180
13181 USB MASS STORAGE DRIVER
13182 M:      Alan Stern <[email protected]>
13183 L:      [email protected]
13184 L:      [email protected]
13185 S:      Maintained
13186 W:      http://www.one-eyed-alien.net/~mdharm/linux-usb/
13187 F:      drivers/usb/storage/
13188
13189 USB MIDI DRIVER
13190 M:      Clemens Ladisch <[email protected]>
13191 L:      [email protected] (moderated for non-subscribers)
13192 T:      git git://git.alsa-project.org/alsa-kernel.git
13193 S:      Maintained
13194 F:      sound/usb/midi.*
13195
13196 USB NETWORKING DRIVERS
13197 L:      [email protected]
13198 S:      Odd Fixes
13199 F:      drivers/net/usb/
13200
13201 USB OHCI DRIVER
13202 M:      Alan Stern <[email protected]>
13203 L:      [email protected]
13204 S:      Maintained
13205 F:      Documentation/usb/ohci.txt
13206 F:      drivers/usb/host/ohci*
13207
13208 USB OTG FSM (Finite State Machine)
13209 M:      Peter Chen <[email protected]>
13210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
13211 L:      [email protected]
13212 S:      Maintained
13213 F:      drivers/usb/common/usb-otg-fsm.c
13214
13215 USB OVER IP DRIVER
13216 M:      Valentina Manea <[email protected]>
13217 M:      Shuah Khan <[email protected]>
13218 M:      Shuah Khan <[email protected]>
13219 L:      [email protected]
13220 S:      Maintained
13221 F:      Documentation/usb/usbip_protocol.txt
13222 F:      drivers/usb/usbip/
13223 F:      tools/usb/usbip/
13224
13225 USB PEGASUS DRIVER
13226 M:      Petko Manolov <[email protected]>
13227 L:      [email protected]
13228 L:      [email protected]
13229 T:      git git://github.com/petkan/pegasus.git
13230 W:      https://github.com/petkan/pegasus
13231 S:      Maintained
13232 F:      drivers/net/usb/pegasus.*
13233
13234 USB PHY LAYER
13235 M:      Felipe Balbi <[email protected]>
13236 L:      [email protected]
13237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
13238 S:      Maintained
13239 F:      drivers/usb/phy/
13240
13241 USB PRINTER DRIVER (usblp)
13242 M:      Pete Zaitcev <[email protected]>
13243 L:      [email protected]
13244 S:      Supported
13245 F:      drivers/usb/class/usblp.c
13246
13247 USB QMI WWAN NETWORK DRIVER
13248 M:      Bjørn Mork <[email protected]>
13249 L:      [email protected]
13250 S:      Maintained
13251 F:      Documentation/ABI/testing/sysfs-class-net-qmi
13252 F:      drivers/net/usb/qmi_wwan.c
13253
13254 USB RTL8150 DRIVER
13255 M:      Petko Manolov <[email protected]>
13256 L:      [email protected]
13257 L:      [email protected]
13258 T:      git git://github.com/petkan/rtl8150.git
13259 W:      https://github.com/petkan/rtl8150
13260 S:      Maintained
13261 F:      drivers/net/usb/rtl8150.c
13262
13263 USB SERIAL SUBSYSTEM
13264 M:      Johan Hovold <[email protected]>
13265 L:      [email protected]
13266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
13267 S:      Maintained
13268 F:      Documentation/usb/usb-serial.txt
13269 F:      drivers/usb/serial/
13270 F:      include/linux/usb/serial.h
13271
13272 USB SMSC75XX ETHERNET DRIVER
13273 M:      Steve Glendinning <[email protected]>
13274 L:      [email protected]
13275 S:      Maintained
13276 F:      drivers/net/usb/smsc75xx.*
13277
13278 USB SMSC95XX ETHERNET DRIVER
13279 M:      Steve Glendinning <[email protected]>
13280 M:      Microchip Linux Driver Support <[email protected]>
13281 L:      [email protected]
13282 S:      Maintained
13283 F:      drivers/net/usb/smsc95xx.*
13284
13285 USB SUBSYSTEM
13286 M:      Greg Kroah-Hartman <[email protected]>
13287 L:      [email protected]
13288 W:      http://www.linux-usb.org
13289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
13290 S:      Supported
13291 F:      Documentation/devicetree/bindings/usb/
13292 F:      Documentation/usb/
13293 F:      drivers/usb/
13294 F:      include/linux/usb.h
13295 F:      include/linux/usb/
13296
13297 USB TYPEC SUBSYSTEM
13298 M:      Heikki Krogerus <[email protected]>
13299 L:      [email protected]
13300 S:      Maintained
13301 F:      Documentation/ABI/testing/sysfs-class-typec
13302 F:      Documentation/usb/typec.rst
13303 F:      drivers/usb/typec/
13304 F:      include/linux/usb/typec.h
13305
13306 USB UHCI DRIVER
13307 M:      Alan Stern <[email protected]>
13308 L:      [email protected]
13309 S:      Maintained
13310 F:      drivers/usb/host/uhci*
13311
13312 USB "USBNET" DRIVER FRAMEWORK
13313 M:      Oliver Neukum <[email protected]>
13314 L:      [email protected]
13315 W:      http://www.linux-usb.org/usbnet
13316 S:      Maintained
13317 F:      drivers/net/usb/usbnet.c
13318 F:      include/linux/usb/usbnet.h
13319
13320 USB VIDEO CLASS
13321 M:      Laurent Pinchart <[email protected]>
13322 L:      [email protected] (subscribers-only)
13323 L:      [email protected]
13324 T:      git git://linuxtv.org/media_tree.git
13325 W:      http://www.ideasonboard.org/uvc/
13326 S:      Maintained
13327 F:      drivers/media/usb/uvc/
13328 F:      include/uapi/linux/uvcvideo.h
13329
13330 USB VISION DRIVER
13331 M:      Hans Verkuil <[email protected]>
13332 L:      [email protected]
13333 T:      git git://linuxtv.org/media_tree.git
13334 W:      https://linuxtv.org
13335 S:      Odd Fixes
13336 F:      drivers/media/usb/usbvision/
13337
13338 USB WEBCAM GADGET
13339 M:      Laurent Pinchart <[email protected]>
13340 L:      [email protected]
13341 S:      Maintained
13342 F:      drivers/usb/gadget/function/*uvc*
13343 F:      drivers/usb/gadget/legacy/webcam.c
13344
13345 USB WIRELESS RNDIS DRIVER (rndis_wlan)
13346 M:      Jussi Kivilinna <[email protected]>
13347 L:      [email protected]
13348 S:      Maintained
13349 F:      drivers/net/wireless/rndis_wlan.c
13350
13351 USB XHCI DRIVER
13352 M:      Mathias Nyman <[email protected]>
13353 L:      [email protected]
13354 S:      Supported
13355 F:      drivers/usb/host/xhci*
13356 F:      drivers/usb/host/pci-quirks*
13357
13358 USB ZD1201 DRIVER
13359 L:      [email protected]
13360 W:      http://linux-lc100020.sourceforge.net
13361 S:      Orphan
13362 F:      drivers/net/wireless/zydas/zd1201.*
13363
13364 USB ZR364XX DRIVER
13365 M:      Antoine Jacquet <[email protected]>
13366 L:      [email protected]
13367 L:      [email protected]
13368 T:      git git://linuxtv.org/media_tree.git
13369 W:      http://royale.zerezo.com/zr364xx/
13370 S:      Maintained
13371 F:      Documentation/media/v4l-drivers/zr364xx*
13372 F:      drivers/media/usb/zr364xx/
13373
13374 ULPI BUS
13375 M:      Heikki Krogerus <[email protected]>
13376 L:      [email protected]
13377 S:      Maintained
13378 F:      drivers/usb/common/ulpi.c
13379 F:      include/linux/ulpi/
13380
13381 USER-MODE LINUX (UML)
13382 M:      Jeff Dike <[email protected]>
13383 M:      Richard Weinberger <[email protected]>
13384 L:      [email protected]
13385 L:      [email protected]
13386 W:      http://user-mode-linux.sourceforge.net
13387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
13388 S:      Maintained
13389 F:      Documentation/virtual/uml/
13390 F:      arch/um/
13391 F:      arch/x86/um/
13392 F:      fs/hostfs/
13393 F:      fs/hppfs/
13394
13395 USERSPACE I/O (UIO)
13396 M:      Greg Kroah-Hartman <[email protected]>
13397 S:      Maintained
13398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
13399 F:      Documentation/driver-api/uio-howto.rst
13400 F:      drivers/uio/
13401 F:      include/linux/uio*.h
13402
13403 UTIL-LINUX PACKAGE
13404 M:      Karel Zak <[email protected]>
13405 L:      [email protected]
13406 W:      http://en.wikipedia.org/wiki/Util-linux
13407 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
13408 S:      Maintained
13409
13410 UVESAFB DRIVER
13411 M:      Michal Januszewski <[email protected]>
13412 L:      [email protected]
13413 W:      http://dev.gentoo.org/~spock/projects/uvesafb/
13414 S:      Maintained
13415 F:      Documentation/fb/uvesafb.txt
13416 F:      drivers/video/fbdev/uvesafb.*
13417
13418 VF610 NAND DRIVER
13419 M:      Stefan Agner <[email protected]>
13420 L:      [email protected]
13421 S:      Supported
13422 F:      drivers/mtd/nand/vf610_nfc.c
13423
13424 VFAT/FAT/MSDOS FILESYSTEM
13425 M:      OGAWA Hirofumi <[email protected]>
13426 S:      Maintained
13427 F:      Documentation/filesystems/vfat.txt
13428 F:      fs/fat/
13429
13430 VFIO DRIVER
13431 M:      Alex Williamson <[email protected]>
13432 L:      [email protected]
13433 T:      git git://github.com/awilliam/linux-vfio.git
13434 S:      Maintained
13435 F:      Documentation/vfio.txt
13436 F:      drivers/vfio/
13437 F:      include/linux/vfio.h
13438 F:      include/uapi/linux/vfio.h
13439
13440 VFIO MEDIATED DEVICE DRIVERS
13441 M:      Kirti Wankhede <[email protected]>
13442 L:      [email protected]
13443 S:      Maintained
13444 F:      Documentation/vfio-mediated-device.txt
13445 F:      drivers/vfio/mdev/
13446 F:      include/linux/mdev.h
13447 F:      samples/vfio-mdev/
13448
13449 VFIO PLATFORM DRIVER
13450 M:      Baptiste Reynal <[email protected]>
13451 L:      [email protected]
13452 S:      Maintained
13453 F:      drivers/vfio/platform/
13454
13455 VGA_SWITCHEROO
13456 R:      Lukas Wunner <[email protected]>
13457 S:      Maintained
13458 F:      Documentation/gpu/vga-switcheroo.rst
13459 F:      drivers/gpu/vga/vga_switcheroo.c
13460 F:      include/linux/vga_switcheroo.h
13461 T:      git git://anongit.freedesktop.org/drm/drm-misc
13462
13463 VIDEOBUF2 FRAMEWORK
13464 M:      Pawel Osciak <[email protected]>
13465 M:      Marek Szyprowski <[email protected]>
13466 M:      Kyungmin Park <[email protected]>
13467 L:      [email protected]
13468 S:      Maintained
13469 F:      drivers/media/v4l2-core/videobuf2-*
13470 F:      include/media/videobuf2-*
13471
13472 VIRTIO AND VHOST VSOCK DRIVER
13473 M:      Stefan Hajnoczi <[email protected]>
13474 L:      [email protected]
13475 L:      [email protected]
13476 L:      [email protected]
13477 S:      Maintained
13478 F:      include/linux/virtio_vsock.h
13479 F:      include/uapi/linux/virtio_vsock.h
13480 F:      include/uapi/linux/vsockmon.h
13481 F:      net/vmw_vsock/af_vsock_tap.c
13482 F:      net/vmw_vsock/virtio_transport_common.c
13483 F:      net/vmw_vsock/virtio_transport.c
13484 F:      drivers/net/vsockmon.c
13485 F:      drivers/vhost/vsock.c
13486 F:      drivers/vhost/vsock.h
13487
13488 VIRTUAL SERIO DEVICE DRIVER
13489 M:      Stephen Chandler Paul <[email protected]>
13490 S:      Maintained
13491 F:      drivers/input/serio/userio.c
13492 F:      include/uapi/linux/userio.h
13493
13494 VIRTIO CONSOLE DRIVER
13495 M:      Amit Shah <[email protected]>
13496 L:      [email protected]
13497 S:      Maintained
13498 F:      drivers/char/virtio_console.c
13499 F:      include/linux/virtio_console.h
13500 F:      include/uapi/linux/virtio_console.h
13501
13502 VIRTIO CORE, NET AND BLOCK DRIVERS
13503 M:      "Michael S. Tsirkin" <[email protected]>
13504 M:      Jason Wang <[email protected]>
13505 L:      [email protected]
13506 S:      Maintained
13507 F:      Documentation/devicetree/bindings/virtio/
13508 F:      drivers/virtio/
13509 F:      tools/virtio/
13510 F:      drivers/net/virtio_net.c
13511 F:      drivers/block/virtio_blk.c
13512 F:      include/linux/virtio*.h
13513 F:      include/uapi/linux/virtio_*.h
13514 F:      drivers/crypto/virtio/
13515
13516 VIRTIO DRIVERS FOR S390
13517 M:      Christian Borntraeger <[email protected]>
13518 M:      Cornelia Huck <[email protected]>
13519 L:      [email protected]
13520 L:      [email protected]
13521 L:      [email protected]
13522 S:      Supported
13523 F:      drivers/s390/virtio/
13524
13525 VIRTIO GPU DRIVER
13526 M:      David Airlie <[email protected]>
13527 M:      Gerd Hoffmann <[email protected]>
13528 L:      [email protected]
13529 L:      [email protected]
13530 T:      git git://anongit.freedesktop.org/drm/drm-misc
13531 S:      Maintained
13532 F:      drivers/gpu/drm/virtio/
13533 F:      include/uapi/linux/virtio_gpu.h
13534
13535 VIRTIO HOST (VHOST)
13536 M:      "Michael S. Tsirkin" <[email protected]>
13537 M:      Jason Wang <[email protected]>
13538 L:      [email protected]
13539 L:      [email protected]
13540 L:      [email protected]
13541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
13542 S:      Maintained
13543 F:      drivers/vhost/
13544 F:      include/uapi/linux/vhost.h
13545
13546 VIRTIO INPUT DRIVER
13547 M:      Gerd Hoffmann <[email protected]>
13548 S:      Maintained
13549 F:      drivers/virtio/virtio_input.c
13550 F:      include/uapi/linux/virtio_input.h
13551
13552 VIRTIO CRYPTO DRIVER
13553 M:  Gonglei <[email protected]>
13554 L:  [email protected]
13555 L:  [email protected]
13556 S:  Maintained
13557 F:  drivers/crypto/virtio/
13558 F:  include/uapi/linux/virtio_crypto.h
13559
13560 VIA RHINE NETWORK DRIVER
13561 S:      Orphan
13562 F:      drivers/net/ethernet/via/via-rhine.c
13563
13564 VIA SD/MMC CARD CONTROLLER DRIVER
13565 M:      Bruce Chang <[email protected]>
13566 M:      Harald Welte <[email protected]>
13567 S:      Maintained
13568 F:      drivers/mmc/host/via-sdmmc.c
13569
13570 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
13571 M:      Florian Tobias Schandinat <[email protected]>
13572 L:      [email protected]
13573 S:      Maintained
13574 F:      include/linux/via-core.h
13575 F:      include/linux/via-gpio.h
13576 F:      include/linux/via_i2c.h
13577 F:      drivers/video/fbdev/via/
13578
13579 VIA VELOCITY NETWORK DRIVER
13580 M:      Francois Romieu <[email protected]>
13581 L:      [email protected]
13582 S:      Maintained
13583 F:      drivers/net/ethernet/via/via-velocity.*
13584
13585 VIRT LIB
13586 M:      Alex Williamson <[email protected]>
13587 M:      Paolo Bonzini <[email protected]>
13588 L:      [email protected]
13589 S:      Supported
13590 F:      virt/lib/
13591
13592 VIVID VIRTUAL VIDEO DRIVER
13593 M:      Hans Verkuil <[email protected]>
13594 L:      [email protected]
13595 T:      git git://linuxtv.org/media_tree.git
13596 W:      https://linuxtv.org
13597 S:      Maintained
13598 F:      drivers/media/platform/vivid/*
13599
13600 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
13601 M:      Helen Koike <[email protected]>
13602 L:      [email protected]
13603 T:      git git://linuxtv.org/media_tree.git
13604 W:      https://linuxtv.org
13605 S:      Maintained
13606 F:      drivers/media/platform/vimc/*
13607
13608 VLYNQ BUS
13609 M:      Florian Fainelli <[email protected]>
13610 L:      [email protected] (subscribers-only)
13611 S:      Maintained
13612 F:      drivers/vlynq/vlynq.c
13613 F:      include/linux/vlynq.h
13614
13615 VME SUBSYSTEM
13616 M:      Martyn Welch <[email protected]>
13617 M:      Manohar Vanga <[email protected]>
13618 M:      Greg Kroah-Hartman <[email protected]>
13619 L:      [email protected]
13620 S:      Maintained
13621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
13622 F:      Documentation/driver-api/vme.rst
13623 F:      drivers/staging/vme/
13624 F:      drivers/vme/
13625 F:      include/linux/vme*
13626
13627 VMWARE HYPERVISOR INTERFACE
13628 M:      Alok Kataria <[email protected]>
13629 L:      [email protected]
13630 S:      Supported
13631 F:      arch/x86/kernel/cpu/vmware.c
13632
13633 VMWARE BALLOON DRIVER
13634 M:      Xavier Deguillard <[email protected]>
13635 M:      Philip Moltmann <[email protected]>
13636 M:      "VMware, Inc." <[email protected]>
13637 L:      [email protected]
13638 S:      Maintained
13639 F:      drivers/misc/vmw_balloon.c
13640
13641 VMWARE VMMOUSE SUBDRIVER
13642 M:      "VMware Graphics" <[email protected]>
13643 M:      "VMware, Inc." <[email protected]>
13644 L:      [email protected]
13645 S:      Maintained
13646 F:      drivers/input/mouse/vmmouse.c
13647 F:      drivers/input/mouse/vmmouse.h
13648
13649 VMWARE VMXNET3 ETHERNET DRIVER
13650 M:      Shrikrishna Khare <[email protected]>
13651 M:      "VMware, Inc." <[email protected]>
13652 L:      [email protected]
13653 S:      Maintained
13654 F:      drivers/net/vmxnet3/
13655
13656 VMware PVSCSI driver
13657 M:      Jim Gill <[email protected]>
13658 M:      VMware PV-Drivers <[email protected]>
13659 L:      [email protected]
13660 S:      Maintained
13661 F:      drivers/scsi/vmw_pvscsi.c
13662 F:      drivers/scsi/vmw_pvscsi.h
13663
13664 VMWARE PVRDMA DRIVER
13665 M:      Adit Ranadive <[email protected]>
13666 M:      VMware PV-Drivers <[email protected]>
13667 L:      [email protected]
13668 S:      Maintained
13669 F:      drivers/infiniband/hw/vmw_pvrdma/
13670
13671 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
13672 M:      Liam Girdwood <[email protected]>
13673 M:      Mark Brown <[email protected]>
13674 L:      [email protected]
13675 W:      http://www.slimlogic.co.uk/?p=48
13676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
13677 S:      Supported
13678 F:      Documentation/devicetree/bindings/regulator/
13679 F:      drivers/regulator/
13680 F:      include/dt-bindings/regulator/
13681 F:      include/linux/regulator/
13682
13683 VRF
13684 M:      David Ahern <[email protected]>
13685 M:      Shrijeet Mukherjee <[email protected]>
13686 L:      [email protected]
13687 S:      Maintained
13688 F:      drivers/net/vrf.c
13689 F:      Documentation/networking/vrf.txt
13690
13691 VT1211 HARDWARE MONITOR DRIVER
13692 M:      Juerg Haefliger <[email protected]>
13693 L:      [email protected]
13694 S:      Maintained
13695 F:      Documentation/hwmon/vt1211
13696 F:      drivers/hwmon/vt1211.c
13697
13698 VT8231 HARDWARE MONITOR DRIVER
13699 M:      Roger Lucas <[email protected]>
13700 L:      [email protected]
13701 S:      Maintained
13702 F:      drivers/hwmon/vt8231.c
13703
13704 VUB300 USB to SDIO/SD/MMC bridge chip
13705 M:      Tony Olech <[email protected]>
13706 L:      [email protected]
13707 L:      [email protected]
13708 S:      Supported
13709 F:      drivers/mmc/host/vub300.c
13710
13711 W1 DALLAS'S 1-WIRE BUS
13712 M:      Evgeniy Polyakov <[email protected]>
13713 S:      Maintained
13714 F:      Documentation/w1/
13715 F:      drivers/w1/
13716
13717 W83791D HARDWARE MONITORING DRIVER
13718 M:      Marc Hulsman <[email protected]>
13719 L:      [email protected]
13720 S:      Maintained
13721 F:      Documentation/hwmon/w83791d
13722 F:      drivers/hwmon/w83791d.c
13723
13724 W83793 HARDWARE MONITORING DRIVER
13725 M:      Rudolf Marek <[email protected]>
13726 L:      [email protected]
13727 S:      Maintained
13728 F:      Documentation/hwmon/w83793
13729 F:      drivers/hwmon/w83793.c
13730
13731 W83795 HARDWARE MONITORING DRIVER
13732 M:      Jean Delvare <[email protected]>
13733 L:      [email protected]
13734 S:      Maintained
13735 F:      drivers/hwmon/w83795.c
13736
13737 W83L51xD SD/MMC CARD INTERFACE DRIVER
13738 M:      Pierre Ossman <[email protected]>
13739 S:      Maintained
13740 F:      drivers/mmc/host/wbsd.*
13741
13742 WACOM PROTOCOL 4 SERIAL TABLETS
13743 M:      Julian Squires <[email protected]>
13744 M:      Hans de Goede <[email protected]>
13745 L:      [email protected]
13746 S:      Maintained
13747 F:      drivers/input/tablet/wacom_serial4.c
13748
13749 WATCHDOG DEVICE DRIVERS
13750 M:      Wim Van Sebroeck <[email protected]>
13751 R:      Guenter Roeck <[email protected]>
13752 L:      [email protected]
13753 W:      http://www.linux-watchdog.org/
13754 T:      git git://www.linux-watchdog.org/linux-watchdog.git
13755 S:      Maintained
13756 F:      Documentation/devicetree/bindings/watchdog/
13757 F:      Documentation/watchdog/
13758 F:      drivers/watchdog/
13759 F:      include/linux/watchdog.h
13760 F:      include/uapi/linux/watchdog.h
13761
13762 WIIMOTE HID DRIVER
13763 M:      David Herrmann <[email protected]>
13764 L:      [email protected]
13765 S:      Maintained
13766 F:      drivers/hid/hid-wiimote*
13767
13768 WINBOND CIR DRIVER
13769 M:      David Härdeman <[email protected]>
13770 S:      Maintained
13771 F:      drivers/media/rc/winbond-cir.c
13772
13773 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
13774 M:      William Breathitt Gray <[email protected]>
13775 L:      [email protected]
13776 S:      Maintained
13777 F:      drivers/watchdog/ebc-c384_wdt.c
13778
13779 WINSYSTEMS WS16C48 GPIO DRIVER
13780 M:      William Breathitt Gray <[email protected]>
13781 L:      [email protected]
13782 S:      Maintained
13783 F:      drivers/gpio/gpio-ws16c48.c
13784
13785 WIMAX STACK
13786 M:      Inaky Perez-Gonzalez <[email protected]>
13787 M:      [email protected]
13788 L:      [email protected] (subscribers-only)
13789 S:      Supported
13790 W:      http://linuxwimax.org
13791 F:      Documentation/wimax/README.wimax
13792 F:      include/linux/wimax/debug.h
13793 F:      include/net/wimax.h
13794 F:      include/uapi/linux/wimax.h
13795 F:      net/wimax/
13796
13797 WISTRON LAPTOP BUTTON DRIVER
13798 M:      Miloslav Trmac <[email protected]>
13799 S:      Maintained
13800 F:      drivers/input/misc/wistron_btns.c
13801
13802 WL3501 WIRELESS PCMCIA CARD DRIVER
13803 L:      [email protected]
13804 S:      Odd fixes
13805 F:      drivers/net/wireless/wl3501*
13806
13807 WOLFSON MICROELECTRONICS DRIVERS
13808 L:      [email protected]
13809 T:      git https://github.com/CirrusLogic/linux-drivers.git
13810 W:      https://github.com/CirrusLogic/linux-drivers/wiki
13811 S:      Supported
13812 F:      Documentation/hwmon/wm83??
13813 F:      Documentation/devicetree/bindings/extcon/extcon-arizona.txt
13814 F:      Documentation/devicetree/bindings/regulator/arizona-regulator.txt
13815 F:      Documentation/devicetree/bindings/mfd/arizona.txt
13816 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
13817 F:      arch/arm/mach-s3c64xx/mach-crag6410*
13818 F:      drivers/clk/clk-wm83*.c
13819 F:      drivers/extcon/extcon-arizona.c
13820 F:      drivers/leds/leds-wm83*.c
13821 F:      drivers/gpio/gpio-*wm*.c
13822 F:      drivers/gpio/gpio-arizona.c
13823 F:      drivers/hwmon/wm83??-hwmon.c
13824 F:      drivers/input/misc/wm831x-on.c
13825 F:      drivers/input/touchscreen/wm831x-ts.c
13826 F:      drivers/input/touchscreen/wm97*.c
13827 F:      drivers/mfd/arizona*
13828 F:      drivers/mfd/wm*.c
13829 F:      drivers/mfd/cs47l24*
13830 F:      drivers/power/supply/wm83*.c
13831 F:      drivers/rtc/rtc-wm83*.c
13832 F:      drivers/regulator/wm8*.c
13833 F:      drivers/regulator/arizona*
13834 F:      drivers/video/backlight/wm83*_bl.c
13835 F:      drivers/watchdog/wm83*_wdt.c
13836 F:      include/linux/mfd/arizona/
13837 F:      include/linux/mfd/wm831x/
13838 F:      include/linux/mfd/wm8350/
13839 F:      include/linux/mfd/wm8400*
13840 F:      include/linux/regulator/arizona*
13841 F:      include/linux/wm97xx.h
13842 F:      include/sound/wm????.h
13843 F:      sound/soc/codecs/arizona.?
13844 F:      sound/soc/codecs/wm*
13845 F:      sound/soc/codecs/cs47l24*
13846
13847 WORKQUEUE
13848 M:      Tejun Heo <[email protected]>
13849 R:      Lai Jiangshan <[email protected]>
13850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
13851 S:      Maintained
13852 F:      include/linux/workqueue.h
13853 F:      kernel/workqueue.c
13854 F:      Documentation/core-api/workqueue.rst
13855
13856 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
13857 M:      Chen-Yu Tsai <[email protected]>
13858 L:      [email protected]
13859 S:      Maintained
13860 N:      axp[128]
13861
13862 X.25 NETWORK LAYER
13863 M:      Andrew Hendry <[email protected]>
13864 L:      [email protected]
13865 S:      Odd Fixes
13866 F:      Documentation/networking/x25*
13867 F:      include/net/x25*
13868 F:      net/x25/
13869
13870 X86 ARCHITECTURE (32-BIT AND 64-BIT)
13871 M:      Thomas Gleixner <[email protected]>
13872 M:      Ingo Molnar <[email protected]>
13873 M:      "H. Peter Anvin" <[email protected]>
13874 M:      [email protected]
13875 L:      [email protected]
13876 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
13877 S:      Maintained
13878 F:      Documentation/x86/
13879 F:      arch/x86/
13880
13881 X86 PLATFORM DRIVERS
13882 M:      Darren Hart <[email protected]>
13883 M:      Andy Shevchenko <[email protected]>
13884 L:      [email protected]
13885 T:      git git://git.infradead.org/users/dvhart/linux-platform-drivers-x86.git
13886 S:      Maintained
13887 F:      drivers/platform/x86/
13888 F:      drivers/platform/olpc/
13889
13890 X86 MCE INFRASTRUCTURE
13891 M:      Tony Luck <[email protected]>
13892 M:      Borislav Petkov <[email protected]>
13893 L:      [email protected]
13894 S:      Maintained
13895 F:      arch/x86/kernel/cpu/mcheck/*
13896
13897 X86 MICROCODE UPDATE SUPPORT
13898 M:      Borislav Petkov <[email protected]>
13899 S:      Maintained
13900 F:      arch/x86/kernel/cpu/microcode/*
13901
13902 X86 VDSO
13903 M:      Andy Lutomirski <[email protected]>
13904 L:      [email protected]
13905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
13906 S:      Maintained
13907 F:      arch/x86/entry/vdso/
13908
13909 XC2028/3028 TUNER DRIVER
13910 M:      Mauro Carvalho Chehab <[email protected]>
13911 M:      Mauro Carvalho Chehab <[email protected]>
13912 L:      [email protected]
13913 W:      https://linuxtv.org
13914 T:      git git://linuxtv.org/media_tree.git
13915 S:      Maintained
13916 F:      drivers/media/tuners/tuner-xc2028.*
13917
13918 XEN HYPERVISOR INTERFACE
13919 M:      Boris Ostrovsky <[email protected]>
13920 M:      Juergen Gross <[email protected]>
13921 L:      [email protected] (moderated for non-subscribers)
13922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
13923 S:      Supported
13924 F:      arch/x86/xen/
13925 F:      drivers/*/xen-*front.c
13926 F:      drivers/xen/
13927 F:      arch/x86/include/asm/xen/
13928 F:      include/xen/
13929 F:      include/uapi/xen/
13930
13931 XEN HYPERVISOR ARM
13932 M:      Stefano Stabellini <[email protected]>
13933 L:      [email protected] (moderated for non-subscribers)
13934 S:      Maintained
13935 F:      arch/arm/xen/
13936 F:      arch/arm/include/asm/xen/
13937
13938 XEN HYPERVISOR ARM64
13939 M:      Stefano Stabellini <[email protected]>
13940 L:      [email protected] (moderated for non-subscribers)
13941 S:      Maintained
13942 F:      arch/arm64/xen/
13943 F:      arch/arm64/include/asm/xen/
13944
13945 XEN NETWORK BACKEND DRIVER
13946 M:      Wei Liu <[email protected]>
13947 M:      Paul Durrant <[email protected]>
13948 L:      [email protected] (moderated for non-subscribers)
13949 L:      [email protected]
13950 S:      Supported
13951 F:      drivers/net/xen-netback/*
13952
13953 XEN PCI SUBSYSTEM
13954 M:      Konrad Rzeszutek Wilk <[email protected]>
13955 L:      [email protected] (moderated for non-subscribers)
13956 S:      Supported
13957 F:      arch/x86/pci/*xen*
13958 F:      drivers/pci/*xen*
13959
13960 XEN BLOCK SUBSYSTEM
13961 M:      Konrad Rzeszutek Wilk <[email protected]>
13962 M:      Roger Pau Monné <[email protected]>
13963 L:      [email protected] (moderated for non-subscribers)
13964 S:      Supported
13965 F:      drivers/block/xen-blkback/*
13966 F:      drivers/block/xen*
13967
13968 XEN PVSCSI DRIVERS
13969 M:      Juergen Gross <[email protected]>
13970 L:      [email protected] (moderated for non-subscribers)
13971 L:      [email protected]
13972 S:      Supported
13973 F:      drivers/scsi/xen-scsifront.c
13974 F:      drivers/xen/xen-scsiback.c
13975 F:      include/xen/interface/io/vscsiif.h
13976
13977 XEN SWIOTLB SUBSYSTEM
13978 M:      Konrad Rzeszutek Wilk <[email protected]>
13979 L:      [email protected] (moderated for non-subscribers)
13980 S:      Supported
13981 F:      arch/x86/xen/*swiotlb*
13982 F:      drivers/xen/*swiotlb*
13983
13984 XFS FILESYSTEM
13985 M:      Darrick J. Wong <[email protected]>
13986 M:      [email protected]
13987 L:      [email protected]
13988 W:      http://xfs.org/
13989 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
13990 S:      Supported
13991 F:      Documentation/filesystems/xfs.txt
13992 F:      fs/xfs/
13993
13994 XILINX AXI ETHERNET DRIVER
13995 M:      Anirudha Sarangi <[email protected]>
13996 M:      John Linn <[email protected]>
13997 S:      Maintained
13998 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
13999
14000 XILINX UARTLITE SERIAL DRIVER
14001 M:      Peter Korsgaard <[email protected]>
14002 L:      [email protected]
14003 S:      Maintained
14004 F:      drivers/tty/serial/uartlite.c
14005
14006 XILINX VIDEO IP CORES
14007 M:      Hyun Kwon <[email protected]>
14008 M:      Laurent Pinchart <[email protected]>
14009 L:      [email protected]
14010 T:      git git://linuxtv.org/media_tree.git
14011 S:      Supported
14012 F:      Documentation/devicetree/bindings/media/xilinx/
14013 F:      drivers/media/platform/xilinx/
14014 F:      include/uapi/linux/xilinx-v4l2-controls.h
14015
14016 XILLYBUS DRIVER
14017 M:      Eli Billauer <[email protected]>
14018 L:      [email protected]
14019 S:      Supported
14020 F:      drivers/char/xillybus/
14021
14022 XTENSA XTFPGA PLATFORM SUPPORT
14023 M:      Max Filippov <[email protected]>
14024 L:      [email protected]
14025 S:      Maintained
14026 F:      drivers/spi/spi-xtensa-xtfpga.c
14027 F:      sound/soc/xtensa/xtfpga-i2s.c
14028
14029 YAM DRIVER FOR AX.25
14030 M:      Jean-Paul Roubelat <[email protected]>
14031 L:      [email protected]
14032 S:      Maintained
14033 F:      drivers/net/hamradio/yam*
14034 F:      include/linux/yam.h
14035
14036 YEALINK PHONE DRIVER
14037 M:      Henk Vergonet <[email protected]>
14038 L:      [email protected]
14039 S:      Maintained
14040 F:      Documentation/input/yealink.rst
14041 F:      drivers/input/misc/yealink.*
14042
14043 Z8530 DRIVER FOR AX.25
14044 M:      Joerg Reuter <[email protected]>
14045 W:      http://yaina.de/jreuter/
14046 W:      http://www.qsl.net/dl1bke/
14047 L:      [email protected]
14048 S:      Maintained
14049 F:      Documentation/networking/z8530drv.txt
14050 F:      drivers/net/hamradio/*scc.c
14051 F:      drivers/net/hamradio/z8530.h
14052
14053 ZBUD COMPRESSED PAGE ALLOCATOR
14054 M:      Seth Jennings <[email protected]>
14055 M:      Dan Streetman <[email protected]>
14056 L:      [email protected]
14057 S:      Maintained
14058 F:      mm/zbud.c
14059 F:      include/linux/zbud.h
14060
14061 ZD1211RW WIRELESS DRIVER
14062 M:      Daniel Drake <[email protected]>
14063 M:      Ulrich Kunitz <[email protected]>
14064 W:      http://zd1211.ath.cx/wiki/DriverRewrite
14065 L:      [email protected]
14066 L:      [email protected] (subscribers-only)
14067 S:      Maintained
14068 F:      drivers/net/wireless/zydas/zd1211rw/
14069
14070 ZD1301_DEMOD MEDIA DRIVER
14071 M:      Antti Palosaari <[email protected]>
14072 L:      [email protected]
14073 W:      https://linuxtv.org/
14074 W:      http://palosaari.fi/linux/
14075 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14076 S:      Maintained
14077 F:      drivers/media/dvb-frontends/zd1301_demod*
14078
14079 ZD1301 MEDIA DRIVER
14080 M:      Antti Palosaari <[email protected]>
14081 L:      [email protected]
14082 W:      https://linuxtv.org/
14083 W:      http://palosaari.fi/linux/
14084 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
14085 S:      Maintained
14086 F:      drivers/media/usb/dvb-usb-v2/zd1301*
14087
14088 ZPOOL COMPRESSED PAGE STORAGE API
14089 M:      Dan Streetman <[email protected]>
14090 L:      [email protected]
14091 S:      Maintained
14092 F:      mm/zpool.c
14093 F:      include/linux/zpool.h
14094
14095 ZR36067 VIDEO FOR LINUX DRIVER
14096 L:      [email protected]
14097 L:      [email protected]
14098 W:      http://mjpeg.sourceforge.net/driver-zoran/
14099 T:      hg https://linuxtv.org/hg/v4l-dvb
14100 S:      Odd Fixes
14101 F:      drivers/media/pci/zoran/
14102
14103 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
14104 M:      Minchan Kim <[email protected]>
14105 M:      Nitin Gupta <[email protected]>
14106 R:      Sergey Senozhatsky <[email protected]>
14107 L:      [email protected]
14108 S:      Maintained
14109 F:      drivers/block/zram/
14110 F:      Documentation/blockdev/zram.txt
14111
14112 ZS DECSTATION Z85C30 SERIAL DRIVER
14113 M:      "Maciej W. Rozycki" <[email protected]>
14114 S:      Maintained
14115 F:      drivers/tty/serial/zs.*
14116
14117 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
14118 M:      Minchan Kim <[email protected]>
14119 M:      Nitin Gupta <[email protected]>
14120 R:      Sergey Senozhatsky <[email protected]>
14121 L:      [email protected]
14122 S:      Maintained
14123 F:      mm/zsmalloc.c
14124 F:      include/linux/zsmalloc.h
14125 F:      Documentation/vm/zsmalloc.txt
14126
14127 ZSWAP COMPRESSED SWAP CACHING
14128 M:      Seth Jennings <[email protected]>
14129 M:      Dan Streetman <[email protected]>
14130 L:      [email protected]
14131 S:      Maintained
14132 F:      mm/zswap.c
14133
14134 THE REST
14135 M:      Linus Torvalds <[email protected]>
14136 L:      [email protected]
14137 Q:      http://patchwork.kernel.org/project/LKML/list/
14138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
14139 S:      Buried alive in reporters
14140 F:      *
14141 F:      */
This page took 0.81235 seconds and 4 git commands to generate.