MAINTAINERS.yml 52.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# This file contains information on who maintains what. It is parsed by
# get_maintainer.py.
#
# File format
# ###########
#
# "Area title" (the quotes are only needed for titles with special characters,
#  like colons):
#     status:
#         One of the following:
#
#         * maintained:
#             The area has a Maintainer (approved by the TSC) who
#             looks after the area.
#
16
#         * odd fixes:
17
#            The area gets odd fixes and may have collaborators.
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
#
#         * obsolete:
#             Old code. Something being marked obsolete generally means it has
#             been replaced by something better that you should be using
#             instead.
#
#     maintainers:
#         List of GitHub handles for the people who maintain the area. Usually,
#         there's only one maintainer.
#
#     collaborators (not to be confused with the GitHub collaborator role):
#         Very involved contributors, who know the area well and contribute
#         significantly to it.
#
#     labels:
#         List of GitHub labels to add to pull requests that modify the area.
#
#     files:
#         List of paths and/or glob patterns giving the files in the area,
#         relative to the root directory.
#
#         If a path or glob pattern ends in a '/', it matches all files within
#         the given directory or directories. Otherwise, an exact match is
#         required.
#
#         Paths to directories should always have a trailing '/'.
#
#     files-regex:
#         List of regular expressions applied to paths to determine if they
#         belong to the area. The regular expression may match anywhere within
#         the path, but can be anchored with ^ and $ as usual.
#
#         Can be combined with a 'files' key.
#
#         Note: Prefer plain 'files' patterns where possible. get_maintainer.py
#         will check that they match some file, but won't check regexes
#         (because it might be slow).
#
#     files-exclude:
#         Like 'files', but any matching files will be excluded from the area.
#
#     files-regex-exclude:
#         Like 'files-regex', but any matching files will be excluded from the
#         area.
#
#     description: >-
#         Plain-English description. Describe what the system is about, from an
#         outsider's perspective.
#
#
# All areas must have a 'files' and/or 'files-regex' key. The other keys are
# optional.
#
# It is very advisable to have a `status` key in all entries. Exceptions to
# this would be sub-areas which add extra fields (for ex. more `collaborators`
# who work only in that sub-area) to other areas.
#
#
# Workflow
# ########
#
# Ideally, any file in the tree will be covered by some area.
#
# When a GitHub pull request is sent, this happens:
#
#     * A user mentioned in 'maintainers' is added as Assignee to
#       the pull request
#
#     * Users mentioned in 'maintainers' and 'collaborators' are added as
#       reviewers to the pull request
#
#     * The labels listed in 'labels' are automatically added to the pull
#       request
#
#     * The bot posts this comment:
#
#         This PR affects the following areas:
#         <area name>:
#           Status: ...
#           Maintainers: <list of maintainers>
#           Collaborators: <list of sub-maintainers>
#
#         <area name>:
#           ...
#
#
# Changes to MAINTAINERS.yml need to be approved as follows:
#
#     * Changing the 'maintainers' for an area needs approval from the
#       Technical Steering Committee
#
#     * Changing the 'collaborators' lines requires the maintainer and
#       collaborators of that area to agree (or vote on it)

# Areas are sorted by name

ARC arch:
    status: maintained
    maintainers:
        - ruuddw
    collaborators:
        - abrodkin
        - evgeniy-paltsev
        - IRISZZW
    files:
        - arch/arc/
124
        - include/zephyr/arch/arc/
125 126 127 128 129 130
    labels:
        - "area: ARC"

ARM arch:
    status: maintained
    maintainers:
131
        - microbuilder
132 133 134 135 136
    collaborators:
        - carlocaione
        - galak
        - MaureenHelm
        - stephanosio
137
        - bbolen
138
        - povergoing
139
    files:
Anas Nashif's avatar
Anas Nashif committed
140 141
        - arch/arm/
        - arch/arm/core/offsets/
142 143
        - include/zephyr/arch/arm/aarch32/
        - include/zephyr/arch/arm/
144 145 146 147
        - tests/arch/arm/
    labels:
        - "area: ARM"

148 149 150 151 152 153
ARM64 arch:
    status: maintained
    maintainers:
        - carlocaione
    collaborators:
        - npitre
154
        - povergoing
155
        - sgrrzhf
156
    files:
157
        - arch/arm64/
158
        - include/zephyr/arch/arm64/
159
        - tests/arch/arm64/
160 161
        - soc/arm64/
        - boards/arm64/
162
        - dts/arm64/
163 164 165
    labels:
        - "area: ARM64"

166 167 168 169 170
Bluetooth:
    status: maintained
    maintainers:
        - jhedberg
    collaborators:
171
        - hermabe
172
        - jori-nordic
173
        - alwa-nordic
174
        - Vudentz
175 176
        - Thalley
        - asbjornsabo
177
        - sjanc
178
    files:
179
        - doc/connectivity/bluetooth/
180
        - drivers/bluetooth/
181 182
        - include/zephyr/bluetooth/
        - include/zephyr/drivers/bluetooth/
183
        - samples/bluetooth/
Anas Nashif's avatar
Anas Nashif committed
184
        - subsys/bluetooth/
185 186 187 188
        - subsys/bluetooth/common/
        - subsys/bluetooth/host/
        - subsys/bluetooth/services/
        - subsys/bluetooth/shell/
189
        - tests/bluetooth/
190
    files-exclude:
191
        - include/zephyr/bluetooth/mesh/
192 193 194
        - subsys/bluetooth/controller/
        - subsys/bluetooth/mesh/
        - samples/bluetooth/mesh/
195
        - subsys/bluetooth/audio/
196
        - include/zephyr/bluetooth/audio/
197
        - tests/bluetooth/bsim_bt/bsim_test_audio/
Anas Nashif's avatar
Anas Nashif committed
198 199 200
        - tests/bluetooth/controller/
        - tests/bluetooth/mesh_*/
        - tests/bluetooth/mesh/
201 202 203 204 205 206 207 208 209 210
    labels:
        - "area: Bluetooth"

Bluetooth controller:
    status: maintained
    maintainers:
        - cvinayak
    collaborators:
        - carlescufi
        - thoh-ot
211
        - kruithofa
212
        - ppryga
213 214
        - mtpr-ot
        - wopu-ot
215
        - erbr-ot
216 217
    files:
        - subsys/bluetooth/controller/
Anas Nashif's avatar
Anas Nashif committed
218
        - tests/bluetooth/controller/
Anas Nashif's avatar
Anas Nashif committed
219 220
    labels:
        - "area: Bluetooth Controller"
221
        - "area: Bluetooth"
222 223 224 225

Bluetooth Mesh:
    status: maintained
    maintainers:
226
        - PavelVPV
227 228
    collaborators:
        - jhedberg
229
        - LingaoM
230
        - alxelax
231 232
    files:
        - subsys/bluetooth/mesh/
233
        - include/zephyr/bluetooth/mesh/
234
        - tests/bluetooth/mesh*/
235 236
    labels:
        - "area: Bluetooth Mesh"
237
        - "area: Bluetooth"
238

239 240 241 242 243 244 245 246 247 248 249
Bluetooth Audio:
    status: maintained
    maintainers:
        - Thalley
        - asbjornsabo
    collaborators:
        - Vudentz
        - jhedberg
        - Casper-Bonde-Bose
        - MariuszSkamra
        - rymanluk
250
        - sjanc
251 252
    files:
        - subsys/bluetooth/audio/
253
        - include/zephyr/bluetooth/audio/
254 255 256 257 258
        - tests/bluetooth/bsim_bt/bsim_test_audio/
    labels:
        - "area: Bluetooth Audio"
        - "area: Bluetooth"

259 260 261 262 263
Build system:
    status: maintained
    maintainers:
        - tejlmand
    collaborators:
264
        - jeremybettis
265 266 267
        - nashif
    files:
        - cmake/
268 269
        - CMakeLists.txt
        - scripts/zephyr_module.py
270
        - share/
271
        - doc/build/
272
        - doc/develop/modules.rst
273 274 275
    labels:
        - "area: Build System"

276 277 278 279 280 281 282 283 284 285 286 287 288
"C++":
    status: maintained
    maintainers:
        - stephanosio
    collaborators:
        - alexanderwachter
    files:
        - subsys/cpp/
        - tests/subsys/cpp/
        - samples/subsys/cpp/
    labels:
        - "area: C++"

289
C library:
290 291 292
    status: maintained
    maintainers:
         - stephanosio
293 294
    collaborators:
         - nashif
295 296
         - enjiamai
         - KangJianX
297 298 299
    files:
         - lib/libc/
         - tests/lib/c_lib/
300
         - tests/lib/newlib/
301 302 303 304
    labels:
         - "area: C Library"

CMSIS API layer:
305
    status: odd fixes
306 307 308
    collaborators:
         - nashif
    files:
Anas Nashif's avatar
Anas Nashif committed
309
         - subsys/portability/cmsis_rtos_v*/
310
         - include/zephyr/portability/cmsis*
Anas Nashif's avatar
Anas Nashif committed
311 312
         - samples/subsys/portability/cmsis_rtos_v*/
         - tests/subsys/portability/cmsis_rtos_v*/
Anas Nashif's avatar
Anas Nashif committed
313
    labels:
314
        - "area: CMSIS API Layer"
Anas Nashif's avatar
Anas Nashif committed
315
        - "area: Portability"
316

317
CMSIS-DSP integration:
Anas Nashif's avatar
Anas Nashif committed
318
    status: maintained
319 320 321 322 323 324 325 326 327 328 329
    maintainers:
        - stephanosio
    collaborators:
        - galak
    files:
        - modules/Kconfig.cmsis_dsp
        - tests/benchmarks/cmsis_dsp/
        - tests/lib/cmsis_dsp/
    labels:
        - "area: CMSIS-DSP"

330 331 332 333 334 335 336 337 338 339 340 341
CMSIS-NN integration:
    status: maintained
    maintainers:
        - JordanYates
    collaborators:
        - stephanosio
    files:
        - modules/Kconfig.cmsis_nn
        - tests/lib/cmsis_nn/
    labels:
        - "area: CMSIS-NN"

342 343
Common Architecture Interface:
    status: odd fixes
344 345 346
    collaborators:
        - dcpleung
        - nashif
347 348
    files:
        - arch/common/
349
        - include/zephyr/arch/common/
350 351 352 353 354 355 356 357
    labels:
        - "area: Architectures"

Console:
    status: maintained
    maintainers:
        - pfalcon
    files:
358
        - include/zephyr/console/
359 360 361 362 363 364 365 366
        - subsys/console/
    labels:
        - "area: Console"

Debug:
    status: maintained
    maintainers:
        - nashif
367 368
    collaborators:
        - dcpleung
369
        - chen-png
370
        - mrkhldn
371
    files:
372
        - include/zephyr/debug/
373
        - subsys/debug/
374
        - tests/subsys/debug/
375 376 377
    labels:
        - "area: Debugging"

378 379 380 381 382 383 384 385
Device Driver Model:
    status: maintained
    maintainers:
        - tbursztyka
    collaborators:
        - dcpleung
        - nashif
    files:
386
        - include/zephyr/device.h
387
        - kernel/device.c
388
        - include/zephyr/init.h
389
        - tests/kernel/device/
390
        - doc/kernel/drivers/
391 392 393
    labels:
        - "area: Device Model"

394 395 396 397 398
DFU:
    status: maintained
    maintainers:
        - nvlsianpu
    files:
399
        - include/zephyr/dfu/
400 401
        - subsys/dfu/
        - tests/subsys/dfu/
Anas Nashif's avatar
Anas Nashif committed
402 403
    labels:
        - "area: DFU"
404 405 406 407 408

Devicetree:
    status: maintained
    maintainers:
        - mbolivar-nordic
409 410
    collaborators:
        - galak
411 412 413 414
    files:
        - scripts/dts/
        - dts/bindings/
        - dts/common/
415 416
        - tests/lib/devicetree/
        - dts/bindings/test/
417
        - doc/build/dts/
418
        - include/zephyr/devicetree/
419
    labels:
420
        - "area: Devicetree"
421 422

Disk:
423 424
    status: maintained
    maintainers:
425
        - danieldegrasse
426 427
    collaborators:
        - jfischer-no
428
    files:
429 430
        - include/zephyr/storage/disk_access.h
        - include/zephyr/drivers/disk.h
431
        - drivers/disk/
432 433 434 435 436
        - subsys/disk/
    labels:
        - "area: Disk Access"

Display drivers:
437
    status: odd fixes
438
    collaborators:
439
        - jfischer-no
440
        - gmarull
441 442 443
    files:
        - drivers/display/
        - dts/bindings/display/
444 445 446
        - include/zephyr/drivers/display.h
        - include/zephyr/display/
        - include/zephyr/drivers/display.h
447
        - subsys/fb/
Anas Nashif's avatar
Anas Nashif committed
448
        - samples/subsys/display/
449 450 451 452 453 454 455 456 457
    labels:
        - "area: Display"

Documentation:
    status: maintained
    maintainers:
        - carlescufi
    collaborators:
        - nashif
458
        - utzig
459
        - mbolivar-nordic
460
        - gmarull
461
    files:
Anas Nashif's avatar
Anas Nashif committed
462 463 464 465 466
        - doc/
        - doc/_static/
        - doc/_templates/
        - doc/_doxygen/
        - doc/_scripts/
467
        - README.rst
Anas Nashif's avatar
Anas Nashif committed
468
        - doc/Makefile
469 470 471 472 473 474 475 476 477
    labels:
        - "area: Documentation"

"Drivers: ADC":
    status: maintained
    maintainers:
        - anangl
    files:
        - drivers/adc/
478
        - include/zephyr/drivers/adc.h
479
        - tests/drivers/adc/
480
        - samples/drivers/adc/
481 482 483 484 485 486
    labels:
        - "area: ADC"

"Drivers: Audio":
    status: maintained
    maintainers:
487 488 489 490 491
        - andyross
    collaborators:
        - nashif
        - lyakh
        - lgirdwood
492
        - mengxianglinx
493
        - marc-hb
494
        - kv2019i
495 496
    files:
        - drivers/audio/
497
        - include/zephyr/audio/
Anas Nashif's avatar
Anas Nashif committed
498
        - samples/subsys/audio/
Anas Nashif's avatar
Anas Nashif committed
499 500
    labels:
        - "area: Audio"
501 502 503 504 505

"Drivers: CAN":
    status: maintained
    maintainers:
        - henrikbrixandersen
506 507
    collaborators:
        - alexanderwachter
508
        - karstenkoenig
509
        - martinjaeger
510
    files:
511
        - doc/hardware/peripherals/canbus/
512 513
        - drivers/can/
        - dts/bindings/can/
514 515 516 517
        - include/zephyr/canbus/
        - include/zephyr/devicetree/can.h
        - include/zephyr/drivers/can.h
        - include/zephyr/drivers/can/
518
        - samples/drivers/can/
519
        - samples/modules/canopennode/
520
        - samples/net/sockets/can/
521 522 523 524 525
        - samples/subsys/canbus/
        - subsys/canbus/
        - subsys/net/l2/canbus/
        - tests/drivers/can/
        - tests/subsys/canbus/
526 527 528 529 530 531 532 533 534 535
    labels:
        - "area: CAN"

"Drivers: Clock control":
    status: maintained
    maintainers:
       - nordic-krch
    files:
        - drivers/clock_control/
        - dts/bindings/clock/
536 537
        - include/zephyr/drivers/clock_control.h
        - include/zephyr/dt-bindings/clock/
538 539 540 541 542
        - tests/drivers/clock_control/
    labels:
        - "area: Clock control"

"Drivers: Console":
543
    status: odd fixes
544 545 546 547
    collaborators:
        - pfalcon
    files:
        - drivers/console/
548
        - include/zephyr/drivers/console/
549 550 551 552
        - tests/drivers/console/
    labels:
        - "area: Console"

553 554 555 556 557 558 559 560
"Drivers: Coredump":
    status: maintained
    maintainers:
        - mrkhldn
    files:
        - drivers/coredump/
        - dts/bindings/coredump/
        - include/zephyr/drivers/coredump.h
561
        - tests/drivers/coredump/
562 563 564
    labels:
        - "area: Coredump"

565 566 567 568 569 570
"Drivers: Counter":
    status: maintained
    maintainers:
        - nordic-krch
    files:
        - drivers/counter/
571
        - include/zephyr/drivers/counter.h
572 573 574 575 576
        - tests/drivers/counter/
    labels:
        - "area: Counter"

"Drivers: Crypto":
577 578 579
    status: maintained
    maintainers:
        - ceolin
580 581 582
    files:
        - drivers/crypto/
        - dts/bindings/crypto/
583
        - include/zephyr/crypto/
584 585 586 587 588 589 590 591 592 593
        - samples/drivers/crypto/
    labels:
        - "area: Crypto / RNG"

"Drivers: DAC":
    status: maintained
    maintainers:
        - martinjaeger
    files:
        - drivers/dac/
594
        - include/zephyr/drivers/dac.h
595
        - tests/drivers/dac/
596
        - samples/drivers/dac/
597 598 599
    labels:
        - "area: DAC"

Anas Nashif's avatar
Anas Nashif committed
600 601 602 603 604 605 606 607 608 609 610 611 612 613
"Drivers: DAI":
    status: maintained
    maintainers:
        - juimonen
    collaborators:
        - lgirdwood
        - kv2019i
    files:
        - drivers/dai/
        - doc/hardware/peripherals/audio/dai.rst
        - include/zephyr/drivers/dai.h
    labels:
        - "area: DAI"

614
"Drivers: DMA":
Tom Burdick's avatar
Tom Burdick committed
615 616 617
    status: maintained
    maintainers:
        - teburd
618 619 620 621 622 623 624 625 626 627 628 629 630
    files:
        - drivers/dma/
        - tests/drivers/dma/
    labels:
        - "area: DMA"

"Drivers: EEPROM":
    status: maintained
    maintainers:
        - henrikbrixandersen
    files:
        - drivers/eeprom/
        - dts/bindings/mtd/*eeprom*
631
        - include/zephyr/drivers/eeprom.h
632
        - samples/drivers/eeprom/
633 634 635 636 637 638 639 640 641 642
        - tests/drivers/eeprom/
    labels:
        - "area: EEPROM"

"Drivers: Entropy":
    status: maintained
    maintainers:
        - ceolin
    files:
        - drivers/entropy/
643
        - include/zephyr/drivers/entropy.h
644
        - tests/drivers/entropy/
Anas Nashif's avatar
Anas Nashif committed
645 646
    labels:
        - "area: Crypto / RNG"
647 648

"Drivers: ESPI":
649 650 651 652 653
    status: maintained
    maintainers:
      - albertofloyd
    collaborators:
      - VenkatKotakonda
654
      - jvasanth1
655 656
    files:
        - drivers/espi/
657
        - include/zephyr/drivers/espi.h
658 659
        - samples/drivers/espi/
    labels:
Anas Nashif's avatar
Anas Nashif committed
660
        - "area: eSPI"
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679

"Drivers: Ethernet":
    status: maintained
    maintainers:
        - tbursztyka
    collaborators:
        - pfalcon
    files:
        - drivers/ethernet/
    labels:
        - "area: Ethernet"

"Drivers: Flash":
    status: maintained
    maintainers:
        - nvlsianpu
    files:
        - drivers/flash/
        - dts/bindings/flash_controller/
680
        - include/zephyr/drivers/flash.h
681
        - samples/drivers/flash_shell/
682
        - tests/drivers/flash/
683 684 685 686 687 688 689 690
    labels:
        - "area: Flash"

"Drivers: GPIO":
    status: maintained
    maintainers:
        - mnkp
    files:
691
        - doc/hardware/peripherals/gpio.rst
692
        - drivers/gpio/
693 694 695
        - include/zephyr/drivers/gpio/
        - include/zephyr/drivers/gpio.h
        - include/zephyr/dt-bindings/gpio/
696 697 698 699 700 701 702 703 704 705 706
        - tests/drivers/gpio/
    labels:
        - "area: GPIO"

"Drivers: HW Info":
    status: maintained
    maintainers:
        - alexanderwachter
    files:
        - drivers/hwinfo/
        - dts/bindings/hwinfo/
707
        - include/zephyr/drivers/hwinfo.h
708 709 710 711 712
        - tests/drivers/hwinfo/
    labels:
        - "area: HWINFO"

"Drivers: I2C":
Tom Burdick's avatar
Tom Burdick committed
713 714 715
    status: maintained
    maintainers:
        - teburd
716 717 718
    files:
        - drivers/i2c/
        - dts/bindings/i2c/
719
        - include/zephyr/drivers/i2c.h
720 721 722 723 724 725 726 727
    labels:
        - "area: I2C"

"Drivers: I2S":
    status: maintained
    maintainers:
        - anangl
    files:
728
        - doc/hardware/peripherals/audio/i2s.rst
729 730
        - drivers/i2s/
        - dts/bindings/i2s/
731
        - include/zephyr/drivers/i2s.h
732 733 734 735 736 737 738 739 740
        - tests/drivers/i2s/
    labels:
        - "area: I2S"

"Drivers: IEEE 802.15.4":
    status: maintained
    maintainers:
        - tbursztyka
    collaborators:
741
        - rlubos
742
        - jciupis
743 744
    files:
        - drivers/ieee802154/
Anas Nashif's avatar
Anas Nashif committed
745 746
    labels:
        - "area: IEEE 802.15.4"
747 748

"Drivers: Interrupt controllers":
749
    status: odd fixes
750 751 752
    files:
        - drivers/interrupt_controller/
        - dts/bindings/interrupt-controller/
753 754
        - include/zephyr/drivers/interrupt_controller/
        - include/zephyr/dt-bindings/interrupt-controller/
Anas Nashif's avatar
Anas Nashif committed
755 756
    labels:
        - "area: Interrupt Controller"
757 758 759

"Drivers: IPM":
    status: maintained
760 761
    collaborators:
        - dcpleung
762 763 764 765
    files:
        - drivers/ipm/
    description: >-
        Inter-processor mailboxes
Anas Nashif's avatar
Anas Nashif committed
766 767
    labels:
        - "area: IPM"
768 769

"Drivers: kscan":
Anas Nashif's avatar
Anas Nashif committed
770 771 772 773 774
    status: maintained
    maintainers:
      - albertofloyd
    collaborators:
      - VenkatKotakonda
775
      - gmarull
776 777
    files:
        - drivers/kscan/
778
        - include/zephyr/drivers/kscan.h
779 780
        - samples/drivers/espi/
        - tests/drivers/kscan/
Anas Nashif's avatar
Anas Nashif committed
781 782
    labels:
        - "area: Kscan"
783 784 785 786 787 788 789

"Drivers: LED":
    status: maintained
    maintainers:
        - Mani-Sadhasivam
    files:
        - drivers/led/
790 791
        - include/zephyr/drivers/led/
        - include/zephyr/drivers/led.h
792 793 794 795 796 797 798 799 800 801 802
        - samples/drivers/led_*/
    labels:
        - "area: LED"

"Drivers: LED Strip":
    status: maintained
    maintainers:
        - mbolivar-nordic
    files:
        - drivers/led_strip/
        - dts/bindings/led_strip/
803
        - include/zephyr/drivers/led_strip.h
Anas Nashif's avatar
Anas Nashif committed
804 805
    labels:
        - "area: LED"
806 807 808 809 810

"Drivers: lora":
    status: maintained
    maintainers:
        - Mani-Sadhasivam
811 812
    collaborators:
        - mniestroj
813
        - JordanYates
814 815
    files:
        - drivers/lora/
816
        - include/zephyr/drivers/lora.h
817
        - samples/drivers/lora/
818
        - include/zephyr/lorawan/
819
        - subsys/lorawan/
Anas Nashif's avatar
Anas Nashif committed
820
        - samples/subsys/lorawan/
Anas Nashif's avatar
Anas Nashif committed
821 822
    labels:
        - "area: LoRa"
823 824

"Drivers: Modem":
825 826 827
    status: maintained
    maintainers:
        - rerickson1
828 829 830 831 832
    files:
        - drivers/modem/
    labels:
        - "area: Modem"

Anas Nashif's avatar
Anas Nashif committed
833
"Drivers: Neural Networks":
834
    status: odd fixes
Anas Nashif's avatar
Anas Nashif committed
835 836
    collaborators:
        - nashif
837 838
    files:
        - drivers/neural_net/
Anas Nashif's avatar
Anas Nashif committed
839 840
    labels:
        - "area: Neural Networks"
841 842 843 844 845 846

"Drivers: PCI":
    status: maintained
    maintainers:
        - dcpleung
    collaborators:
847 848 849
        - jhedberg
        - finikorg
        - tbursztyka
850 851
    files:
        - drivers/pcie/
852
        - include/zephyr/drivers/pcie/
853 854 855
    labels:
        - "area: PCI"

Anas Nashif's avatar
Anas Nashif committed
856
"Drivers: PECI":
Anas Nashif's avatar
Anas Nashif committed
857 858 859 860 861
    status: maintained
    maintainers:
      - albertofloyd
    collaborators:
      - VenkatKotakonda
862 863
    files:
        - drivers/peci/
864
        - include/zephyr/drivers/peci.h
865
        - samples/drivers/peci/
Anas Nashif's avatar
Anas Nashif committed
866 867
    labels:
        - "area: PECI"
868

869 870 871 872 873
"Drivers: Pin Control":
    status: maintained
    maintainers:
        - gmarull
    files:
874
        - doc/hardware/pinctrl/
875 876
        - include/zephyr/drivers/pinctrl/
        - include/zephyr/drivers/pinctrl.h
877 878 879 880
        - drivers/pinctrl/
    labels:
        - "area: Pinctrl"

881 882 883 884
"Drivers: Pinmux":
    status: maintained
    maintainers:
        - mnkp
885 886
    collaborators:
        - gmarull
887
    files:
888
        - doc/hardware/peripherals/pinmux.rst
889
        - drivers/pinmux/
890
        - include/zephyr/drivers/pinmux.h
891 892 893 894 895 896
    labels:
        - "area: Pinmux"

"Drivers: PTP Clock":
    status: maintained
    maintainers:
897
        - tbursztyka
898 899
    files:
        - drivers/ptp_clock/
900
        - include/zephyr/drivers/ptp_clock.h
Anas Nashif's avatar
Anas Nashif committed
901 902
    labels:
        - "area: Clocks"
903

904
"Drivers: PM CPU ops":
905 906 907 908
    status: maintained
    maintainers:
        - carlocaione
    files:
909
        - drivers/pm_cpu_ops/
910 911 912
        - include/zephyr/drivers/pm_cpu_ops/
        - include/zephyr/drivers/pm_cpu_ops.h
        - include/zephyr/arch/arm64/arm-smccc.h
913
    labels:
914
        - "area: PM CPU ops"
915

916 917 918 919
"Drivers: PWM":
    status: maintained
    maintainers:
        - anangl
920 921
    collaborators:
        - henrikbrixandersen
922
        - gmarull
923 924 925 926
    files:
        - drivers/pwm/
        - dts/bindings/pwm/
        - tests/drivers/pwm/
927
        - include/zephyr/*/pwms.h
928 929 930 931 932 933 934 935 936
    labels:
        - "area: PWM"

"Drivers: Serial/UART":
    status: maintained
    maintainers:
        - dcpleung
    files:
        - drivers/serial/
937 938
        - include/zephyr/drivers/uart.h
        - include/zephyr/drivers/uart/
939
        - dts/bindings/serial/
940
        - samples/drivers/uart/
941
        - tests/drivers/uart/
942 943 944 945 946 947 948 949 950
    labels:
        - "area: UART"

"Drivers: Sensors":
    status: maintained
    maintainers:
        - MaureenHelm
    collaborators:
        - avisconti
951
        - gmarull
952
        - teburd
953 954
    files:
        - drivers/sensor/
955
        - include/zephyr/drivers/sensor.h
956
        - samples/sensor/
957 958
        - tests/drivers/sensor/
        - dts/bindings/sensor/
959 960 961 962 963 964 965 966 967
    labels:
        - "area: Sensors"

"Drivers: SPI":
    status: maintained
    maintainers:
        - tbursztyka
    files:
        - drivers/spi/
968
        - include/zephyr/drivers/spi.h
969 970 971 972 973 974 975 976
        - tests/drivers/spi/
    labels:
        - "area: SPI"

"Drivers: System timer":
    status: maintained
    maintainers:
        - andyross
977 978
    collaborators:
        - KangJianX
979 980
    files:
        - drivers/timer/
981
        - include/zephyr/drivers/timer/
982 983 984
    labels:
        - "area: Timer"

985 986
"Drivers: Video":
    status: odd fixes
987 988 989 990
    collaborators:
        - loicpoulain
    files:
        - drivers/video/
991 992
        - include/zephyr/drivers/video.h
        - include/zephyr/drivers/video-controls.h
993 994 995 996
    labels:
        - "area: Video"

"Drivers: Watchdog":
997
    status: odd fixes
998 999
    collaborators:
        - katsuster
1000
        - martinjaeger
1001
    files:
1002
        - doc/hardware/peripherals/watchdog.rst
1003 1004
        - drivers/watchdog/
        - dts/bindings/watchdog/
1005
        - include/zephyr/drivers/watchdog.h
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
        - samples/drivers/watchdog/
        - tests/drivers/watchdog/
    labels:
        - "area: Watchdog"

"Drivers: WiFi":
    status: maintained
    maintainers:
        - tbursztyka
    collaborators:
1016
        - rlubos
1017
        - kludentwo
1018 1019 1020 1021 1022 1023
    files:
        - drivers/wifi/
    labels:
        - "area: Wifi"

"Drivers: WiFi es-WiFi":
1024
    status: odd fixes
1025 1026 1027 1028 1029 1030 1031
    collaborators:
        - loicpoulain
    files:
        - drivers/wifi/eswifi/
    description: >-
        Inventek es-WiFi

Anas Nashif's avatar
Anas Nashif committed
1032 1033 1034
    labels:
        - "area: Wifi"

1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052
Xen Platform:
    status: maintained
    maintainers:
        - povergoing
    collaborators:
        - SgrrZhf
        - lorc
        - firscity
        - luca-fancellu
    files:
        - include/zephyr/xen/
        - drivers/xen/
        - arch/arm64/core/xen/
        - soc/arm64/xenvm/
        - boards/arm64/xenvm/
    labels:
        - "area: Xen Platform"

1053 1054 1055 1056 1057 1058 1059 1060 1061
Filesystems:
    status: maintained
    maintainers:
        - nvlsianpu
    collaborators:
        - de-nordic
        - Laczen
        - nashif
    files:
1062
        - include/zephyr/fs/
1063 1064 1065 1066 1067 1068
        - samples/subsys/fs/
        - subsys/fs/
        - tests/subsys/fs/
    labels:
        - "area: File System"

Anas Nashif's avatar
Anas Nashif committed
1069 1070 1071 1072
Formatted Output:
    status: maintained
    maintainers:
      - nordic-krch
1073 1074
    collaborators:
      - dcpleung
Anas Nashif's avatar
Anas Nashif committed
1075
    files:
1076
      - include/zephyr/sys/cbprintf*
Anas Nashif's avatar
Anas Nashif committed
1077 1078 1079 1080 1081 1082 1083
      - tests/unit/cbprintf/
      - tests/lib/cbprintf_*/
      - lib/os/cbprintf*
      - lib/os/Kconfig.cbprintf
    labels:
      - "area: Formatting Output"

1084 1085 1086 1087 1088 1089
IPC:
    status: maintained
    maintainers:
        - carlocaione
        - arnopo
    files:
1090
        - include/zephyr/ipc/
1091 1092 1093 1094 1095 1096 1097
        - samples/subsys/ipc/
        - subsys/ipc/
    description: >-
        Inter-Processor Communication
    labels:
        - "area: IPC"

1098
JSON Web Token:
1099
    status: odd fixes
1100 1101
    collaborators:
        - mrfuchs
1102
        - sir-branch
1103 1104
    files:
        - subsys/jwt/
1105
        - include/zephyr/data/
1106
        - lib/os/json.c
Anas Nashif's avatar
Anas Nashif committed
1107 1108 1109
    labels:
        - "area: JSON"

1110
Kconfig:
1111
    status: odd fixes
Anas Nashif's avatar
Anas Nashif committed
1112 1113 1114
    collaborators:
        - tejlmand
        - nashif
1115 1116
    files:
        - scripts/kconfig/
1117
        - doc/build/kconfig/
1118 1119 1120
    labels:
        - "area: Kconfig"
    description: >-
1121 1122
        See https://docs.zephyrproject.org/latest/build/kconfig/index.html and
        https://docs.zephyrproject.org/latest/hardware/porting/board_porting.html#default-board-configuration
1123 1124 1125 1126 1127 1128

Kernel:
    status: maintained
    maintainers:
        - andyross
    collaborators:
1129 1130 1131
        - nashif
        - ceolin
        - dcpleung
1132
        - peter-mitsis
1133
    files:
1134
        - doc/kernel/
1135
        - include/zephyr/kernel*.h
1136 1137
        - kernel/
        - tests/kernel/
1138
        - include/zephyr/sys_clock.h
1139 1140 1141
    labels:
        - "area: Kernel"

1142 1143 1144 1145 1146
Base OS:
    status: maintained
    maintainers:
        - andyross
    collaborators:
1147
        - dcpleung
1148 1149
        - nashif
    files:
1150
        - include/zephyr/sys/
1151
        - lib/os/
Anas Nashif's avatar
Anas Nashif committed
1152
    files-exclude:
1153
      - include/zephyr/sys/cbprintf*
Anas Nashif's avatar
Anas Nashif committed
1154 1155 1156 1157
      - tests/unit/cbprintf/
      - tests/lib/cbprintf_*/
      - lib/os/cbprintf*
      - lib/os/Kconfig.cbprintf
1158 1159 1160
    labels:
        - "area: Base OS"

1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175
Laird Connectivity platforms:
    status: maintained
    maintainers:
        - rerickson1
    collaborators:
        - greg-leach
    files:
        - boards/arm/bl5340_dvk/
        - boards/arm/bl65*/
        - boards/arm/bt510/
        - boards/arm/bt610/
        - boards/arm/pinnacle_100_dvk/
    labels:
        - "platform: Laird Connectivity"

1176
Little FS:
1177
    status: odd fixes
1178 1179 1180
    files:
        - subsys/fs/Kconfig.littlefs
        - subsys/fs/littlefs_fs.c
1181
        - tests/subsys/fs/littlefs/
1182 1183
    description: >-
       Little FS
Anas Nashif's avatar
Anas Nashif committed
1184 1185 1186
    labels:
        - "area: File System"

1187 1188 1189 1190
Logging:
    status: maintained
    maintainers:
        - nordic-krch
1191 1192
    collaborators:
        - chen-png
1193
        - aasthagr
1194
        - dcpleung
1195
    files:
1196
        - include/zephyr/logging/
1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
        - samples/subsys/logging/
        - subsys/logging/
        - tests/subsys/logging/
    labels:
        - "area: Logging"

MAINTAINERS file:
    status: maintained
    maintainers:
        - MaureenHelm
    collaborators:
Anas Nashif's avatar
Anas Nashif committed
1208
        - nashif
1209 1210 1211 1212 1213 1214 1215
    files:
        - MAINTAINERS.yml
    labels:
        - "area: Process"
    description: >-
        Zephyr Maintainers File

1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
Mbed TLS:
    status: maintained
    maintainers:
        - d3zd3z
        - ceolin
    files:
        - tests/crypto/mbedtls/
    labels:
        - "area: Crypto / RNG"
    description: >-
        Mbed TLS module implementing the PSA Crypto API and TLS.

1228 1229 1230 1231
MCU Manager:
    status: maintained
    maintainers:
        - de-nordic
1232 1233
    collaborators:
        - lairdjm
1234
    files:
1235
        - subsys/mgmt/mcumgr/
1236
        - include/zephyr/mgmt/mcumgr/
1237
        - samples/subsys/mgmt/mcumgr/
1238 1239 1240
    labels:
        - "area: mcumgr"

1241
OSDP:
1242
    status: odd fixes
1243
    collaborators:
1244
        - sidcha
1245 1246
    files:
        - subsys/mgmt/osdp/
1247
        - include/zephyr/mgmt/osdp.h
1248 1249 1250 1251
        - samples/subsys/mgmt/osdp/
    labels:
        - "area: OSDP"

1252
hawkBit:
1253
    status: odd fixes
1254 1255 1256 1257
    collaborators:
        - ycsin
    files:
        - subsys/mgmt/hawkbit/
1258
        - include/zephyr/mgmt/hawkbit.h
1259 1260 1261 1262
        - samples/subsys/mgmt/hawkbit/
    labels:
        - "area: hawkBit"

1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274
"mgmt: updatehub":
    status: maintained
    maintainers:
        - nandojve
    files:
        - subsys/mgmt/updatehub/
        - samples/subsys/mgmt/updatehub/
    labels:
        - "area: updatehub"
    description: >-
        UpdateHub embedded Firmware Over-The-Air (FOTA) upgrade agent

1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
Native POSIX and POSIX arch:
    status: maintained
    maintainers:
        - aescolar
    files:
        - arch/posix/
        - boards/posix/native_posix/
        - drivers/*/*native_posix*
        - drivers/*/*/*native_posix*
        - dts/posix/
1285
        - include/zephyr/arch/posix/
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
        - scripts/valgrind.supp
        - soc/posix/
        - tests/boards/native_posix/
    labels:
        - "area: native port"
    description: >-
        POSIX architecture and SOC, native_posix board, and related drivers

Networking:
    status: maintained
    maintainers:
1297
        - rlubos
1298 1299 1300
    collaborators:
        - tbursztyka
        - pfalcon
1301
        - mengxianglinx
1302 1303
    files:
        - drivers/net/
1304
        - include/zephyr/net/
1305 1306
        - samples/net/
        - subsys/net/
1307
        - doc/connectivity/networking/
1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322
    files-exclude:
        - samples/net/sockets/coap_*/
        - samples/net/lwm2m_client/
        - subsys/net/lib/coap/
        - subsys/net/lib/lwm2m/
        - subsys/net/lib/openthread/
        - subsys/net/lib/tls_credentials/
    labels:
        - "area: Networking"

"Networking: BSD sockets":
    status: maintained
    maintainers:
        - pfalcon
    collaborators:
1323
        - rlubos
1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335
    files:
        - samples/net/sockets/
        - subsys/net/lib/sockets/
        - tests/net/socket/
    labels:
        - "area: Sockets"

"Networking: Buffers":
    status: maintained
    maintainers:
        - jhedberg
    collaborators:
1336
        - rlubos
1337 1338
        - tbursztyka
    files:
1339
        - include/zephyr/net/buf.h
1340 1341
        - subsys/net/buf.c
        - tests/net/buf/
Anas Nashif's avatar
Anas Nashif committed
1342 1343 1344
    labels:
        - "area: Networking"

1345 1346 1347 1348
"Networking: CoAP":
    status: maintained
    maintainers:
        - rlubos
1349 1350
    collaborators:
        - pdgendt
1351 1352 1353 1354
    files:
        - subsys/net/lib/coap/
        - samples/net/sockets/coap_*/
        - tests/net/lib/coap/
Anas Nashif's avatar
Anas Nashif committed
1355 1356
    labels:
        - "area: Networking"
Martí Bolívar's avatar
Martí Bolívar committed
1357

1358 1359 1360 1361
"Networking: LWM2M":
    status: maintained
    maintainers:
        - rlubos
1362 1363
    collaborators:
        - SeppoTakalo
1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377
    files:
        - samples/net/lwm2m_client/
        - subsys/net/lib/lwm2m/
    labels:
        - "area: LWM2M"

"Networking: MQTT":
    status: maintained
    maintainers:
        - rlubos
    files:
        - subsys/net/lib/mqtt/
        - tests/net/lib/mqtt_packet/
        - samples/net/mqtt_publisher/
Anas Nashif's avatar
Anas Nashif committed
1378 1379
    labels:
        - "area: Networking"
1380

1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
"Networking: OpenThread":
    status: maintained
    maintainers:
        - rlubos
    collaborators:
        - pdgendt
    files:
        - subsys/net/l2/openthread/
        - subsys/net/lib/openthread/
        - samples/net/openthread/
    labels:
        - "area: Networking"
        - "area: OpenThread"

1395 1396 1397 1398 1399 1400
NIOS-2 arch:
    status: maintained
    maintainers:
        - nashif
    files:
        - arch/nios2/
1401
        - include/zephyr/arch/nios2/
1402 1403 1404 1405 1406 1407 1408 1409 1410 1411
    labels:
        - "area: NIOS2"

nRF52 BSIM:
    status: maintained
    maintainers:
        - aescolar
    files:
        - boards/posix/nrf52_bsim/
    labels:
1412
        - "platform: nRF52 BSIM"
1413 1414

POSIX API layer:
1415
    status: odd fixes
1416
    collaborators:
1417
        - pfalcon
1418 1419
        - enjiamai
        - KangJianX
1420
        - cfriedt
1421
    files:
1422
        - include/zephyr/posix/
1423 1424 1425 1426 1427 1428 1429 1430
        - lib/posix/
        - tests/posix/
    labels:
        - "area: POSIX"

Power management:
    status: maintained
    maintainers:
1431 1432 1433
        - ceolin
    collaborators:
        - nashif
1434
        - mengxianglinx
1435
        - gmarull
1436
        - teburd
1437
    files:
1438
        - include/zephyr/pm/
1439
        - samples/subsys/pm/
1440
        - subsys/pm/
1441
        - tests/subsys/pm/
1442 1443 1444 1445
    labels:
        - "area: Power Management"

RISCV arch:
1446 1447 1448 1449 1450
    status: maintained
    maintainers:
        - kgugala
        - pgielda
        - tgorochowik
1451
    collaborators:
1452
        - fkokosinski
1453
        - mgielda
1454
        - katsuster
1455
        - edersondisouza
1456 1457
    files:
        - arch/riscv/
1458 1459
        - boards/riscv/
        - dts/bindings/riscv/
1460
        - include/zephyr/arch/riscv/
1461
        - soc/riscv/
1462 1463 1464
    labels:
        - "area: RISCV"

Anas Nashif's avatar
Anas Nashif committed
1465
Twister:
1466 1467 1468
    status: maintained
    maintainers:
        - nashif
1469 1470
    collaborators:
        - chen-png
1471 1472 1473 1474
        - galak
        - PerMac
        - enjiamai
        - hakehuang
1475
        - gopiotr
1476
    files:
Anas Nashif's avatar
Anas Nashif committed
1477
        - scripts/twister
1478 1479
        - scripts/pylib/twister/
        - scripts/tests/twister/
1480
    labels:
Anas Nashif's avatar
Anas Nashif committed
1481
        - "area: Twister"
1482 1483 1484 1485 1486 1487

Settings:
    status: maintained
    maintainers:
        - nvlsianpu
    files:
1488
        - include/zephyr/settings/
1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500
        - subsys/settings/
        - tests/subsys/settings/
    labels:
        - "area: Settings"

Shell:
    status: maintained
    maintainers:
        - jakub-uC
    collaborators:
        - carlescufi
    files:
1501
        - include/zephyr/shell/
1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513
        - samples/subsys/shell/
        - subsys/shell/
        - tests/subsys/shell/
    labels:
        - "area: Shell"

Shields:
    status: maintained
    maintainers:
        - erwango
    collaborators:
        - avisconti
1514
        - jfischer-no
1515 1516
    files:
        - boards/shields/
1517
        - doc/hardware/porting/shields.rst
1518 1519 1520
    labels:
        - "area: Shields"

1521
SPARC arch:
1522
    status: odd fixes
1523 1524 1525 1526
    collaborators:
        - martin-aberg
    files:
        - arch/sparc/
1527
        - include/zephyr/arch/sparc/
1528 1529 1530
    labels:
        - "area: SPARC"

1531 1532 1533 1534 1535 1536 1537
State machine framework:
    status: maintained
    maintainers:
        - sambhurst
    collaborators:
        - keith-zephyr
    files:
1538
        - doc/services/smf/
1539
        - include/zephyr/smf.h
1540 1541 1542 1543 1544
        - lib/smf/
        - tests/lib/smf/
    labels:
        - "area: State Machine Framework"

1545 1546 1547 1548 1549
GD32 Platforms:
    status: maintained
    maintainers:
        - nandojve
        - gmarull
1550 1551
    collaborators:
        - soburi
1552 1553
    files:
        - boards/arm/gd32*/
1554
        - boards/riscv/gd32*/
1555
        - boards/riscv/longan_nano/
1556 1557
        - drivers/*/*gd32*/
        - drivers/*/*gd32*
1558
        - dts/*/gigadevice/
1559 1560
        - dts/bindings/*/*gd32*
        - soc/arm/gigadevice/
1561
        - soc/riscv/riscv-privilege/gd32vf103/
1562 1563 1564 1565 1566 1567 1568
        - scripts/west_commands/*/*gd32*
    labels:
        - "platform: GD32"
    description: >-
        GigaDevice GD32 SOCs, dts files and related drivers. Starter and eval
        boards.

1569 1570 1571
Synopsys Platforms:
    status: maintained
    maintainers:
1572
        - ruuddw
1573 1574 1575 1576 1577 1578 1579 1580 1581 1582
    collaborators:
        - abrodkin
        - evgeniy-paltsev
        - IRISZZW
    files:
        - soc/arc/
        - boards/arc/
    labels:
        - "platform: Synopsys"

1583
Nuvoton NPCX Platforms:
1584 1585 1586 1587 1588
    status: maintained
    maintainers:
        - MulinChao
        - ChiHuaL
        - WealianLiao
1589 1590
    collaborators:
        - MulinChao
1591 1592
        - ChiHuaL
        - WealianLiao
1593 1594 1595 1596 1597
        - sjg20
        - keith-zephyr
        - jackrosenthal
        - fabiobaltieri
        - yperess
1598
    files:
1599
        - soc/arm/nuvoton_npcx/
1600 1601
        - boards/arm/npcx*/
        - dts/arm/nuvoton/
1602
        - dts/bindings/*/*npcx*
Anas Nashif's avatar
Anas Nashif committed
1603
        - drivers/*/*_npcx*.c
1604
    labels:
1605
        - "platform: Nuvoton NPCX"
1606

1607
Nuvoton Numicro Platforms:
1608
    status: odd fixes
1609 1610 1611 1612 1613 1614 1615 1616 1617
    collaborators:
        - ssekar15
    files:
        - soc/arm/nuvoton_numicro/
        - boards/arm/nuvoton_pfm*/
        - dts/arm/nuvoton/
        - dts/bindings/*/*numicro*
        - drivers/*/*_numicro*
    labels:
1618
        - "platform: Nuvoton Numicro"
1619

1620
SiLabs Platforms:
1621
    status: odd fixes
1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
    collaborators:
        - chrta
    files:
        - soc/arm/silabs_*/
        - boards/arm/ef*/
        - dts/arm/silabs/
        - dts/bindings/*/silabs*
        - drivers/*/*_gecko*
    labels:
        - "platform: SiLabs"

1633 1634 1635
Intel Platforms (X86):
    status: maintained
    maintainers:
1636
        - enjiamai
1637 1638 1639
    collaborators:
        - jhedberg
        - aasthagr
1640
        - laurenmurphyx64
1641
        - MaureenHelm
1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
    files:
        - boards/x86/
        - soc/x86/
    labels:
        - "platform: X86"

Intel Platforms (Xtensa):
    status: maintained
    maintainers:
        - nashif
    collaborators:
        - andyross
        - dcpleung
1655 1656 1657 1658 1659
        - lyakh
        - lgirdwood
        - mengxianglinx
        - marc-hb
        - kv2019i
1660
        - MaureenHelm
1661 1662 1663 1664 1665 1666 1667 1668 1669
    files:
        - boards/xtensa/intel_*/
        - soc/xtensa/intel_*/
    labels:
        - "platform: Intel CAVS"

NXP Platforms:
  status: maintained
  maintainers:
1670
    - dleach02
1671 1672
  collaborators:
    - mmahadevan108
1673
    - danieldegrasse
1674 1675 1676 1677
  files:
    - boards/arm/mimx*/
    - boards/arm/frdm_k*/
    - boards/arm/lpcxpress*/
Anas Nashif's avatar
Anas Nashif committed
1678
    - boards/arm/twr_*/
1679 1680
    - soc/arm/nxp_*/
    - drivers/*/*imx*
Anas Nashif's avatar
Anas Nashif committed
1681 1682
    - drivers/*/*lpc*.c
    - drivers/*/*mcux*.c
1683
    - dts/arm/nxp/
1684
    - dts/bindings/*/nxp*
1685 1686 1687
  labels:
    - "platform: NXP"

1688
Microchip MEC Platforms:
1689 1690
  status: maintained
  maintainers:
1691
    - jvasanth1
1692 1693 1694 1695 1696 1697 1698
  collaborators:
    - VenkatKotakonda
    - albertofloyd
  files:
    - boards/arm/mec*/
    - dts/arm/microchip/
    - soc/arm/microchip_mec/
Anas Nashif's avatar
Anas Nashif committed
1699
    - drivers/*/*mchp*.c
1700
  labels:
1701
    - "platform: Microchip MEC"
1702

1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718
Microchip SAM Platforms:
  status: maintained
  maintainers:
    - nandojve
  collaborators:
    - mnkp
    - stephanosio
  files:
    - boards/arm/atsam*/
    - boards/arm/sam*/
    - dts/arm/atmel/
    - soc/arm/atmel_sam*/
    - drivers/*/*sam*.c
  labels:
    - "platform: Microchip SAM"

1719 1720 1721
nRF Platforms:
    status: maintained
    maintainers:
1722
        - anangl
1723
    files:
1724
        - boards/arm/*nrf*/
Anas Nashif's avatar
Anas Nashif committed
1725
        - drivers/*/*nrfx*.c
1726 1727 1728 1729 1730 1731
        - soc/arm/nordic_nrf/
        - samples/boards/nrf/
        - dts/arm/nordic/
    labels:
        - "platform: nRF"

1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749
Renesas R-Car Platforms:
    status: maintained
    maintainers:
        - aaillet
    collaborators:
        - pmarzin
    files:
        - boards/arm/rcar_*/
        - drivers/*/*rcar*
        - dts/arm/renesas/
        - dts/bindings/*/*rcar*
        - soc/arm/renesas_rcar/
    labels:
        - "platform: Renesas R-Car"
    description: >-
        Renesas R-Car SOCs, dts files and related drivers. Renesas boards based
        on R-Car SOCs.

1750
STM32 Platforms:
1751 1752 1753
    status: maintained
    maintainers:
        - erwango
1754 1755 1756
    collaborators:
        - ABOSTM
        - FRASTM
1757
        - gmarull
1758
        - GeorgeCGV
1759 1760 1761
    files:
        - boards/arm/nucleo_*/
        - boards/arm/stm32*_disco/
1762
        - boards/arm/stm32*_dk*/
1763 1764
        - boards/arm/stm32*_eval/
        - drivers/*/*stm32*/
Anas Nashif's avatar
Anas Nashif committed
1765 1766
        - drivers/*/*stm32*.c
        - drivers/*/*stm32*.h
1767 1768 1769 1770 1771 1772 1773 1774 1775 1776
        - drivers/*/*/*stm32*
        - dts/arm/st/
        - dts/bindings/*/*stm32*
        - soc/arm/st_stm32/
    labels:
        - "platform: STM32"
    description: >-
        STM32 SOCs, dts files and related drivers. ST nucleo, disco and eval
        boards.

Anas Nashif's avatar
Anas Nashif committed
1777 1778 1779 1780
Espressif Platforms:
    status: maintained
    maintainers:
        - sylvioalves
1781
        - glaubermaroto
1782
        - uLipe
Anas Nashif's avatar
Anas Nashif committed
1783
    files:
Anas Nashif's avatar
Anas Nashif committed
1784
        - drivers/*/*esp32*.c
1785 1786 1787 1788
        - boards/xtensa/esp32*/
        - soc/xtensa/esp32*/
        - boards/riscv/esp32*/
        - soc/riscv/esp32*/
Anas Nashif's avatar
Anas Nashif committed
1789
        - dts/xtensa/espressif/
1790
        - dts/riscv/espressif/
Anas Nashif's avatar
Anas Nashif committed
1791
        - dts/bindings/*/*esp32*
Anas Nashif's avatar
Anas Nashif committed
1792
        - samples/boards/esp32*/
Anas Nashif's avatar
Anas Nashif committed
1793 1794 1795
    labels:
        - "platform: ESP32"

1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812
ITE Platforms:
    status: maintained
    maintainers:
        - Dino-Li
        - GTLin08
        - RuibinChang
    collaborators:
        - Dino-Li
        - GTLin08
        - RuibinChang
        - jackrosenthal
        - keith-zephyr
        - brockus-zephyr
        - yperess
        - sjg20
    files:
        - boards/riscv/it8xxx2_evb/
1813 1814
        - drivers/*/*/*it8xxx2*.c
        - drivers/*/*it8xxx2*.c
1815
        - dts/bindings/*/*ite*
1816
        - dts/riscv/ite/
1817 1818 1819 1820
        - soc/riscv/riscv-ite/
    labels:
        - "platform: ITE"

1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840
TI Platforms:
    status: odd fixes
    collaborators:
        - vanti
        - cfriedt
    files:
        - boards/arm/cc13*/
        - boards/arm/cc26*/
        - boards/arm/cc32*/
        - boards/*/msp*/
        - drivers/*/*cc13*/
        - drivers/*/*cc25*/
        - drivers/*/*cc26*/
        - drivers/*/*cc32*/
        - dts/*/ti/
        - dts/bindings/*/ti,*
        - soc/arm/ti*/
    labels:
        - "platform: TI"

1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854
Xilinx Platforms:
  status: odd fixes
  collaborators:
    - henrikbrixandersen
    - ibirnbaum
  files:
    - drivers/*/*xlnx*
    - dts/*/xilinx/
    - dts/bindings/*/*xlnx*
    - include/zephyr/*/*/*xlnx*
    - soc/arm/xilinx*/
  labels:
    - "platform: Xilinx"

1855 1856 1857 1858 1859 1860
Storage:
    status: maintained
    maintainers:
        - nvlsianpu
    files:
        - subsys/storage/
1861
        - include/zephyr/storage/
1862 1863 1864 1865
        - tests/subsys/storage/
    labels:
        - "area: Storage"

1866 1867 1868 1869 1870
Task Watchdog:
    status: maintained
    maintainers:
        - martinjaeger
    files:
1871
        - include/zephyr/task_wdt/
1872 1873 1874 1875 1876
        - samples/subsys/task_wdt/
        - subsys/task_wdt/
    labels:
        - "area: Task Watchdog"

1877 1878 1879 1880 1881
TF-M Integration:
    status: maintained
    maintainers:
        - microbuilder
    collaborators:
1882
        - joerchan
1883 1884
    files:
        - samples/tfm_integration/
1885
        - modules/trusted-firmware-m/
1886 1887 1888
    labels:
        - "area: TF-M"

1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902
Toolchain Integration:
    status: maintained
    maintainers:
        - tejlmand
    collaborators:
        - stephanosio
    files:
        - cmake/bintools/
        - cmake/compiler/
        - cmake/linker/
        - cmake/toolchain/
    labels:
        - "area: Toolchains"

1903 1904 1905 1906
Tracing:
    status: maintained
    maintainers:
        - nashif
1907 1908
    collaborators:
        - teburd
1909
        - tleksell-pe
1910 1911
    files:
        - subsys/tracing/
1912
        - include/zephyr/tracing/
1913 1914
        - subsys/timing/
        - samples/subsys/tracing/
1915
        - doc/services/tracing/
1916
        - tests/subsys/tracing/
1917 1918 1919 1920 1921 1922
    labels:
        - "area: tracing"

USB:
    status: maintained
    maintainers:
1923
        - jfischer-no
1924 1925 1926
    files:
        - drivers/usb/
        - dts/bindings/usb/
1927 1928
        - include/zephyr/*/usb/
        - include/zephyr/usb/
1929 1930 1931 1932 1933 1934 1935 1936
        - samples/subsys/usb/
        - subsys/usb/
        - tests/subsys/usb/
    labels:
        - "area: USB"

Userspace:
    status: maintained
Anas Nashif's avatar
Anas Nashif committed
1937
    maintainers:
1938
        - dcpleung
Anas Nashif's avatar
Anas Nashif committed
1939
    collaborators:
1940
        - enjiamai
1941
    files:
1942
        - doc/kernel/usermode/kernelobjects.rst
1943 1944
        - include/zephyr/app_memory/
        - include/zephyr/linker/app_smem*.ld
1945 1946
        - tests/kernel/mem_protect/
        - samples/userspace/
1947
        - include/zephyr/syscall.h
1948
        - kernel/userspace*
1949 1950 1951 1952 1953
        - scripts/gen_app_partitions.py
        - scripts/gen_kobject_list.py
        - scripts/gen_syscalls.py
        - scripts/process_gperf.py
        - scripts/gen_relocate_app.py
1954
        - include/zephyr/sys/kobject.h
1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967
    labels:
        - "area: Userspace"

VFS:
    status: maintained
    maintainers:
        - de-nordic
    files:
        - subsys/fs/fat_fs.c
        - tests/subsys/fs/fat_fs_api/
    description: >-
       VFS implementation

Anas Nashif's avatar
Anas Nashif committed
1968 1969 1970
    labels:
        - "area: File System"

1971 1972 1973 1974 1975 1976
West:
    status: maintained
    maintainers:
        - mbolivar-nordic
    collaborators:
        - carlescufi
1977
        - swinslow
1978 1979 1980
    files:
        - scripts/west-commands.yml
        - scripts/west_commands/
1981
        - doc/develop/west/
1982 1983 1984
    labels:
        - "area: West"

1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467
"West project: canopennode":
    status: maintained
    maintainers:
        - henrikbrixandersen
    files:
        - modules/canopennode/
    labels:
        - manifest-canopennode
        - "area: CAN"

"West project: cmsis":
    status: maintained
    maintainers:
        - stephanosio
    collaborators:
        - microbuilder
        - povergoing
    files:
        - modules/Kconfig.cmsis
        - modules/Kconfig.cmsis_dsp
        - modules/Kconfig.cmsis_nn
    labels:
        - manifest-cmsis

"West project: edtt":
    status: maintained
    maintainers:
        - aescolar
    collaborators:
        - wopu-ot
        - thoh-ot
    files: []
    labels:
        - manifest-edtt

"West project: fatfs":
    status: maintained
    maintainers:
        - de-nordic
    files: []
    labels:
        - manifest-fatfs

"West project: hal_altera":
    status: odd fixes
    collaborators:
        - nashif
    files:
        - modules/Kconfig.altera
    labels:
        - manifest-hal_altera

"West project: hal_atmel":
    status: maintained
    maintainers:
        - nandojve
    files:
        - modules/Kconfig.atmel
    labels:
        - manifest-hal_atmel

"West project: hal_cypress":
    status: maintained
    maintainers:
        - ifyall
    collaborators:
        - nandojve
        - nashif
    files:
        - modules/Kconfig.cypress
    labels:
        - manifest-hal_cypress

"West project: hal_espressif":
    status: maintained
    maintainers:
        - sylvioalves
        - glaubermaroto
        - uLipe
    files: []
    labels:
        - manifest-hal_espressif

"West project: hal_gigadevice":
    status: maintained
    maintainers:
        - nandojve
        - gmarull
    collaborators:
        - soburi
    files:
        - modules/hal_gigadevice/
    labels:
        - manifest-hal_gigadevice

"West project: hal_infineon":
    status: maintained
    maintainers:
        - ifyall
    collaborators:
        - parthitce
    files:
        - modules/Kconfig.infineon
    labels:
        - manifest-hal_infineon

"West project: hal_microchip":
    status: maintained
    maintainers:
        - jvasanth1
    collaborators:
        - VenkatKotakonda
        - albertofloyd
    files:
        - modules/Kconfig.microchip
    labels:
        - manifest-hal_microchip

"West project: hal_nordic":
    status: maintained
    maintainers:
        - anangl
    collaborators:
        - hubertmis
        - nordic-krch
    files:
        - modules/hal_nordic/
    labels:
        - manifest-hal_nordic

"West project: hal_nuvoton":
    status: maintained
    maintainers:
        - MulinChao
        - ChiHuaL
        - WealianLiao
    files:
        - modules/Kconfig.nuvoton
    labels:
        - manifest-hal_nuvoton

"West project: hal_nxp":
    status: maintained
    maintainers:
        - dleach02
    collaborators:
        - mmahadevan108
        - danieldegrasse
    files:
        - modules/hal_nxp/
        - modules/Kconfig.imx
        - modules/Kconfig.mcux
    labels:
        - manifest-hal_nxp

"West project: hal_openisa":
    status: odd fixes
    collaborators:
        - dleach02
    files:
        - modules/Kconfig.vega
    labels:
        - manifest-hal_openisa

"West project: hal_quicklogic":
    status: odd fixes
    collaborators:
        - kowalewskijan
    files: []
    labels:
        - manifest-hal_quicklogic

"West project: hal_rpi_pico":
    status: maintained
    maintainers:
        - yonsch
    files:
        - modules/hal_rpi_pico/
    labels:
        - manifest-hal_rpi_pico

"West project: hal_silabs":
    status: odd fixes
    collaborators:
        - yonsch
        - mnkp
        - chrta
    files:
        - modules/Kconfig.silabs
    labels:
        - manifest-hal_silabs

"West project: hal_st":
    status: maintained
    maintainers:
        - avisconti
    collaborators:
        - erwango
    files:
        - modules/Kconfig.st
    labels:
        - manifest-hal_st

"West project: hal_stm32":
    status: maintained
    maintainers:
        - erwango
    collaborators:
        - FRASTM
        - ABOSTM
    files:
        - modules/Kconfig.stm32
    labels:
        - manifest-hal_stm32

"West project: hal_telink":
    status: maintained
    maintainers:
        - yurvyn
    files:
        - modules/Kconfig.telink
    labels:
        - manifest-hal_telink

"West project: hal_ti":
    status: odd fixes
    collaborators:
        - cfriedt
        - gmarull
    files: []
    labels:
        - manifest-hal_ti

"West project: hal_xtensa":
    status: maintained
    maintainers:
        - dcpleung
    collaborators:
        - andyross
        - nashif
    files:
        - modules/Kconfig.xtensa
    labels:
        - manifest-hal_xtensa

"West project: libmetal":
    status: odd fixes
    collaborators:
        - carlocaione
        - arnopo
    files:
        - modules/Kconfig.libmetal
    labels:
        - manifest-libmetal

"West project: liblc3codec":
    status: maintained
    maintainers:
        - Casper-Bonde-Bose
    collaborators:
        - thalley
        - asbjornsabo
    files:
        - modules/liblc3codec/
    labels:
        - manifest-liblc3codec

"West project: littlefs":
    status: odd fixes
    files:
        - modules/littlefs/
    labels:
        - manifest-littlefs

"West project: loramac-node":
    status: maintained
    maintainers:
        - Mani-Sadhasivam
    files:
        - modules/loramac-node/
    labels:
        - manifest-loramac-node

"West project: lvgl":
    status: maintained
    maintainers:
        - brgl
    files:
        - modules/Kconfig.lvgl
    labels:
        - manifest-lvgl

"West project: lz4":
    status: odd fixes
    collaborators:
        - Navin-Sankar
    files:
        - modules/lz4/
    labels:
        - manifest-lz4

"West project: mbedtls":
    status: maintained
    maintainers:
        - d3zd3z
        - ceolin
    files:
        - modules/mbedtls/
    labels:
        - manifest-mbedtls

"West project: mcuboot":
    status: maintained
    maintainers:
        - d3zd3z
        - nvlsianpu
    files:
        - modules/Kconfig.mcuboot_bootutil
    labels:
        - manifest-mcuboot

"West project: mipi-sys-t":
    status: odd fixes
    collaborators:
        - dcpleung
    files:
        - modules/Kconfig.syst
    labels:
        - manifest-mipi-sys-t

"West project: nanopb":
    status: odd fixes
    collaborators:
        - pdgendt
    files:
        - modules/nanopb/
    labels:
        - manifest-nanopb

"West project: net-tools":
    status: odd fixes
    maintainers:
        - rlubos
    collaborators:
        - jukkar
    files: []
    labels:
        - manifest-net-tools

"West project: nrf_hw_models":
    status: maintained
    maintainers:
        - aescolar
    collaborators:
        - wopu-ot
        - thoh-ot
    files: []
    labels:
        - manifest-nrf_hw_models

"West project: open-amp":
    status: odd fixes
    collaborators:
        - carlocaione
    files:
        - modules/Kconfig.open-amp
    labels:
        - manifest-open-amp

"West project: openthread":
    status: maintained
    maintainers:
        - rlubos
    collaborators:
        - pdgendt
    files: []
    labels:
        - manifest-openthread

"West project: segger":
    status: odd fixes
    collaborators:
        - nordic-krch
    files: []
    labels:
        - manifest-segger

"West project: sof":
    status: maintained
    maintainers:
        - andyross
        - nashif
    files:
        - modules/Kconfig.sof
    labels:
        - manifest-sof

"West project: tflite-micro":
    status: odd fixes
    collaborators:
        - laurenmurphyx64
    files:
        - modules/tflite-micro/
    labels:
        - manifest-tflite-micro

"West project: tinycbor":
    status: obsolete
    files:
        - modules/Kconfig.tinycbor
    labels:
        - manifest-tinycbor

"West project: tinycrypt":
    status: odd fixes
    files:
        - modules/Kconfig.tinycrypt
    labels:
        - manifest-tinycrypt

"West project: TraceRecorderSource":
    status: maintained
    maintainers:
        - tleksell-pe
    files:
        - modules/TraceRecorder/
    labels:
        - manifest-TraceRecorderSource

"West project: trusted-firmware-m":
    status: maintained
    maintainers:
        - microbuilder
    collaborators:
        - joerchan
        - SebastianBoe
        - theotherjimmy
    files:
        - modules/trusted-firmware-m/
    labels:
        - manifest-trusted-firmware-m

"West project: tf-m-tests":
    status: maintained
    maintainers:
        - microbuilder
    collaborators:
        - joerchan
        - SebastianBoe
        - theotherjimmy
    files: []
    labels:
        - manifest-tf-m-tests

"West project: psa-arch-tests":
    status: maintained
    maintainers:
        - microbuilder
    collaborators:
        - joerchan
        - SebastianBoe
        - theotherjimmy
    files: []
    labels:
        - manifest-psa-arch-tests

"West project: zcbor":
    status: maintained
    maintainers:
        - de-nordic
    files:
        - modules/zcbor/
    labels:
        - manifest-zcbor

"West project: zscilib":
    status: maintained
    maintainers:
        - microbuilder
    files: []
    labels:
        - manifest-zscilib

2468 2469 2470 2471 2472 2473
Xtensa arch:
    status: maintained
    maintainers:
        - dcpleung
    collaborators:
        - andyross
2474
        - nashif
2475 2476
    files:
        - arch/xtensa/
2477
        - include/zephyr/arch/xtensa/
2478 2479 2480 2481 2482 2483 2484 2485
        - dts/xtensa/
        - tests/arch/xtensa_asm2/
    labels:
        - "area: Xtensa"

x86 arch:
    status: maintained
    maintainers:
2486
        - jhedberg
2487 2488
    collaborators:
        - andyross
2489
        - nashif
2490
        - dcpleung
2491
        - ceolin
2492
        - enjiamai
2493
        - aasthagr
2494
        - laurenmurphyx64
2495 2496
    files:
        - arch/x86/
2497
        - include/zephyr/arch/x86/
2498
        - tests/arch/x86/
2499 2500 2501
        - drivers/interrupt_controller/*intel*
        - drivers/interrupt_controller/*ioapic*
        - drivers/interrupt_controller/*loapic*
2502 2503 2504
    labels:
        - "area: X86"

2505
Continuous Integration:
2506 2507 2508 2509
    status: maintained
    maintainers:
        - nashif
        - galak
2510
        - stephanosio
2511 2512 2513
    files:
        - .github/
        - scripts/ci/
2514 2515
        - .checkpatch.conf
        - scripts/gitlint/
2516 2517 2518
    labels:
        - "area: Continuous Integration"

2519 2520 2521 2522
ZTest:
    status: maintained
    maintainers:
        - nashif
2523 2524
    collaborators:
        - jeremybettis
2525 2526 2527 2528 2529 2530
    files:
        - subsys/testsuite/
        - tests/ztest/
        - tests/unit/util/
    labels:
        - "area: Testsuite"
2531 2532

Random:
2533
    status: odd fixes
2534 2535 2536 2537
    collaborators:
         - ceolin
    files:
        - subsys/random/
2538
        - include/zephyr/random/
2539 2540
    labels:
        - "area: Random"