1# This file contains information on who maintains what. It is parsed by 2# get_maintainer.py. 3# 4# File format 5# ########### 6# 7# "Area title" (the quotes are only needed for titles with special characters, 8# like colons): 9# status: 10# One of the following: 11# 12# * maintained: 13# The area has a Maintainer (approved by the TSC) who 14# looks after the area. 15# 16# * odd fixes: 17# The area gets odd fixes and may have collaborators. 18# 19# * obsolete: 20# Old code. Something being marked obsolete generally means it has 21# been replaced by something better that you should be using 22# instead. 23# 24# maintainers: 25# List of GitHub handles for the people who maintain the area. Usually, 26# there's only one maintainer. 27# 28# collaborators (not to be confused with the GitHub collaborator role): 29# Very involved contributors, who know the area well and contribute 30# significantly to it. 31# 32# labels: 33# List of GitHub labels to add to pull requests that modify the area. 34# 35# files: 36# List of paths and/or glob patterns giving the files in the area, 37# relative to the root directory. 38# 39# If a path or glob pattern ends in a '/', it matches all files within 40# the given directory or directories. Otherwise, an exact match is 41# required. 42# 43# Paths to directories should always have a trailing '/'. 44# 45# files-regex: 46# List of regular expressions applied to paths to determine if they 47# belong to the area. The regular expression may match anywhere within 48# the path, but can be anchored with ^ and $ as usual. 49# 50# Can be combined with a 'files' key. 51# 52# Note: Prefer plain 'files' patterns where possible. get_maintainer.py 53# will check that they match some file, but won't check regexes 54# (because it might be slow). 55# 56# files-exclude: 57# Like 'files', but any matching files will be excluded from the area. 58# 59# files-regex-exclude: 60# Like 'files-regex', but any matching files will be excluded from the 61# area. 62# 63# description: >- 64# Plain-English description. Describe what the system is about, from an 65# outsider's perspective. 66# 67# 68# All areas must have a 'files' and/or 'files-regex' key. The other keys are 69# optional. 70# 71# It is very advisable to have a `status` key in all entries. Exceptions to 72# this would be sub-areas which add extra fields (for ex. more `collaborators` 73# who work only in that sub-area) to other areas. 74# 75# 76# Workflow 77# ######## 78# 79# Ideally, any file in the tree will be covered by some area. 80# 81# When a GitHub pull request is sent, this happens: 82# 83# * A user mentioned in 'maintainers' is added as Assignee to 84# the pull request 85# 86# * Users mentioned in 'maintainers' and 'collaborators' are added as 87# reviewers to the pull request 88# 89# * The labels listed in 'labels' are automatically added to the pull 90# request 91# 92# * The bot posts this comment: 93# 94# This PR affects the following areas: 95# <area name>: 96# Status: ... 97# Maintainers: <list of maintainers> 98# Collaborators: <list of sub-maintainers> 99# 100# <area name>: 101# ... 102# 103# 104# Changes to MAINTAINERS.yml need to be approved as follows: 105# 106# * Changing the 'maintainers' for an area needs approval from the 107# Technical Steering Committee 108# 109# * Changing the 'collaborators' lines requires the maintainer and 110# collaborators of that area to agree (or vote on it) 111 112# Areas are sorted by name 113 114ARC arch: 115 status: maintained 116 maintainers: 117 - ruuddw 118 collaborators: 119 - abrodkin 120 - evgeniy-paltsev 121 - SiyuanCheng-CN 122 files: 123 - arch/arc/ 124 - include/zephyr/arch/arc/ 125 - tests/arch/arc/ 126 - dts/arc/synopsys/ 127 labels: 128 - "area: ARC" 129 130ARM arch: 131 status: maintained 132 maintainers: 133 - microbuilder 134 collaborators: 135 - carlocaione 136 - galak 137 - MaureenHelm 138 - stephanosio 139 - bbolen 140 - povergoing 141 files: 142 - arch/arm/ 143 - arch/arm/core/offsets/ 144 - include/zephyr/arch/arm/aarch32/ 145 - include/zephyr/arch/arm/ 146 - tests/arch/arm/ 147 - doc/hardware/arch/arm_cortex_m.rst 148 - boards/arm/qemu_cortex_m3/ 149 - boards/arm/qemu_cortex_m0/ 150 labels: 151 - "area: ARM" 152 153ARM64 arch: 154 status: maintained 155 maintainers: 156 - carlocaione 157 collaborators: 158 - npitre 159 - povergoing 160 - sgrrzhf 161 files: 162 - arch/arm64/ 163 - include/zephyr/arch/arm64/ 164 - tests/arch/arm64/ 165 - soc/arm64/ 166 - boards/arm64/ 167 - dts/arm64/ 168 labels: 169 - "area: ARM64" 170 171MIPS arch: 172 status: odd fixes 173 files: 174 - soc/mips/ 175 - arch/mips/ 176 - include/zephyr/arch/mips/ 177 - boards/mips/ 178 labels: 179 - "area: MIPS" 180 181Bluetooth: 182 status: maintained 183 maintainers: 184 - jhedberg 185 collaborators: 186 - hermabe 187 - Vudentz 188 - Thalley 189 - asbjornsabo 190 - sjanc 191 files: 192 - doc/connectivity/bluetooth/ 193 - drivers/bluetooth/ 194 - include/zephyr/bluetooth/ 195 - include/zephyr/drivers/bluetooth/ 196 - samples/bluetooth/ 197 - subsys/bluetooth/ 198 - subsys/bluetooth/common/ 199 - subsys/bluetooth/services/ 200 - subsys/bluetooth/shell/ 201 - tests/bluetooth/ 202 - tests/bsim/bluetooth/ 203 files-exclude: 204 - include/zephyr/bluetooth/mesh/ 205 - subsys/bluetooth/controller/ 206 - subsys/bluetooth/host/ 207 - subsys/bluetooth/mesh/ 208 - samples/bluetooth/mesh/ 209 - subsys/bluetooth/audio/ 210 - include/zephyr/bluetooth/audio/ 211 - tests/bsim/bluetooth/audio/ 212 - tests/bsim/bluetooth/host/ 213 - tests/bsim/bluetooth/ll/ 214 - tests/bluetooth/controller/ 215 - tests/bluetooth/host*/ 216 - tests/bluetooth/mesh_*/ 217 - tests/bluetooth/mesh/ 218 - tests/bsim/bluetooth/mesh/ 219 - tests/bluetooth/shell/audio* 220 labels: 221 - "area: Bluetooth" 222 223Bluetooth controller: 224 status: maintained 225 maintainers: 226 - cvinayak 227 collaborators: 228 - carlescufi 229 - thoh-ot 230 - kruithofa 231 - ppryga 232 - mtpr-ot 233 - wopu-ot 234 - erbr-ot 235 files: 236 - subsys/bluetooth/controller/ 237 - tests/bluetooth/controller/ 238 - tests/bsim/bluetooth/ll/ 239 labels: 240 - "area: Bluetooth Controller" 241 - "area: Bluetooth" 242 243Bluetooth Host: 244 status: maintained 245 maintainers: 246 - jhedberg 247 collaborators: 248 - hermabe 249 - jori-nordic 250 - alwa-nordic 251 - Vudentz 252 - Thalley 253 - asbjornsabo 254 - sjanc 255 - theob-pro 256 - kruithofa 257 files: 258 - subsys/bluetooth/host/ 259 - tests/bluetooth/host*/ 260 - tests/bsim/bluetooth/host/ 261 labels: 262 - "area: Bluetooth Host" 263 - "area: Bluetooth" 264 265Bluetooth Mesh: 266 status: maintained 267 maintainers: 268 - PavelVPV 269 collaborators: 270 - jhedberg 271 - LingaoM 272 - alxelax 273 - Andrewpini 274 files: 275 - subsys/bluetooth/mesh/ 276 - include/zephyr/bluetooth/mesh/ 277 - tests/bluetooth/mesh*/ 278 - tests/bsim/bluetooth/mesh/ 279 - samples/bluetooth/mesh/ 280 labels: 281 - "area: Bluetooth Mesh" 282 - "area: Bluetooth" 283 284Bluetooth Audio: 285 status: maintained 286 maintainers: 287 - Thalley 288 collaborators: 289 - jhedberg 290 - Casper-Bonde-Bose 291 - MariuszSkamra 292 - sjanc 293 - szymon-czapracki 294 - asbjornsabo 295 - fredrikdanebjer 296 - kruithofa 297 - larsgk 298 files: 299 - subsys/bluetooth/audio/ 300 - include/zephyr/bluetooth/audio/ 301 - tests/bsim/bluetooth/audio/ 302 - tests/bluetooth/shell/audio* 303 labels: 304 - "area: Bluetooth Audio" 305 - "area: Bluetooth" 306 307Build system: 308 status: maintained 309 maintainers: 310 - tejlmand 311 collaborators: 312 - jeremybettis 313 - nashif 314 - nordicjm 315 files: 316 - cmake/ 317 - CMakeLists.txt 318 - scripts/zephyr_module.py 319 - share/ 320 - doc/build/ 321 - doc/develop/modules.rst 322 - scripts/build/ 323 - tests/cmake/ 324 labels: 325 - "area: Build System" 326 327Board/SoC configuration: 328 status: maintained 329 maintainers: 330 - tejlmand 331 collaborators: 332 - galak 333 - nashif 334 - nordicjm 335 files: 336 - soc/Kconfig 337 - boards/Kconfig 338 labels: 339 - "area: Board/SoC configuration" 340 341"C++": 342 status: maintained 343 maintainers: 344 - stephanosio 345 collaborators: 346 - alexanderwachter 347 - cfriedt 348 files: 349 - lib/cpp/ 350 - tests/lib/cpp/ 351 - samples/cpp/ 352 labels: 353 - "area: C++" 354 355C library: 356 status: maintained 357 maintainers: 358 - stephanosio 359 collaborators: 360 - nashif 361 - keith-packard 362 - cfriedt 363 files: 364 - lib/libc/ 365 - tests/lib/c_lib/ 366 - tests/lib/newlib/ 367 labels: 368 - "area: C Library" 369 370CMSIS API layer: 371 status: odd fixes 372 collaborators: 373 - nashif 374 files: 375 - subsys/portability/cmsis_rtos_v*/ 376 - include/zephyr/portability/cmsis* 377 - samples/subsys/portability/cmsis_rtos_v*/ 378 - tests/subsys/portability/cmsis_rtos_v*/ 379 - doc/services/portability/ 380 labels: 381 - "area: CMSIS API Layer" 382 - "area: Portability" 383 384DSP subsystem: 385 status: maintained 386 maintainers: 387 - stephanosio 388 - yperess 389 files: 390 - subsys/dsp/ 391 - tests/subsys/dsp/ 392 - include/zephyr/dsp/dsp.h 393 - include/zephyr/dsp/types.h 394 - include/zephyr/dsp/ 395 - doc/services/dsp/ 396 labels: 397 - "area: DSP" 398 399CMSIS-DSP integration: 400 status: maintained 401 maintainers: 402 - stephanosio 403 collaborators: 404 - galak 405 files: 406 - modules/Kconfig.cmsis_dsp 407 - tests/benchmarks/cmsis_dsp/ 408 - tests/lib/cmsis_dsp/ 409 labels: 410 - "area: CMSIS-DSP" 411 412CMSIS-NN integration: 413 status: maintained 414 maintainers: 415 - JordanYates 416 collaborators: 417 - stephanosio 418 files: 419 - modules/Kconfig.cmsis_nn 420 - tests/lib/cmsis_nn/ 421 labels: 422 - "area: CMSIS-NN" 423 424Coding Guidelines: 425 status: maintained 426 maintainers: 427 - keith-zephyr 428 collaborators: 429 - nashif 430 - carlescufi 431 - jfischer-no 432 files: 433 - .checkpatch.conf 434 - .clang-format 435 - .editorconfig 436 - .gitlint 437 - .yamllint 438 - doc/contribute/guidelines.rst 439 - doc/contribute/coding_guidelines/ 440 - scripts/checkpatch.pl 441 - scripts/checkpatch/ 442 - scripts/ci/check_compliance.py 443 - scripts/ci/guideline_check.py 444 - scripts/ci/pylintrc 445 - scripts/coccicheck 446 - scripts/coccinelle/ 447 - scripts/gitlint/ 448 - scripts/pylint/ 449 - scripts/spelling.txt 450 labels: 451 - "area: Coding Guidelines" 452 453Common Architecture Interface: 454 status: odd fixes 455 collaborators: 456 - dcpleung 457 - nashif 458 files: 459 - arch/common/ 460 - include/zephyr/arch/common/ 461 labels: 462 - "area: Architectures" 463 464Console: 465 status: odd fixes 466 files: 467 - include/zephyr/console/ 468 - subsys/console/ 469 labels: 470 - "area: Console" 471 472Debug: 473 status: maintained 474 maintainers: 475 - nashif 476 collaborators: 477 - dcpleung 478 - mrkhldn 479 files: 480 - include/zephyr/debug/ 481 - subsys/debug/ 482 - tests/subsys/debug/ 483 - scripts/coredump/ 484 - samples/subsys/debug/ 485 - doc/services/debugging/ 486 labels: 487 - "area: Debugging" 488 489Device Driver Model: 490 status: maintained 491 maintainers: 492 - gmarull 493 collaborators: 494 - tbursztyka 495 - dcpleung 496 - nashif 497 files: 498 - include/zephyr/device.h 499 - kernel/device.c 500 - include/zephyr/init.h 501 - tests/kernel/device/ 502 - doc/kernel/drivers/ 503 labels: 504 - "area: Device Model" 505 506DFU: 507 status: maintained 508 maintainers: 509 - de-nordic 510 - nordicjm 511 files: 512 - include/zephyr/dfu/ 513 - subsys/dfu/ 514 - tests/subsys/dfu/ 515 labels: 516 - "area: DFU" 517 518Devicetree: 519 status: maintained 520 maintainers: 521 - mbolivar-nordic 522 - galak 523 files: 524 - scripts/dts/ 525 - dts/common/ 526 - tests/lib/devicetree/ 527 - doc/build/dts/ 528 - include/zephyr/devicetree/ 529 - scripts/kconfig/kconfigfunctions.py 530 - include/zephyr/devicetree.h 531 labels: 532 - "area: Devicetree" 533 534Devicetree Bindings: 535 status: maintained 536 maintainers: 537 - galak 538 files: 539 - dts/bindings/ 540 labels: 541 - "area: Devicetree Binding" 542 543Disk: 544 status: maintained 545 maintainers: 546 - danieldegrasse 547 collaborators: 548 - jfischer-no 549 files: 550 - include/zephyr/storage/disk_access.h 551 - include/zephyr/drivers/disk.h 552 - drivers/disk/ 553 - subsys/disk/ 554 - subsys/sd/ 555 - tests/subsys/sd/ 556 - tests/drivers/disk/ 557 labels: 558 - "area: Disk Access" 559 560Display drivers: 561 status: odd fixes 562 collaborators: 563 - jfischer-no 564 files: 565 - drivers/display/ 566 - dts/bindings/display/ 567 - include/zephyr/drivers/display.h 568 - include/zephyr/display/ 569 - include/zephyr/drivers/display.h 570 - subsys/fb/ 571 - samples/subsys/display/ 572 labels: 573 - "area: Display" 574 575Documentation: 576 status: maintained 577 maintainers: 578 - kartben 579 - carlescufi 580 collaborators: 581 - nashif 582 files: 583 - doc/contribute/ 584 - doc/develop/ 585 - doc/introduction/ 586 - doc/project/ 587 - doc/releases/ 588 - doc/security/ 589 - README.rst 590 - doc/substitutions.txt 591 - doc/images/Zephyr-Kite-in-tree.png 592 - doc/index-tex.rst 593 - doc/index.rst 594 - doc/kconfig.rst 595 - doc/known-warnings.txt 596 - doc/templates/sample.tmpl 597 - doc/templates/board.tmpl 598 files-exclude: 599 - doc/releases/release-notes-* 600 labels: 601 - "area: Documentation" 602 603Documentation Infrastructure: 604 status: maintained 605 maintainers: 606 - gmarull 607 collaborators: 608 - carlescufi 609 - nashif 610 - kartben 611 files: 612 - doc/_*/ 613 - doc/CMakeLists.txt 614 - doc/conf.py 615 - doc/Makefile 616 - doc/zephyr.doxyfile.in 617 labels: 618 - "area: Documentation Infrastructure" 619 620Release Notes: 621 status: maintained 622 maintainers: 623 - nashif 624 - jgl-meta 625 files: 626 - doc/releases/release-notes-* 627 labels: 628 - "Release Notes" 629 630"Drivers: ADC": 631 status: maintained 632 maintainers: 633 - anangl 634 files: 635 - drivers/adc/ 636 - include/zephyr/drivers/adc.h 637 - tests/drivers/adc/ 638 - samples/drivers/adc/ 639 - include/zephyr/drivers/adc/ 640 - doc/hardware/peripherals/adc.rst 641 - tests/drivers/build_all/adc/ 642 - include/zephyr/dt-bindings/adc/ 643 labels: 644 - "area: ADC" 645 646"Drivers: Audio": 647 status: odd fixes 648 collaborators: 649 - lyakh 650 - lgirdwood 651 - marc-hb 652 - kv2019i 653 files: 654 - drivers/audio/ 655 - include/zephyr/audio/ 656 labels: 657 - "area: Audio" 658 659"Drivers: bbram": 660 status: maintained 661 maintainers: 662 - yperess 663 files: 664 - tests/drivers/bbram/ 665 - drivers/bbram/ 666 - include/zephyr/drivers/bbram.h 667 labels: 668 - "area: Battery Backed RAM (bbram)" 669 670"Drivers: Aux display": 671 status: maintained 672 maintainers: 673 - thedjnK 674 files: 675 - include/zephyr/drivers/auxdisplay.h 676 - drivers/auxdisplay/* 677 - dts/bindings/auxdisplay/* 678 labels: 679 - "area: Aux display" 680 681"Drivers: CAN": 682 status: maintained 683 maintainers: 684 - henrikbrixandersen 685 collaborators: 686 - alexanderwachter 687 - karstenkoenig 688 - martinjaeger 689 - str4t0m 690 files: 691 - doc/hardware/peripherals/canbus/ 692 - drivers/can/ 693 - drivers/net/canbus.c 694 - dts/bindings/can/ 695 - include/zephyr/canbus/ 696 - include/zephyr/devicetree/can.h 697 - include/zephyr/drivers/can.h 698 - include/zephyr/drivers/can/ 699 - include/zephyr/net/canbus.h 700 - include/zephyr/net/socketcan.h 701 - samples/drivers/can/ 702 - samples/modules/canopennode/ 703 - samples/net/sockets/can/ 704 - samples/subsys/canbus/ 705 - subsys/canbus/ 706 - subsys/net/l2/canbus/ 707 - tests/drivers/build_all/can/ 708 - tests/drivers/can/ 709 - tests/net/socket/can/ 710 - tests/subsys/canbus/ 711 labels: 712 - "area: CAN" 713 714"Drivers: Clock control": 715 status: maintained 716 maintainers: 717 - nordic-krch 718 files: 719 - drivers/clock_control/ 720 - dts/bindings/clock/ 721 - include/zephyr/drivers/clock_control.h 722 - include/zephyr/dt-bindings/clock/ 723 - tests/drivers/clock_control/ 724 - include/zephyr/drivers/clock_control/ 725 - doc/hardware/peripherals/clock_control.rst 726 labels: 727 - "area: Clock control" 728 729"Drivers: Console": 730 status: odd fixes 731 files: 732 - drivers/console/ 733 - include/zephyr/drivers/console/ 734 - tests/drivers/console/ 735 - samples/subsys/console/ 736 labels: 737 - "area: Console" 738 739"Drivers: Coredump": 740 status: maintained 741 maintainers: 742 - mrkhldn 743 files: 744 - drivers/coredump/ 745 - dts/bindings/coredump/ 746 - include/zephyr/drivers/coredump.h 747 - tests/drivers/coredump/ 748 - doc/hardware/peripherals/coredump.rst 749 labels: 750 - "area: Coredump" 751 752"Drivers: Counter": 753 status: maintained 754 maintainers: 755 - nordic-krch 756 files: 757 - drivers/counter/ 758 - include/zephyr/drivers/counter.h 759 - tests/drivers/counter/ 760 - doc/hardware/peripherals/counter.rst 761 - samples/drivers/counter/ 762 - tests/drivers/build_all/counter/ 763 labels: 764 - "area: Counter" 765 766"Drivers: Crypto": 767 status: maintained 768 maintainers: 769 - ceolin 770 files: 771 - drivers/crypto/ 772 - dts/bindings/crypto/ 773 - include/zephyr/crypto/ 774 - samples/drivers/crypto/ 775 - tests/crypto/ 776 labels: 777 - "area: Crypto / RNG" 778 779"Drivers: DAC": 780 status: maintained 781 maintainers: 782 - martinjaeger 783 files: 784 - drivers/dac/ 785 - include/zephyr/drivers/dac.h 786 - tests/drivers/dac/ 787 - samples/drivers/dac/ 788 - doc/hardware/peripherals/dac.rst 789 - tests/drivers/build_all/dac/ 790 labels: 791 - "area: DAC" 792 793"Drivers: DAI": 794 status: maintained 795 maintainers: 796 - juimonen 797 collaborators: 798 - lgirdwood 799 - kv2019i 800 files: 801 - drivers/dai/ 802 - doc/hardware/peripherals/audio/dai.rst 803 - include/zephyr/drivers/dai.h 804 labels: 805 - "area: DAI" 806 807"Drivers: DMA": 808 status: maintained 809 maintainers: 810 - teburd 811 files: 812 - drivers/dma/ 813 - tests/drivers/dma/ 814 - include/zephyr/drivers/dma/ 815 - doc/hardware/peripherals/dma.rst 816 - include/zephyr/drivers/dma.h 817 - include/zephyr/dt-bindings/dma/ 818 labels: 819 - "area: DMA" 820 821"Drivers: EDAC": 822 status: maintained 823 maintainers: 824 - finikorg 825 files: 826 - drivers/edac/ 827 - dts/bindings/edac/ 828 - include/zephyr/drivers/edac.h 829 - samples/subsys/edac/ 830 - tests/subsys/edac/ 831 - doc/hardware/peripherals/edac/ 832 labels: 833 - "area: EDAC" 834 835"Drivers: EEPROM": 836 status: maintained 837 maintainers: 838 - henrikbrixandersen 839 files: 840 - drivers/eeprom/ 841 - dts/bindings/mtd/*eeprom* 842 - include/zephyr/drivers/eeprom.h 843 - samples/drivers/eeprom/ 844 - tests/drivers/eeprom/ 845 labels: 846 - "area: EEPROM" 847 848"Drivers: Entropy": 849 status: maintained 850 maintainers: 851 - ceolin 852 files: 853 - drivers/entropy/ 854 - include/zephyr/drivers/entropy.h 855 - tests/drivers/entropy/ 856 labels: 857 - "area: Crypto / RNG" 858 859"Drivers: ESPI": 860 status: maintained 861 maintainers: 862 - albertofloyd 863 collaborators: 864 - VenkatKotakonda 865 - jvasanth1 866 files: 867 - drivers/espi/ 868 - include/zephyr/drivers/espi.h 869 - include/zephyr/dt-bindings/espi/ 870 - samples/drivers/espi/ 871 - dts/bindings/espi/ 872 - doc/hardware/peripherals/espi.rst 873 - include/zephyr/drivers/espi_saf.h 874 labels: 875 - "area: eSPI" 876 877"Drivers: Ethernet": 878 status: maintained 879 maintainers: 880 - tbursztyka 881 files: 882 - drivers/ethernet/ 883 - include/zephyr/dt-bindings/ethernet/ 884 - tests/drivers/build_all/ethernet/ 885 - dts/bindings/ethernet/ 886 labels: 887 - "area: Ethernet" 888 889"Drivers: Flash": 890 status: maintained 891 maintainers: 892 - de-nordic 893 files: 894 - drivers/flash/ 895 - dts/bindings/flash_controller/ 896 - include/zephyr/drivers/flash.h 897 - samples/drivers/flash_shell/ 898 - samples/drivers/soc_flash_nrf/ 899 - tests/drivers/flash/ 900 - doc/hardware/peripherals/flash.rst 901 labels: 902 - "area: Flash" 903 904"Drivers: FPGA": 905 status: maintained 906 maintainers: 907 - cfriedt 908 collaborators: 909 - tgorochowik 910 - fkokosinski 911 - msierszulski 912 files: 913 - drivers/fpga/ 914 - dts/bindings/fpga/ 915 - include/zephyr/drivers/fpga.h 916 - samples/drivers/fpga/ 917 - tests/drivers/build_all/fpga/ 918 labels: 919 - "area: FPGA" 920 921"Drivers: Fuel Gauge": 922 status: maintained 923 maintainers: 924 - aaronemassey 925 - teburd 926 files: 927 - drivers/fuel_gauge/ 928 - dts/bindings/fuel-gauge/ 929 - include/zephyr/drivers/fuel_gauge.h 930 - tests/drivers/fuel_gauge/ 931 - doc/hardware/peripherals/fuel_gauge.rst 932 labels: 933 - "area: Fuel Gauge" 934 935"Drivers: GPIO": 936 status: odd fixes 937 collaborators: 938 - henrikbrixandersen 939 - cfriedt 940 - mnkp 941 files: 942 - doc/hardware/peripherals/gpio.rst 943 - drivers/gpio/ 944 - include/zephyr/drivers/gpio/ 945 - include/zephyr/drivers/gpio.h 946 - include/zephyr/dt-bindings/gpio/ 947 - tests/drivers/gpio/ 948 - tests/drivers/build_all/gpio/ 949 labels: 950 - "area: GPIO" 951 952"Drivers: HW Info": 953 status: maintained 954 maintainers: 955 - alexanderwachter 956 files: 957 - drivers/hwinfo/ 958 - dts/bindings/hwinfo/ 959 - include/zephyr/drivers/hwinfo.h 960 - tests/drivers/hwinfo/ 961 - doc/hardware/peripherals/hwinfo.rst 962 labels: 963 - "area: HWINFO" 964 965"Drivers: I2C": 966 status: maintained 967 maintainers: 968 - teburd 969 files: 970 - drivers/i2c/ 971 - include/zephyr/drivers/i2c/ 972 - dts/bindings/i2c/ 973 - include/zephyr/drivers/i2c.h 974 - tests/drivers/i2c/ 975 - doc/hardware/peripherals/i2c.rst 976 - include/zephyr/dt-bindings/i2c/ 977 - tests/boards/frdm_k64f/i2c/ 978 labels: 979 - "area: I2C" 980 981"Drivers: I2S": 982 status: maintained 983 maintainers: 984 - anangl 985 files: 986 - doc/hardware/peripherals/audio/i2s.rst 987 - drivers/i2s/ 988 - dts/bindings/i2s/ 989 - include/zephyr/drivers/i2s.h 990 - tests/drivers/i2s/ 991 - samples/drivers/i2s/ 992 labels: 993 - "area: I2S" 994 995"Drivers: I3C": 996 status: maintained 997 maintainers: 998 - dcpleung 999 collaborators: 1000 - XenuIsWatching 1001 files: 1002 - drivers/i3c/ 1003 - dts/bindings/i3c/ 1004 - include/zephyr/drivers/i3c.h 1005 - include/zephyr/drivers/i3c/ 1006 - doc/hardware/peripherals/i3c.rst 1007 - tests/drivers/build_all/i3c/ 1008 labels: 1009 - "area: I3C" 1010 1011"Drivers: IEEE 802.15.4": 1012 status: maintained 1013 maintainers: 1014 - tbursztyka 1015 collaborators: 1016 - rlubos 1017 - jciupis 1018 files: 1019 - drivers/ieee802154/ 1020 labels: 1021 - "area: IEEE 802.15.4" 1022 1023"Drivers: Interrupt controllers": 1024 status: odd fixes 1025 files: 1026 - drivers/interrupt_controller/ 1027 - dts/bindings/interrupt-controller/ 1028 - include/zephyr/drivers/interrupt_controller/ 1029 - include/zephyr/dt-bindings/interrupt-controller/ 1030 labels: 1031 - "area: Interrupt Controller" 1032 1033"Drivers: IPM": 1034 status: odd fixes 1035 collaborators: 1036 - dcpleung 1037 files: 1038 - drivers/ipm/ 1039 - samples/drivers/ipm/ 1040 - dts/bindings/ipm/ 1041 - tests/drivers/ipm/ 1042 - doc/hardware/peripherals/ipm.rst 1043 description: >- 1044 Inter-processor mailboxes 1045 labels: 1046 - "area: IPM" 1047 1048"Drivers: kscan": 1049 status: maintained 1050 maintainers: 1051 - albertofloyd 1052 collaborators: 1053 - VenkatKotakonda 1054 files: 1055 - drivers/kscan/ 1056 - include/zephyr/drivers/kscan.h 1057 - samples/drivers/espi/ 1058 - samples/drivers/kscan/ 1059 - samples/drivers/kscan_touch/ 1060 - tests/drivers/kscan/ 1061 - tests/drivers/espi/ 1062 - dts/bindings/kscan/ 1063 - doc/hardware/peripherals/kscan.rst 1064 labels: 1065 - "area: Kscan" 1066 1067"Drivers: LED": 1068 status: maintained 1069 maintainers: 1070 - Mani-Sadhasivam 1071 - simonguinot 1072 files: 1073 - drivers/led/ 1074 - include/zephyr/drivers/led/ 1075 - include/zephyr/drivers/led.h 1076 - samples/drivers/led_*/ 1077 - tests/drivers/led/ 1078 - doc/hardware/peripherals/led.rst 1079 labels: 1080 - "area: LED" 1081 1082"Drivers: LED Strip": 1083 status: maintained 1084 maintainers: 1085 - mbolivar-nordic 1086 - simonguinot 1087 files: 1088 - drivers/led_strip/ 1089 - dts/bindings/led_strip/ 1090 - include/zephyr/drivers/led_strip.h 1091 - tests/drivers/build_all/led_strip/ 1092 labels: 1093 - "area: LED" 1094 1095"Drivers: lora": 1096 status: maintained 1097 maintainers: 1098 - Mani-Sadhasivam 1099 collaborators: 1100 - mniestroj 1101 - JordanYates 1102 files: 1103 - drivers/lora/ 1104 - include/zephyr/drivers/lora.h 1105 - samples/drivers/lora/ 1106 - include/zephyr/lorawan/ 1107 - subsys/lorawan/ 1108 - samples/subsys/lorawan/ 1109 - doc/connectivity/lora_lorawan/index.rst 1110 labels: 1111 - "area: LoRa" 1112 1113"Drivers: Modem": 1114 status: maintained 1115 maintainers: 1116 - rerickson1 1117 files: 1118 - drivers/modem/ 1119 - tests/drivers/build_all/modem/ 1120 - dts/bindings/modem/ 1121 - include/zephyr/drivers/modem/ 1122 labels: 1123 - "area: Modem" 1124 1125"Drivers: Neural Networks": 1126 status: odd fixes 1127 collaborators: 1128 - nashif 1129 files: 1130 - drivers/neural_net/ 1131 labels: 1132 - "area: Neural Networks" 1133 1134"Drivers: Regulators": 1135 status: maintained 1136 maintainers: 1137 - gmarull 1138 collaborators: 1139 - danieldegrasse 1140 - aasinclair 1141 files: 1142 - drivers/regulator/ 1143 - include/zephyr/drivers/regulator/ 1144 - include/zephyr/drivers/regulator.h 1145 - include/zephyr/dt-bindings/regulator/ 1146 - tests/drivers/regulator/ 1147 - tests/drivers/build_all/regulator/ 1148 - doc/hardware/peripherals/regulators.rst 1149 labels: 1150 - "area: Regulators" 1151 1152"Drivers: Retained Memory": 1153 status: maintained 1154 maintainers: 1155 - nordicjm 1156 files: 1157 - drivers/retained_mem/ 1158 - dts/bindings/retained_mem/ 1159 - include/zephyr/drivers/retained_mem.h 1160 - tests/drivers/retained_mem/ 1161 labels: 1162 - "area: Retained Memory" 1163 1164"Drivers: RTC": 1165 status: maintained 1166 maintainers: 1167 - bjarki-trackunit 1168 files: 1169 - drivers/rtc/ 1170 - tests/drivers/rtc/ 1171 - doc/hardware/peripherals/rtc.rst 1172 - include/zephyr/drivers/rtc.h 1173 labels: 1174 - "area: RTC" 1175 1176"Drivers: PCI": 1177 status: maintained 1178 maintainers: 1179 - dcpleung 1180 collaborators: 1181 - jhedberg 1182 - finikorg 1183 - tbursztyka 1184 files: 1185 - drivers/pcie/ 1186 - include/zephyr/drivers/pcie/ 1187 labels: 1188 - "area: PCI" 1189 1190"Drivers: PECI": 1191 status: maintained 1192 maintainers: 1193 - albertofloyd 1194 collaborators: 1195 - VenkatKotakonda 1196 files: 1197 - drivers/peci/ 1198 - include/zephyr/drivers/peci.h 1199 - samples/drivers/peci/ 1200 - doc/hardware/peripherals/peci.rst 1201 labels: 1202 - "area: PECI" 1203 1204"Drivers: Pin Control": 1205 status: maintained 1206 maintainers: 1207 - gmarull 1208 files: 1209 - doc/hardware/pinctrl/ 1210 - include/zephyr/drivers/pinctrl/ 1211 - include/zephyr/drivers/pinctrl.h 1212 - drivers/pinctrl/ 1213 - tests/drivers/pinctrl/ 1214 - dts/bindings/pinctrl/ 1215 - include/zephyr/dt-bindings/pinctrl/ 1216 labels: 1217 - "area: Pinctrl" 1218 1219"Drivers: PTP Clock": 1220 status: maintained 1221 maintainers: 1222 - tbursztyka 1223 files: 1224 - drivers/ptp_clock/ 1225 - include/zephyr/drivers/ptp_clock.h 1226 labels: 1227 - "area: Clocks" 1228 1229"Drivers: PM CPU ops": 1230 status: maintained 1231 maintainers: 1232 - carlocaione 1233 files: 1234 - drivers/pm_cpu_ops/ 1235 - include/zephyr/drivers/pm_cpu_ops/ 1236 - include/zephyr/drivers/pm_cpu_ops.h 1237 - include/zephyr/arch/arm64/arm-smccc.h 1238 labels: 1239 - "area: PM CPU ops" 1240 1241"Drivers: PWM": 1242 status: maintained 1243 maintainers: 1244 - anangl 1245 collaborators: 1246 - henrikbrixandersen 1247 files: 1248 - drivers/pwm/ 1249 - dts/bindings/pwm/ 1250 - tests/drivers/pwm/ 1251 - include/zephyr/*/pwms.h 1252 - doc/hardware/peripherals/pwm.rst 1253 - tests/drivers/build_all/pwm/ 1254 - include/zephyr/drivers/pwm.h 1255 labels: 1256 - "area: PWM" 1257 1258"Drivers: SDHC": 1259 status: maintained 1260 maintainers: 1261 - danieldegrasse 1262 files: 1263 - drivers/sdhc/ 1264 - tests/drivers/sdhc/ 1265 - include/zephyr/drivers/sdhc.h 1266 - dts/bindings/sdhc/ 1267 - doc/hardware/peripherals/sdhc.rst 1268 labels: 1269 - "area: Disk Access" 1270 1271"Drivers: Serial/UART": 1272 status: maintained 1273 maintainers: 1274 - dcpleung 1275 files: 1276 - drivers/serial/ 1277 - include/zephyr/drivers/uart.h 1278 - include/zephyr/drivers/uart/ 1279 - dts/bindings/serial/ 1280 - samples/drivers/uart/ 1281 - tests/drivers/uart/ 1282 - doc/hardware/peripherals/uart.rst 1283 labels: 1284 - "area: UART" 1285 1286"Drivers: Sensors": 1287 status: maintained 1288 maintainers: 1289 - MaureenHelm 1290 collaborators: 1291 - avisconti 1292 - teburd 1293 - yperess 1294 files: 1295 - drivers/sensor/ 1296 - include/zephyr/drivers/sensor.h 1297 - samples/sensor/ 1298 - tests/drivers/sensor/ 1299 - dts/bindings/sensor/ 1300 - include/zephyr/drivers/sensor/ 1301 - include/zephyr/dt-bindings/sensor/ 1302 - doc/hardware/peripherals/sensor.rst 1303 - tests/drivers/build_all/sensor/ 1304 labels: 1305 - "area: Sensors" 1306 1307"Drivers: SMBus": 1308 status: maintained 1309 maintainers: 1310 - finikorg 1311 files: 1312 - drivers/smbus/ 1313 - dts/bindings/smbus/ 1314 - include/zephyr/drivers/smbus.h 1315 - samples/drivers/smbus/ 1316 - tests/drivers/smbus/ 1317 - doc/hardware/peripherals/smbus.rst 1318 labels: 1319 - "area: SMBus" 1320 1321"Drivers: SPI": 1322 status: maintained 1323 maintainers: 1324 - tbursztyka 1325 collaborators: 1326 - teburd 1327 files: 1328 - drivers/spi/ 1329 - include/zephyr/drivers/spi.h 1330 - tests/drivers/spi/ 1331 - doc/hardware/peripherals/spi.rst 1332 labels: 1333 - "area: SPI" 1334 1335"Drivers: System timer": 1336 status: maintained 1337 maintainers: 1338 - andyross 1339 collaborators: 1340 - teburd 1341 files: 1342 - drivers/timer/ 1343 - include/zephyr/drivers/timer/ 1344 labels: 1345 - "area: Timer" 1346 1347"Drivers: Video": 1348 status: odd fixes 1349 collaborators: 1350 - loicpoulain 1351 files: 1352 - drivers/video/ 1353 - include/zephyr/drivers/video.h 1354 - include/zephyr/drivers/video-controls.h 1355 labels: 1356 - "area: Video" 1357 1358"Drivers: W1": 1359 status: maintained 1360 maintainers: 1361 - str4t0m 1362 collaborators: 1363 - dp7hgh7 1364 files: 1365 - doc/hardware/peripherals/w1.rst 1366 - drivers/w1/ 1367 - dts/bindings/w1/ 1368 - include/zephyr/drivers/w1.h 1369 - include/zephyr/drivers/sensor/w1_sensor.h 1370 - tests/drivers/w1/ 1371 - samples/drivers/w1/ 1372 labels: 1373 - "area: W1" 1374 1375"Drivers: Watchdog": 1376 status: odd fixes 1377 collaborators: 1378 - katsuster 1379 - martinjaeger 1380 files: 1381 - doc/hardware/peripherals/watchdog.rst 1382 - drivers/watchdog/ 1383 - dts/bindings/watchdog/ 1384 - include/zephyr/drivers/watchdog.h 1385 - samples/drivers/watchdog/ 1386 - tests/drivers/watchdog/ 1387 labels: 1388 - "area: Watchdog" 1389 1390"Drivers: WiFi": 1391 status: maintained 1392 maintainers: 1393 - tbursztyka 1394 collaborators: 1395 - rlubos 1396 - kludentwo 1397 files: 1398 - drivers/wifi/ 1399 labels: 1400 - "area: Wifi" 1401 1402"Drivers: WiFi es-WiFi": 1403 status: odd fixes 1404 collaborators: 1405 - loicpoulain 1406 files: 1407 - drivers/wifi/eswifi/ 1408 description: >- 1409 Inventek es-WiFi 1410 1411 labels: 1412 - "area: Wifi" 1413 1414"Drivers: Memory Management": 1415 status: maintained 1416 maintainers: 1417 - dcpleung 1418 collaborators: 1419 - ceolin 1420 - edersondisouza 1421 - jxstelter 1422 files: 1423 - include/zephyr/drivers/mm/ 1424 - drivers/mm/ 1425 - tests/boards/intel_adsp/mm/ 1426 - dts/bindings/mm/ 1427 labels: 1428 - "area: Memory Management" 1429 1430"Drivers: Virtualization": 1431 status: maintained 1432 maintainers: 1433 - tbursztyka 1434 files: 1435 - drivers/virtualization/ 1436 - tests/drivers/virtualization/ 1437 - dts/bindings/virtualization/ 1438 - include/zephyr/drivers/virtualization/ 1439 - doc/services/virtualization/ 1440 - include/zephyr/drivers/virtualization/ivshmem.h 1441 labels: 1442 - "area: Virtualization" 1443 1444EC Host Commands: 1445 status: maintained 1446 maintainers: 1447 - semihalf-niedzwiecki-dawid 1448 files: 1449 - subsys/mgmt/ec_host_cmd/ 1450 - include/zephyr/mgmt/ec_host_cmd/ 1451 - tests/subsys/mgmt/ec_host_cmd/ 1452 labels: 1453 - "area: ec_host_cmd" 1454 1455Xen Platform: 1456 status: maintained 1457 maintainers: 1458 - povergoing 1459 collaborators: 1460 - SgrrZhf 1461 - lorc 1462 - firscity 1463 - luca-fancellu 1464 files: 1465 - include/zephyr/xen/ 1466 - drivers/xen/ 1467 - arch/arm64/core/xen/ 1468 - soc/arm64/xenvm/ 1469 - boards/arm64/xenvm/ 1470 labels: 1471 - "area: Xen Platform" 1472 1473Filesystems: 1474 status: maintained 1475 maintainers: 1476 - de-nordic 1477 collaborators: 1478 - Laczen 1479 - nashif 1480 files: 1481 - include/zephyr/fs/ 1482 - samples/subsys/fs/ 1483 - subsys/fs/ 1484 - tests/subsys/fs/ 1485 labels: 1486 - "area: File System" 1487 1488"Filesystems: FatFs reentrant support": 1489 status: maintained 1490 maintainers: 1491 - ox11 1492 files: 1493 - modules/fatfs/zfs_ffsystem.c 1494 - tests/subsys/fs/fat_fs_api/src/test_fat_file_reentrant.c 1495 labels: 1496 - "area: File System" 1497 1498Formatted Output: 1499 status: maintained 1500 maintainers: 1501 - nordic-krch 1502 collaborators: 1503 - dcpleung 1504 files: 1505 - include/zephyr/sys/cbprintf* 1506 - tests/unit/cbprintf/ 1507 - tests/lib/cbprintf_*/ 1508 - lib/os/cbprintf* 1509 - lib/os/Kconfig.cbprintf 1510 - doc/services/formatted_output.rst 1511 labels: 1512 - "area: Formatting Output" 1513 1514Google Platforms: 1515 status: maintained 1516 maintainers: 1517 - fabiobaltieri 1518 - keith-zephyr 1519 files: 1520 - boards/*/google_*/ 1521 1522Hash Utilities: 1523 status: maintained 1524 maintainers: 1525 - cfriedt 1526 files: 1527 - include/zephyr/sys/hash_* 1528 - lib/hash/ 1529 - samples/basic/hash_map/ 1530 - tests/lib/hash_*/ 1531 description: >- 1532 Hash Functions and Hash Maps (Hash Tables) 1533 labels: 1534 - "area: hash utils" 1535 1536Input: 1537 status: maintained 1538 maintainers: 1539 - fabiobaltieri 1540 collaborators: 1541 - gmarull 1542 files: 1543 - doc/services/input/ 1544 - drivers/input/ 1545 - dts/bindings/input/ 1546 - include/zephyr/dt-bindings/input/ 1547 - include/zephyr/input/ 1548 - samples/subsys/input/ 1549 - subsys/input/ 1550 - tests/subsys/input/ 1551 description: >- 1552 Input subsystem and drivers 1553 labels: 1554 - "area: Input" 1555 1556IPC: 1557 status: maintained 1558 maintainers: 1559 - carlocaione 1560 - arnopo 1561 files: 1562 - include/zephyr/ipc/ 1563 - samples/subsys/ipc/ 1564 - subsys/ipc/ 1565 - tests/subsys/ipc/ 1566 description: >- 1567 Inter-Processor Communication 1568 labels: 1569 - "area: IPC" 1570 1571JSON Web Token: 1572 status: odd fixes 1573 collaborators: 1574 - mrfuchs 1575 - sir-branch 1576 files: 1577 - subsys/jwt/ 1578 - include/zephyr/data/ 1579 - lib/os/json.c 1580 - tests/subsys/jwt/ 1581 labels: 1582 - "area: JSON" 1583 1584Kconfig: 1585 status: odd fixes 1586 collaborators: 1587 - tejlmand 1588 - nashif 1589 files: 1590 - scripts/kconfig/ 1591 - doc/build/kconfig/ 1592 labels: 1593 - "area: Kconfig" 1594 description: >- 1595 See https://docs.zephyrproject.org/latest/build/kconfig/index.html and 1596 https://docs.zephyrproject.org/latest/hardware/porting/board_porting.html#default-board-configuration 1597 1598Kernel: 1599 status: maintained 1600 maintainers: 1601 - andyross 1602 collaborators: 1603 - nashif 1604 - ceolin 1605 - dcpleung 1606 - peter-mitsis 1607 files: 1608 - doc/kernel/ 1609 - include/zephyr/kernel*.h 1610 - kernel/ 1611 - tests/kernel/ 1612 - include/zephyr/sys_clock.h 1613 - samples/kernel/ 1614 - include/zephyr/kernel/ 1615 - tests/lib/p4workq/ 1616 files-exclude: 1617 - tests/kernel/mem_protect/ 1618 labels: 1619 - "area: Kernel" 1620 1621Base OS: 1622 status: maintained 1623 maintainers: 1624 - andyross 1625 collaborators: 1626 - dcpleung 1627 - nashif 1628 files: 1629 - include/zephyr/sys/ 1630 - lib/os/ 1631 files-exclude: 1632 - include/zephyr/sys/cbprintf* 1633 - tests/unit/cbprintf/ 1634 - tests/lib/cbprintf_*/ 1635 - lib/os/cbprintf* 1636 - lib/os/Kconfig.cbprintf 1637 labels: 1638 - "area: Base OS" 1639 1640Laird Connectivity platforms: 1641 status: maintained 1642 maintainers: 1643 - rerickson1 1644 collaborators: 1645 - greg-leach 1646 files: 1647 - boards/arm/bl5340_dvk/ 1648 - boards/arm/bl65*/ 1649 - boards/arm/bt510/ 1650 - boards/arm/bt610/ 1651 - boards/arm/pinnacle_100_dvk/ 1652 - boards/arm/mg100/ 1653 labels: 1654 - "platform: Laird Connectivity" 1655 1656Little FS: 1657 status: odd fixes 1658 files: 1659 - subsys/fs/Kconfig.littlefs 1660 - subsys/fs/littlefs_fs.c 1661 - tests/subsys/fs/littlefs/ 1662 description: >- 1663 Little FS 1664 labels: 1665 - "area: File System" 1666 1667Logging: 1668 status: maintained 1669 maintainers: 1670 - nordic-krch 1671 collaborators: 1672 - aasthagr 1673 - dcpleung 1674 files: 1675 - include/zephyr/logging/ 1676 - samples/subsys/logging/ 1677 - subsys/logging/ 1678 - tests/subsys/logging/ 1679 - scripts/logging/ 1680 - doc/services/logging/ 1681 labels: 1682 - "area: Logging" 1683 1684MAINTAINERS file: 1685 status: maintained 1686 maintainers: 1687 - MaureenHelm 1688 collaborators: 1689 - nashif 1690 - stephanosio 1691 files: 1692 - MAINTAINERS.yml 1693 labels: 1694 - "area: Process" 1695 description: >- 1696 Zephyr Maintainers File 1697 1698Mbed TLS: 1699 status: maintained 1700 maintainers: 1701 - d3zd3z 1702 - ceolin 1703 files: 1704 - tests/crypto/mbedtls/ 1705 - doc/services/crypto/ 1706 - tests/benchmarks/mbedtls/ 1707 labels: 1708 - "area: Crypto / RNG" 1709 description: >- 1710 Mbed TLS module implementing the PSA Crypto API and TLS. 1711 1712MCU Manager: 1713 status: maintained 1714 maintainers: 1715 - nordicjm 1716 collaborators: 1717 - de-nordic 1718 files: 1719 - subsys/mgmt/mcumgr/ 1720 - include/zephyr/mgmt/mcumgr/ 1721 - samples/subsys/mgmt/mcumgr/ 1722 - tests/subsys/mgmt/mcumgr/ 1723 - doc/services/device_mgmt/ 1724 labels: 1725 - "area: mcumgr" 1726 1727Modbus: 1728 status: maintained 1729 maintainers: 1730 - jfischer-no 1731 files: 1732 - samples/subsys/modbus/ 1733 - include/zephyr/modbus/ 1734 - tests/subsys/modbus/ 1735 - subsys/modbus/ 1736 - doc/services/modbus/ 1737 labels: 1738 - "area: modbus" 1739 1740OSDP: 1741 status: maintained 1742 maintainers: 1743 - sidcha 1744 collaborators: 1745 - adakus 1746 - r2r0 1747 files: 1748 - subsys/mgmt/osdp/ 1749 - include/zephyr/mgmt/osdp.h 1750 - samples/subsys/mgmt/osdp/ 1751 labels: 1752 - "area: OSDP" 1753 1754hawkBit: 1755 status: odd fixes 1756 collaborators: 1757 - ycsin 1758 files: 1759 - subsys/mgmt/hawkbit/ 1760 - include/zephyr/mgmt/hawkbit.h 1761 - samples/subsys/mgmt/hawkbit/ 1762 labels: 1763 - "area: hawkBit" 1764 1765"mgmt: updatehub": 1766 status: maintained 1767 maintainers: 1768 - nandojve 1769 files: 1770 - subsys/mgmt/updatehub/ 1771 - samples/subsys/mgmt/updatehub/ 1772 labels: 1773 - "area: updatehub" 1774 description: >- 1775 UpdateHub embedded Firmware Over-The-Air (FOTA) upgrade agent 1776 1777Native POSIX and POSIX arch: 1778 status: maintained 1779 maintainers: 1780 - aescolar 1781 files: 1782 - arch/posix/ 1783 - boards/posix/native_posix/ 1784 - boards/posix/doc/ 1785 - boards/posix/*.rst 1786 - drivers/*/*native_posix* 1787 - drivers/*/*/*native_posix* 1788 - dts/posix/ 1789 - include/zephyr/arch/posix/ 1790 - scripts/valgrind.supp 1791 - soc/posix/ 1792 - tests/boards/native_posix/ 1793 labels: 1794 - "area: native port" 1795 description: >- 1796 POSIX architecture and SOC, native_posix board, and related drivers 1797 1798Networking: 1799 status: maintained 1800 maintainers: 1801 - rlubos 1802 collaborators: 1803 - tbursztyka 1804 files: 1805 - drivers/net/ 1806 - include/zephyr/net/ 1807 - samples/net/ 1808 - subsys/net/ 1809 - doc/connectivity/networking/ 1810 - tests/net/ 1811 files-exclude: 1812 - samples/net/sockets/coap_*/ 1813 - samples/net/lwm2m_client/ 1814 - subsys/net/lib/coap/ 1815 - subsys/net/lib/lwm2m/ 1816 - subsys/net/lib/tls_credentials/ 1817 labels: 1818 - "area: Networking" 1819 1820"Networking: BSD sockets": 1821 status: odd fixes 1822 collaborators: 1823 - rlubos 1824 files: 1825 - samples/net/sockets/ 1826 - subsys/net/lib/sockets/ 1827 - tests/net/socket/ 1828 labels: 1829 - "area: Sockets" 1830 1831"Networking: Buffers": 1832 status: maintained 1833 maintainers: 1834 - jhedberg 1835 collaborators: 1836 - rlubos 1837 - tbursztyka 1838 files: 1839 - include/zephyr/net/buf.h 1840 - subsys/net/buf.c 1841 - tests/net/buf/ 1842 labels: 1843 - "area: Networking" 1844 1845"Networking: CoAP": 1846 status: maintained 1847 maintainers: 1848 - rlubos 1849 collaborators: 1850 - pdgendt 1851 files: 1852 - subsys/net/lib/coap/ 1853 - samples/net/sockets/coap_*/ 1854 - tests/net/lib/coap/ 1855 labels: 1856 - "area: Networking" 1857 1858"Networking: LWM2M": 1859 status: maintained 1860 maintainers: 1861 - rlubos 1862 collaborators: 1863 - SeppoTakalo 1864 files: 1865 - samples/net/lwm2m_client/ 1866 - tests/net/lib/lwm2m/ 1867 - subsys/net/lib/lwm2m/ 1868 labels: 1869 - "area: LWM2M" 1870 1871"Networking: MQTT": 1872 status: maintained 1873 maintainers: 1874 - rlubos 1875 files: 1876 - subsys/net/lib/mqtt/ 1877 - tests/net/lib/mqtt_*/ 1878 - samples/net/cloud/mqtt_azure/ 1879 - samples/net/mqtt_publisher/ 1880 files-exclude: 1881 - tests/net/lib/mqtt_sn*/ 1882 labels: 1883 - "area: Networking" 1884 1885"Networking: MQTT-SN": 1886 status: maintained 1887 maintainers: 1888 - rlubos 1889 collaborators: 1890 - BeckmaR 1891 files: 1892 - subsys/net/lib/mqtt_sn/ 1893 - tests/net/lib/mqtt_sn*/ 1894 - samples/net/mqtt_sn_publisher/ 1895 labels: 1896 - "area: Networking" 1897 1898"Networking: OpenThread": 1899 status: maintained 1900 maintainers: 1901 - rlubos 1902 collaborators: 1903 - pdgendt 1904 - canisLupus1313 1905 - mariuszpos 1906 files: 1907 - subsys/net/l2/openthread/ 1908 - samples/net/openthread/ 1909 - tests/subsys/openthread/ 1910 labels: 1911 - "area: Networking" 1912 - "area: OpenThread" 1913 1914NIOS-2 arch: 1915 status: maintained 1916 maintainers: 1917 - nashif 1918 files: 1919 - arch/nios2/ 1920 - soc/nios2/ 1921 - include/zephyr/arch/nios2/ 1922 - tests/boards/altera_max10/ 1923 - boards/nios2/qemu_nios2/ 1924 labels: 1925 - "area: NIOS2" 1926 1927nRF52 BSIM: 1928 status: maintained 1929 maintainers: 1930 - aescolar 1931 files: 1932 - boards/posix/nrf52_bsim/ 1933 - tests/boards/nrf52_bsim/ 1934 - tests/bsim/ 1935 files-exclude: 1936 - tests/bsim/*/ 1937 labels: 1938 - "platform: nRF52 BSIM" 1939 1940POSIX API layer: 1941 status: maintained 1942 maintainers: 1943 - cfriedt 1944 files: 1945 - include/zephyr/posix/ 1946 - lib/posix/ 1947 - tests/posix/ 1948 - samples/posix/ 1949 - tests/lib/fdtable/ 1950 labels: 1951 - "area: POSIX" 1952 1953Power management: 1954 status: maintained 1955 maintainers: 1956 - ceolin 1957 collaborators: 1958 - nashif 1959 - gmarull 1960 - teburd 1961 - tmleman 1962 files: 1963 - include/zephyr/pm/ 1964 - samples/subsys/pm/ 1965 - subsys/pm/ 1966 - tests/subsys/pm/ 1967 - doc/services/pm/ 1968 - drivers/power_domain/ 1969 labels: 1970 - "area: Power Management" 1971 1972RISCV arch: 1973 status: maintained 1974 maintainers: 1975 - fkokosinski 1976 - kgugala 1977 - tgorochowik 1978 collaborators: 1979 - mgielda 1980 - katsuster 1981 - edersondisouza 1982 - carlocaione 1983 files: 1984 - arch/riscv/ 1985 - boards/riscv/ 1986 - dts/bindings/riscv/ 1987 - include/zephyr/arch/riscv/ 1988 - soc/riscv/ 1989 - tests/arch/riscv/ 1990 - doc/hardware/arch/risc-v.rst 1991 labels: 1992 - "area: RISCV" 1993 1994Retention: 1995 status: maintained 1996 maintainers: 1997 - nordicjm 1998 files: 1999 - dts/bindings/retention/ 2000 - include/zephyr/retention/ 2001 - subsys/retention/ 2002 labels: 2003 - "area: Retention" 2004 2005Twister: 2006 status: maintained 2007 maintainers: 2008 - nashif 2009 collaborators: 2010 - galak 2011 - PerMac 2012 - hakehuang 2013 - gopiotr 2014 - golowanow 2015 files: 2016 - scripts/twister 2017 - scripts/pylib/twister/ 2018 - scripts/tests/twister/ 2019 - doc/develop/test/twister.rst 2020 labels: 2021 - "area: Twister" 2022 2023Settings: 2024 status: odd fixes 2025 collaborators: 2026 - de-nordic 2027 files: 2028 - include/zephyr/settings/ 2029 - subsys/settings/ 2030 - tests/subsys/settings/ 2031 - samples/subsys/settings/ 2032 - doc/services/settings/ 2033 labels: 2034 - "area: Settings" 2035 2036Shell: 2037 status: maintained 2038 maintainers: 2039 - jakub-uC 2040 collaborators: 2041 - carlescufi 2042 files: 2043 - include/zephyr/shell/ 2044 - samples/subsys/shell/ 2045 - subsys/shell/ 2046 - tests/subsys/shell/ 2047 - doc/services/shell/ 2048 labels: 2049 - "area: Shell" 2050 2051Shields: 2052 status: maintained 2053 maintainers: 2054 - erwango 2055 collaborators: 2056 - avisconti 2057 - jfischer-no 2058 files: 2059 - boards/shields/ 2060 - doc/hardware/porting/shields.rst 2061 - samples/shields/ 2062 labels: 2063 - "area: Shields" 2064 2065SPARC arch: 2066 status: odd fixes 2067 collaborators: 2068 - julius-barendt 2069 files: 2070 - arch/sparc/ 2071 - include/zephyr/arch/sparc/ 2072 - soc/sparc/ 2073 - boards/sparc/ 2074 - dts/sparc/ 2075 labels: 2076 - "area: SPARC" 2077 2078State machine framework: 2079 status: maintained 2080 maintainers: 2081 - sambhurst 2082 collaborators: 2083 - keith-zephyr 2084 files: 2085 - doc/services/smf/ 2086 - include/zephyr/smf.h 2087 - lib/smf/ 2088 - tests/lib/smf/ 2089 labels: 2090 - "area: State Machine Framework" 2091 2092GD32 Platforms: 2093 status: maintained 2094 maintainers: 2095 - cameled 2096 - nandojve 2097 collaborators: 2098 - gmarull 2099 - soburi 2100 files: 2101 - boards/arm/gd32*/ 2102 - boards/riscv/gd32*/ 2103 - boards/riscv/longan_nano/ 2104 - drivers/*/*gd32*/ 2105 - drivers/*/*gd32* 2106 - dts/*/gigadevice/ 2107 - dts/bindings/*/*gd32* 2108 - soc/arm/gigadevice/ 2109 - soc/riscv/riscv-privileged/gd32vf103/ 2110 - scripts/west_commands/*/*gd32* 2111 labels: 2112 - "platform: GD32" 2113 description: >- 2114 GigaDevice GD32 SOCs, dts files and related drivers. Starter and eval 2115 boards. 2116 2117Synopsys Platforms: 2118 status: maintained 2119 maintainers: 2120 - ruuddw 2121 collaborators: 2122 - abrodkin 2123 - evgeniy-paltsev 2124 - IRISZZW 2125 files: 2126 - soc/arc/ 2127 - boards/arc/ 2128 - samples/boards/arc_secure_services/ 2129 labels: 2130 - "platform: Synopsys" 2131 2132Nuvoton NPCX Platforms: 2133 status: maintained 2134 maintainers: 2135 - MulinChao 2136 - ChiHuaL 2137 collaborators: 2138 - MulinChao 2139 - ChiHuaL 2140 - sjg20 2141 - keith-zephyr 2142 - jackrosenthal 2143 - fabiobaltieri 2144 files: 2145 - soc/arm/nuvoton_npcx/ 2146 - boards/arm/npcx*/ 2147 - dts/arm/nuvoton/ 2148 - dts/bindings/*/*npcx* 2149 - drivers/*/*_npcx*.c 2150 labels: 2151 - "platform: Nuvoton NPCX" 2152 2153Nuvoton Numicro Platforms: 2154 status: odd fixes 2155 collaborators: 2156 - ssekar15 2157 files: 2158 - soc/arm/nuvoton_numicro/ 2159 - boards/arm/nuvoton_pfm*/ 2160 - dts/arm/nuvoton/ 2161 - dts/bindings/*/*numicro* 2162 - drivers/*/*_numicro* 2163 labels: 2164 - "platform: Nuvoton Numicro" 2165 2166Raspberry Pi Pico Platforms: 2167 status: maintained 2168 maintainers: 2169 - yonsch 2170 collaborators: 2171 - soburi 2172 files: 2173 - boards/arm/rpi_pico/ 2174 - boards/arm/adafruit_kb2040/ 2175 - boards/arm/sparkfun_pro_micro_rp2040/ 2176 - dts/arm/rpi_pico/ 2177 - dts/bindings/*/raspberrypi,pico* 2178 - drivers/*/*rpi_pico 2179 - drivers/*/*rpi_pico*/ 2180 - drivers/*/*rpi_pico*.c 2181 - soc/arm/rpi_pico/ 2182 labels: 2183 - "platform: Raspberry Pi Pico" 2184 2185SiLabs Platforms: 2186 status: maintained 2187 maintainers: 2188 - fkokosinski 2189 collaborators: 2190 - tgorochowik 2191 files: 2192 - soc/arm/silabs_*/ 2193 - boards/arm/ef*/ 2194 - dts/arm/silabs/ 2195 - dts/bindings/*/silabs* 2196 - drivers/*/*_gecko* 2197 labels: 2198 - "platform: SiLabs" 2199 2200Intel Platforms (X86): 2201 status: maintained 2202 maintainers: 2203 - jhedberg 2204 collaborators: 2205 - tbursztyka 2206 - aasthagr 2207 - laurenmurphyx64 2208 - MaureenHelm 2209 files: 2210 - boards/x86/ 2211 - dts/x86/intel/ 2212 - soc/x86/ 2213 - samples/boards/up_squared/ 2214 labels: 2215 - "platform: X86" 2216 2217Intel Platforms (Xtensa): 2218 status: maintained 2219 maintainers: 2220 - nashif 2221 collaborators: 2222 - andyross 2223 - dcpleung 2224 - lyakh 2225 - lgirdwood 2226 - marc-hb 2227 - kv2019i 2228 - MaureenHelm 2229 - ceolin 2230 - aborisovich 2231 - tmleman 2232 - softwarecki 2233 - jxstelter 2234 - marcinszkudlinski 2235 files: 2236 - boards/xtensa/intel_*/ 2237 - soc/xtensa/intel_*/ 2238 - dts/xtensa/intel/ 2239 - tests/boards/intel_adsp/ 2240 - samples/boards/intel_adsp/ 2241 - dts/bindings/*/intel,adsp* 2242 labels: 2243 - "platform: Intel ADSP" 2244 2245NXP Platforms: 2246 status: maintained 2247 maintainers: 2248 - dleach02 2249 collaborators: 2250 - mmahadevan108 2251 - danieldegrasse 2252 - DerekSnell 2253 - yvanderv 2254 - EmilioCBen 2255 - decsny 2256 - manuargue 2257 - dbaluta 2258 - iuliana-prodan 2259 files: 2260 - boards/arm/mimx*/ 2261 - boards/arm/frdm_k*/ 2262 - boards/arm/lpcxpress*/ 2263 - boards/arm/twr_*/ 2264 - soc/arm/nxp_*/ 2265 - drivers/*/*imx* 2266 - drivers/*/*lpc*.c 2267 - drivers/*/*mcux*.c 2268 - dts/arm/nxp/ 2269 - dts/bindings/*/nxp* 2270 - soc/xtensa/nxp_adsp/ 2271 labels: 2272 - "platform: NXP" 2273 2274Microchip MEC Platforms: 2275 status: maintained 2276 maintainers: 2277 - jvasanth1 2278 collaborators: 2279 - VenkatKotakonda 2280 - albertofloyd 2281 files: 2282 - boards/arm/mec*/ 2283 - dts/arm/microchip/ 2284 - soc/arm/microchip_mec/ 2285 - drivers/*/*mchp*.c 2286 - tests/boards/mec15xxevb_assy6853/ 2287 - tests/boards/mec172xevb_assy6906/ 2288 - dts/bindings/*/microchip,* 2289 labels: 2290 - "platform: Microchip MEC" 2291 2292Microchip SAM Platforms: 2293 status: maintained 2294 maintainers: 2295 - nandojve 2296 collaborators: 2297 - attie-argentum 2298 - pdgendt 2299 - mnkp 2300 - stephanosio 2301 files: 2302 - boards/arm/atsam*/ 2303 - boards/arm/sam*/ 2304 - dts/arm/atmel/ 2305 - soc/arm/atmel_sam*/ 2306 - drivers/*/*sam*.c 2307 - dts/bindings/*/atmel,* 2308 labels: 2309 - "platform: Microchip SAM" 2310 2311nRF Platforms: 2312 status: maintained 2313 maintainers: 2314 - anangl 2315 files: 2316 - boards/arm/*nrf*/ 2317 - drivers/*/*nrfx*.c 2318 - soc/arm/nordic_nrf/ 2319 - samples/boards/nrf/ 2320 - dts/arm/nordic/ 2321 - dts/bindings/*/nordic,* 2322 - tests/drivers/timer/nrf_rtc_timer/ 2323 labels: 2324 - "platform: nRF" 2325 2326Renesas SmartBond Platforms: 2327 status: maintained 2328 maintainers: 2329 - andrzej-kaczmarek 2330 - blauret 2331 files: 2332 - boards/arm/da14*/ 2333 - drivers/*/*smartbond* 2334 - dts/arm/renesas/smartbond/ 2335 - dts/bindings/*/renesas,smartbond* 2336 - soc/arm/renesas_smartbond/ 2337 labels: 2338 - "platform: Renesas SmartBond" 2339 description: >- 2340 Renesas SmartBond SOCs, dts files, and related drivers. Renesas boards based 2341 on SmartBond SoCs. 2342 2343Renesas R-Car Platforms: 2344 status: maintained 2345 maintainers: 2346 - aaillet 2347 collaborators: 2348 - pmarzin 2349 files: 2350 - boards/arm/rcar_*/ 2351 - drivers/*/*rcar* 2352 - drivers/clock_control/*cpg_mssr* 2353 - dts/arm/renesas/gen3/ 2354 - dts/bindings/*/*rcar* 2355 - soc/arm/renesas_rcar/ 2356 labels: 2357 - "platform: Renesas R-Car" 2358 description: >- 2359 Renesas R-Car SOCs, dts files and related drivers. Renesas boards based 2360 on R-Car SOCs. 2361 2362STM32 Platforms: 2363 status: maintained 2364 maintainers: 2365 - erwango 2366 collaborators: 2367 - ABOSTM 2368 - FRASTM 2369 - gautierg-st 2370 - Desvauxm-st 2371 - GeorgeCGV 2372 files: 2373 - boards/arm/nucleo_*/ 2374 - boards/arm/stm32*_disco/ 2375 - boards/arm/stm32*_dk*/ 2376 - boards/arm/stm32*_eval/ 2377 - drivers/*/*stm32*/ 2378 - drivers/*/*stm32*.c 2379 - drivers/*/*stm32*.h 2380 - drivers/*/*/*stm32* 2381 - dts/arm/st/ 2382 - dts/bindings/*/*stm32* 2383 - soc/arm/st_stm32/ 2384 - samples/boards/stm32/ 2385 labels: 2386 - "platform: STM32" 2387 description: >- 2388 STM32 SOCs, dts files and related drivers. ST nucleo, disco and eval 2389 boards. 2390 2391Espressif Platforms: 2392 status: maintained 2393 maintainers: 2394 - sylvioalves 2395 collaborators: 2396 - LucasTambor 2397 - marekmatej 2398 - uLipe 2399 files: 2400 - drivers/*/*esp32*.c 2401 - boards/xtensa/esp32*/ 2402 - soc/xtensa/esp32*/ 2403 - boards/riscv/esp32*/ 2404 - soc/riscv/esp32*/ 2405 - dts/xtensa/espressif/ 2406 - dts/riscv/espressif/ 2407 - dts/bindings/*/*esp32* 2408 - samples/boards/esp32*/ 2409 - tests/boards/espressif_esp32/ 2410 - drivers/wifi/esp32/ 2411 labels: 2412 - "platform: ESP32" 2413 2414ITE Platforms: 2415 status: maintained 2416 maintainers: 2417 - Dino-Li 2418 - GTLin08 2419 - RuibinChang 2420 collaborators: 2421 - Dino-Li 2422 - GTLin08 2423 - RuibinChang 2424 - jackrosenthal 2425 - keith-zephyr 2426 - brockus-zephyr 2427 - sjg20 2428 files: 2429 - boards/riscv/it8xxx2_evb/ 2430 - drivers/*/*/*it8xxx2*.c 2431 - drivers/*/*it8xxx2*.c 2432 - dts/bindings/*/*ite* 2433 - dts/riscv/ite/ 2434 - soc/riscv/riscv-ite/ 2435 labels: 2436 - "platform: ITE" 2437 2438TI SimpleLink Platforms: 2439 status: maintained 2440 maintainers: 2441 - vaishnavachath 2442 collaborators: 2443 - vanti 2444 - cfriedt 2445 files: 2446 - boards/arm/cc13*/ 2447 - boards/arm/cc26*/ 2448 - boards/arm/cc32*/ 2449 - boards/*/msp*/ 2450 - drivers/*/*cc13*/ 2451 - drivers/*/*cc25*/ 2452 - drivers/*/*cc26*/ 2453 - drivers/*/*cc32*/ 2454 - dts/arm/ti/ 2455 - dts/bindings/*/ti,* 2456 - soc/arm/ti*/ 2457 - dts/bindings/*/ti,* 2458 labels: 2459 - "platform: TI SimpleLink" 2460 2461TI Sitara Platforms: 2462 status: maintained 2463 maintainers: 2464 - vaishnavachath 2465 collaborators: 2466 - gramsay0 2467 files: 2468 - boards/arm64/phycore*/ 2469 - dts/arm64/ti/ 2470 - soc/arm64/ti_sitara/ 2471 labels: 2472 - "platform: TI Sitara" 2473 2474Xilinx Platforms: 2475 status: odd fixes 2476 collaborators: 2477 - henrikbrixandersen 2478 - ibirnbaum 2479 files: 2480 - drivers/*/*xlnx* 2481 - dts/*/xilinx/ 2482 - dts/bindings/*/*xlnx* 2483 - include/zephyr/*/*/*xlnx* 2484 - soc/arm/xilinx*/ 2485 labels: 2486 - "platform: Xilinx" 2487 2488Infineon Platforms: 2489 status: maintained 2490 maintainers: 2491 - ifyall 2492 collaborators: 2493 - npal-cy 2494 - talih0 2495 files: 2496 - boards/arm/cy8ckit_*/ 2497 - boards/arm/cy8cproto_*/ 2498 - boards/arm/xmc*_relax*/ 2499 - drivers/*/*ifx_cat1*/ 2500 - drivers/*/*ifx_cat1*.c 2501 - drivers/*/*ifx_cat1* 2502 - drivers/*/*xmc*/ 2503 - drivers/*/*xmc*.c 2504 - drivers/*/*/*xmc* 2505 - dts/arm/infineon/ 2506 - dts/bindings/*/*infineon* 2507 - soc/arm/infineon_*/ 2508 labels: 2509 - "platform: Infineon" 2510 description: >- 2511 Infineon SOCs, dts files and related drivers. Infineon Proto, Pioneer, Eval and Relax 2512 boards. 2513 2514RTIO: 2515 status: maintained 2516 maintainers: 2517 - teburd 2518 collaborators: 2519 - yperess 2520 files: 2521 - samples/subsys/rtio/ 2522 - include/zephyr/rtio/ 2523 - tests/subsys/rtio/ 2524 - subsys/rtio/ 2525 - doc/services/rtio/ 2526 labels: 2527 - "area: RTIO" 2528 2529Storage: 2530 status: odd fixes 2531 files: 2532 - subsys/storage/ 2533 - include/zephyr/storage/ 2534 - tests/subsys/storage/ 2535 - doc/services/storage/ 2536 labels: 2537 - "area: Storage" 2538 2539Sysbuild: 2540 status: maintained 2541 maintainers: 2542 - tejlmand 2543 collaborators: 2544 - nordicjm 2545 files: 2546 - share/sysbuild/ 2547 - samples/application_development/sysbuild/ 2548 - doc/build/sysbuild/ 2549 labels: 2550 - "area: Sysbuild" 2551 2552Task Watchdog: 2553 status: maintained 2554 maintainers: 2555 - martinjaeger 2556 files: 2557 - include/zephyr/task_wdt/ 2558 - samples/subsys/task_wdt/ 2559 - subsys/task_wdt/ 2560 - doc/services/task_wdt/index.rst 2561 labels: 2562 - "area: Task Watchdog" 2563 2564TF-M Integration: 2565 status: maintained 2566 maintainers: 2567 - microbuilder 2568 collaborators: 2569 - joerchan 2570 files: 2571 - samples/tfm_integration/ 2572 - modules/trusted-firmware-m/ 2573 - doc/services/tfm/ 2574 labels: 2575 - "area: TF-M" 2576 2577Toolchain Integration: 2578 status: maintained 2579 maintainers: 2580 - tejlmand 2581 collaborators: 2582 - stephanosio 2583 files: 2584 - cmake/bintools/ 2585 - cmake/compiler/ 2586 - cmake/linker/ 2587 - cmake/toolchain/ 2588 labels: 2589 - "area: Toolchains" 2590 2591Tracing: 2592 status: maintained 2593 maintainers: 2594 - nashif 2595 collaborators: 2596 - teburd 2597 files: 2598 - subsys/tracing/ 2599 - include/zephyr/tracing/ 2600 - subsys/timing/ 2601 - samples/subsys/tracing/ 2602 - doc/services/tracing/ 2603 - tests/subsys/tracing/ 2604 labels: 2605 - "area: tracing" 2606 2607USB: 2608 status: maintained 2609 maintainers: 2610 - jfischer-no 2611 collaborators: 2612 - tmon-nordic 2613 files: 2614 - drivers/usb/ 2615 - dts/bindings/usb/ 2616 - include/zephyr/*/usb/ 2617 - include/zephyr/usb/ 2618 - samples/subsys/usb/ 2619 - subsys/usb/ 2620 - tests/subsys/usb/ 2621 - tests/drivers/udc/ 2622 - doc/connectivity/usb/ 2623 labels: 2624 - "area: USB" 2625 2626USB-C: 2627 status: maintained 2628 maintainers: 2629 - sambhurst 2630 collaborators: 2631 - keith-zephyr 2632 files: 2633 - drivers/usb_c/ 2634 - dts/bindings/usb-c/ 2635 - include/zephyr/*/usb_c/ 2636 - include/zephyr/usb_c/ 2637 - samples/subsys/usb_c/ 2638 - subsys/usb/usb_c/ 2639 - doc/connectivity/usb/pd/ 2640 labels: 2641 - "area: USB-C" 2642 2643Userspace: 2644 status: maintained 2645 maintainers: 2646 - dcpleung 2647 collaborators: 2648 - ceolin 2649 files: 2650 - doc/kernel/usermode/kernelobjects.rst 2651 - include/zephyr/app_memory/ 2652 - include/zephyr/linker/app_smem*.ld 2653 - tests/kernel/mem_protect/ 2654 - samples/userspace/ 2655 - include/zephyr/syscall.h 2656 - kernel/userspace* 2657 - scripts/build/gen_app_partitions.py 2658 - scripts/build/gen_kobject_list.py 2659 - scripts/build/gen_syscalls.py 2660 - scripts/build/process_gperf.py 2661 - scripts/build/gen_relocate_app.py 2662 - include/zephyr/sys/kobject.h 2663 labels: 2664 - "area: Userspace" 2665 2666VFS: 2667 status: maintained 2668 maintainers: 2669 - de-nordic 2670 files: 2671 - subsys/fs/fat_fs.c 2672 - tests/subsys/fs/fat_fs_api/ 2673 description: >- 2674 VFS implementation 2675 2676 labels: 2677 - "area: File System" 2678 2679West: 2680 status: maintained 2681 maintainers: 2682 - mbolivar-nordic 2683 collaborators: 2684 - carlescufi 2685 - swinslow 2686 files: 2687 - scripts/west-commands.yml 2688 - scripts/west_commands/ 2689 - doc/develop/west/ 2690 labels: 2691 - "area: West" 2692 2693"West project: canopennode": 2694 status: maintained 2695 maintainers: 2696 - henrikbrixandersen 2697 files: 2698 - modules/canopennode/ 2699 labels: 2700 - manifest-canopennode 2701 - "area: CAN" 2702 2703"West project: chre": 2704 status: maintained 2705 maintainers: 2706 - yperess 2707 files: 2708 - samples/modules/chre/ 2709 labels: 2710 - manifest-chre 2711 2712"West project: cmsis": 2713 status: maintained 2714 maintainers: 2715 - stephanosio 2716 collaborators: 2717 - microbuilder 2718 - povergoing 2719 files: 2720 - modules/Kconfig.cmsis 2721 - modules/Kconfig.cmsis_dsp 2722 - modules/Kconfig.cmsis_nn 2723 labels: 2724 - manifest-cmsis 2725 2726"West project: edtt": 2727 status: maintained 2728 maintainers: 2729 - aescolar 2730 collaborators: 2731 - wopu-ot 2732 - thoh-ot 2733 files: [] 2734 labels: 2735 - manifest-edtt 2736 2737"West project: fatfs": 2738 status: maintained 2739 maintainers: 2740 - de-nordic 2741 files: 2742 - modules/fatfs/ 2743 labels: 2744 - manifest-fatfs 2745 2746"West project: hal_altera": 2747 status: odd fixes 2748 collaborators: 2749 - nashif 2750 files: 2751 - modules/Kconfig.altera 2752 labels: 2753 - manifest-hal_altera 2754 2755"West project: hal_atmel": 2756 status: maintained 2757 maintainers: 2758 - nandojve 2759 collaborators: 2760 - pdgendt 2761 files: 2762 - modules/Kconfig.atmel 2763 labels: 2764 - manifest-hal_atmel 2765 2766"West project: hal_cypress": 2767 status: maintained 2768 maintainers: 2769 - ifyall 2770 collaborators: 2771 - nashif 2772 - npal-cy 2773 files: 2774 - modules/Kconfig.cypress 2775 labels: 2776 - manifest-hal_cypress 2777 2778"West project: hal_espressif": 2779 status: maintained 2780 maintainers: 2781 - sylvioalves 2782 - glaubermaroto 2783 - uLipe 2784 collaborators: 2785 - LucasTambor 2786 files: [] 2787 labels: 2788 - manifest-hal_espressif 2789 2790"West project: hal_gigadevice": 2791 status: maintained 2792 maintainers: 2793 - nandojve 2794 collaborators: 2795 - gmarull 2796 - soburi 2797 files: 2798 - modules/hal_gigadevice/ 2799 labels: 2800 - manifest-hal_gigadevice 2801 2802"West project: hal_infineon": 2803 status: maintained 2804 maintainers: 2805 - ifyall 2806 collaborators: 2807 - parthitce 2808 - talih0 2809 - npal-cy 2810 files: 2811 - modules/Kconfig.infineon 2812 - modules/hal_infineon/ 2813 labels: 2814 - manifest-hal_infineon 2815 2816"West project: hal_microchip": 2817 status: maintained 2818 maintainers: 2819 - jvasanth1 2820 collaborators: 2821 - VenkatKotakonda 2822 - albertofloyd 2823 files: 2824 - modules/Kconfig.microchip 2825 labels: 2826 - manifest-hal_microchip 2827 2828"West project: hal_nordic": 2829 status: maintained 2830 maintainers: 2831 - anangl 2832 collaborators: 2833 - hubertmis 2834 - nordic-krch 2835 files: 2836 - modules/hal_nordic/ 2837 labels: 2838 - manifest-hal_nordic 2839 2840"West project: hal_nuvoton": 2841 status: maintained 2842 maintainers: 2843 - ssekar15 2844 files: 2845 - modules/Kconfig.nuvoton 2846 labels: 2847 - manifest-hal_nuvoton 2848 2849"West project: hal_nxp": 2850 status: maintained 2851 maintainers: 2852 - dleach02 2853 collaborators: 2854 - mmahadevan108 2855 - danieldegrasse 2856 files: 2857 - modules/hal_nxp/ 2858 - modules/Kconfig.imx 2859 - modules/Kconfig.mcux 2860 labels: 2861 - manifest-hal_nxp 2862 2863"West project: hal_openisa": 2864 status: odd fixes 2865 collaborators: 2866 - dleach02 2867 files: 2868 - modules/Kconfig.vega 2869 labels: 2870 - manifest-hal_openisa 2871 2872"West project: hal_quicklogic": 2873 status: odd fixes 2874 collaborators: 2875 - fkokosinski 2876 files: [] 2877 labels: 2878 - manifest-hal_quicklogic 2879 2880"West project: hal_renesas": 2881 status: maintained 2882 maintainers: 2883 - andrzej-kaczmarek 2884 files: [] 2885 labels: 2886 - manifest-hal_renesas 2887 2888"West project: hal_rpi_pico": 2889 status: maintained 2890 maintainers: 2891 - yonsch 2892 files: 2893 - modules/hal_rpi_pico/ 2894 labels: 2895 - manifest-hal_rpi_pico 2896 2897"West project: hal_silabs": 2898 status: maintained 2899 maintainers: 2900 - fkokosinski 2901 collaborators: 2902 - sateeshkotapati 2903 - yonsch 2904 - mnkp 2905 files: 2906 - modules/Kconfig.silabs 2907 labels: 2908 - manifest-hal_silabs 2909 2910"West project: hal_st": 2911 status: maintained 2912 maintainers: 2913 - avisconti 2914 collaborators: 2915 - erwango 2916 files: 2917 - modules/Kconfig.st 2918 labels: 2919 - manifest-hal_st 2920 2921"West project: hal_stm32": 2922 status: maintained 2923 maintainers: 2924 - erwango 2925 collaborators: 2926 - FRASTM 2927 - ABOSTM 2928 - gautierg-st 2929 - Desvauxm-st 2930 files: 2931 - modules/Kconfig.stm32 2932 labels: 2933 - manifest-hal_stm32 2934 2935"West project: hal_telink": 2936 status: maintained 2937 maintainers: 2938 - andy-liu-telink 2939 files: 2940 - modules/Kconfig.telink 2941 labels: 2942 - manifest-hal_telink 2943 2944"West project: hal_ti": 2945 status: odd fixes 2946 collaborators: 2947 - cfriedt 2948 files: [] 2949 labels: 2950 - manifest-hal_ti 2951 2952"West project: hal_wurthelektronik": 2953 status: maintained 2954 maintainers: 2955 - mah-eiSmart 2956 files: 2957 - modules/Kconfig.wurthelektronik 2958 labels: 2959 - manifest-hal_wurthelektronik 2960 2961"West project: hal_xtensa": 2962 status: maintained 2963 maintainers: 2964 - dcpleung 2965 collaborators: 2966 - andyross 2967 - nashif 2968 files: 2969 - modules/Kconfig.xtensa 2970 labels: 2971 - manifest-hal_xtensa 2972 2973"West project: libmetal": 2974 status: odd fixes 2975 collaborators: 2976 - carlocaione 2977 - arnopo 2978 files: 2979 - modules/Kconfig.libmetal 2980 labels: 2981 - manifest-libmetal 2982 2983"West project: liblc3": 2984 status: maintained 2985 maintainers: 2986 - Casper-Bonde-Bose 2987 - MariuszSkamra 2988 collaborators: 2989 - thalley 2990 - asbjornsabo 2991 files: 2992 - modules/liblc3/ 2993 labels: 2994 - manifest-liblc3 2995 2996"West project: littlefs": 2997 status: odd fixes 2998 files: 2999 - modules/littlefs/ 3000 labels: 3001 - manifest-littlefs 3002 3003"West project: loramac-node": 3004 status: maintained 3005 maintainers: 3006 - Mani-Sadhasivam 3007 files: 3008 - modules/loramac-node/ 3009 labels: 3010 - manifest-loramac-node 3011 3012"West project: lvgl": 3013 status: odd fixes 3014 collaborators: 3015 - brgl 3016 - pdgendt 3017 files: 3018 - modules/Kconfig.lvgl 3019 - tests/lib/gui/lvgl/ 3020 labels: 3021 - manifest-lvgl 3022 3023"West project: lz4": 3024 status: odd fixes 3025 collaborators: 3026 - Navin-Sankar 3027 files: 3028 - modules/lz4/ 3029 labels: 3030 - manifest-lz4 3031 3032"West project: mbedtls": 3033 status: maintained 3034 maintainers: 3035 - d3zd3z 3036 - ceolin 3037 files: 3038 - modules/mbedtls/ 3039 labels: 3040 - manifest-mbedtls 3041 3042"West project: mcuboot": 3043 status: maintained 3044 maintainers: 3045 - d3zd3z 3046 collaborators: 3047 - de-nordic 3048 - nordicjm 3049 files: 3050 - modules/Kconfig.mcuboot 3051 - tests/boot/test_mcuboot/ 3052 labels: 3053 - manifest-mcuboot 3054 3055"West project: mipi-sys-t": 3056 status: odd fixes 3057 collaborators: 3058 - dcpleung 3059 files: 3060 - modules/Kconfig.syst 3061 labels: 3062 - manifest-mipi-sys-t 3063 3064"West project: nanopb": 3065 status: odd fixes 3066 collaborators: 3067 - pdgendt 3068 files: 3069 - modules/nanopb/ 3070 - samples/modules/nanopb/ 3071 labels: 3072 - manifest-nanopb 3073 3074"West project: net-tools": 3075 status: odd fixes 3076 maintainers: 3077 - rlubos 3078 collaborators: 3079 - jukkar 3080 files: [] 3081 labels: 3082 - manifest-net-tools 3083 3084"West project: nrf_hw_models": 3085 status: maintained 3086 maintainers: 3087 - aescolar 3088 collaborators: 3089 - wopu-ot 3090 - thoh-ot 3091 files: [] 3092 labels: 3093 - manifest-nrf_hw_models 3094 3095"West project: open-amp": 3096 status: odd fixes 3097 collaborators: 3098 - carlocaione 3099 files: 3100 - modules/Kconfig.open-amp 3101 labels: 3102 - manifest-open-amp 3103 3104"West project: openthread": 3105 status: maintained 3106 maintainers: 3107 - rlubos 3108 collaborators: 3109 - pdgendt 3110 - canisLupus1313 3111 - mariuszpos 3112 files: 3113 - modules/openthread/ 3114 labels: 3115 - manifest-openthread 3116 3117"West project: picolibc": 3118 status: maintained 3119 maintainers: 3120 - keith-packard 3121 collaborators: 3122 - stephanosio 3123 files: [] 3124 labels: 3125 - manifest-picolibc 3126 3127"West project: segger": 3128 status: odd fixes 3129 collaborators: 3130 - nordic-krch 3131 files: 3132 - modules/segger/ 3133 labels: 3134 - manifest-segger 3135 3136"West project: sof": 3137 status: maintained 3138 maintainers: 3139 - kv2019i 3140 collaborators: 3141 - andyross 3142 - nashif 3143 - lyakh 3144 - lgirdwood 3145 - marc-hb 3146 files: 3147 - modules/Kconfig.sof 3148 labels: 3149 - manifest-sof 3150 3151"West project: tflite-micro": 3152 status: odd fixes 3153 collaborators: 3154 - laurenmurphyx64 3155 files: 3156 - modules/tflite-micro/ 3157 - samples/modules/tflite-micro/ 3158 labels: 3159 - manifest-tflite-micro 3160 3161"West project: thrift": 3162 status: maintained 3163 maintainers: 3164 - cfriedt 3165 files: 3166 - modules/thrift/ 3167 - samples/modules/thrift/ 3168 - tests/lib/thrift/ 3169 labels: 3170 - manifest-thrift 3171 3172"West project: tinycrypt": 3173 status: odd fixes 3174 files: 3175 - modules/Kconfig.tinycrypt 3176 labels: 3177 - manifest-tinycrypt 3178 3179"West project: TraceRecorderSource": 3180 status: maintained 3181 maintainers: 3182 - eriktamlin 3183 files: 3184 - modules/TraceRecorder/ 3185 labels: 3186 - manifest-TraceRecorderSource 3187 3188"West project: trusted-firmware-m": 3189 status: maintained 3190 maintainers: 3191 - microbuilder 3192 collaborators: 3193 - joerchan 3194 - SebastianBoe 3195 - theotherjimmy 3196 files: 3197 - modules/trusted-firmware-m/ 3198 labels: 3199 - manifest-trusted-firmware-m 3200 3201"West project: tf-m-tests": 3202 status: maintained 3203 maintainers: 3204 - microbuilder 3205 collaborators: 3206 - joerchan 3207 - SebastianBoe 3208 - theotherjimmy 3209 files: [] 3210 labels: 3211 - manifest-tf-m-tests 3212 3213"West project: trusted-firmware-a": 3214 status: maintained 3215 maintainers: 3216 - povergoing 3217 - sgrrzhf 3218 collaborators: 3219 - carlocaione 3220 files: 3221 - modules/trusted-firmware-a/ 3222 labels: 3223 - manifest-trusted-firmware-a 3224 3225"West project: psa-arch-tests": 3226 status: maintained 3227 maintainers: 3228 - microbuilder 3229 collaborators: 3230 - joerchan 3231 - SebastianBoe 3232 - theotherjimmy 3233 files: [] 3234 labels: 3235 - manifest-psa-arch-tests 3236 3237"West project: uoscore-uedhoc": 3238 status: maintained 3239 maintainers: 3240 - rlubos 3241 - StefanHri 3242 files: 3243 - modules/uoscore-uedhoc/ 3244 labels: 3245 - manifest-uoscore-uedhoc 3246 3247"West project: zcbor": 3248 status: maintained 3249 maintainers: 3250 - de-nordic 3251 files: 3252 - modules/zcbor/ 3253 labels: 3254 - manifest-zcbor 3255 3256"West project: zscilib": 3257 status: maintained 3258 maintainers: 3259 - microbuilder 3260 files: [] 3261 labels: 3262 - manifest-zscilib 3263 3264Xtensa arch: 3265 status: maintained 3266 maintainers: 3267 - dcpleung 3268 collaborators: 3269 - andyross 3270 - nashif 3271 files: 3272 - arch/xtensa/ 3273 - include/zephyr/arch/xtensa/ 3274 - dts/xtensa/ 3275 - boards/xtensa/qemu_xtensa/ 3276 - boards/xtensa/xt-sim/ 3277 labels: 3278 - "area: Xtensa" 3279 3280x86 arch: 3281 status: maintained 3282 maintainers: 3283 - jhedberg 3284 collaborators: 3285 - tbursztyka 3286 - andyross 3287 - nashif 3288 - dcpleung 3289 - ceolin 3290 - aasthagr 3291 - laurenmurphyx64 3292 files: 3293 - arch/x86/ 3294 - include/zephyr/arch/x86/ 3295 - tests/arch/x86/ 3296 - drivers/interrupt_controller/*intel* 3297 - drivers/interrupt_controller/*ioapic* 3298 - drivers/interrupt_controller/*loapic* 3299 - doc/hardware/arch/x86.rst 3300 labels: 3301 - "area: X86" 3302 3303Continuous Integration: 3304 status: maintained 3305 maintainers: 3306 - stephanosio 3307 - nashif 3308 - galak 3309 files: 3310 - .github/ 3311 - scripts/ci/ 3312 - .checkpatch.conf 3313 - scripts/gitlint/ 3314 labels: 3315 - "area: Continuous Integration" 3316 3317ZTest: 3318 status: maintained 3319 maintainers: 3320 - nashif 3321 collaborators: 3322 - aaronemassey 3323 - jeremybettis 3324 - yperess 3325 - asemjonovs 3326 files: 3327 - subsys/testsuite/ 3328 - tests/ztest/ 3329 - tests/unit/util/ 3330 - samples/subsys/testsuite/ 3331 - doc/develop/test/ztest.rst 3332 labels: 3333 - "area: Testsuite" 3334 3335Emulation: 3336 status: maintained 3337 maintainers: 3338 - yperess 3339 collaborators: 3340 - aaronemassey 3341 - jeremybettis 3342 - alevkoy 3343 - asemjonovs 3344 files: 3345 - subsys/emul/ 3346 - include/zephyr/drivers/emul.h 3347 - include/zephyr/drivers/espi_emul.h 3348 - include/zephyr/drivers/i2c_emul.h 3349 - include/zephyr/drivers/spi_emul.h 3350 - tests/subsys/emul/ 3351 - doc/hardware/emulator/ 3352 labels: 3353 - "area: HW Emulation" 3354 3355Random: 3356 status: odd fixes 3357 collaborators: 3358 - ceolin 3359 files: 3360 - subsys/random/ 3361 - include/zephyr/random/ 3362 labels: 3363 - "area: Random" 3364 3365# This area is to be converted to a subarea 3366Testing with Renode: 3367 status: maintained 3368 collaborators: 3369 - mateusz-holenko 3370 - fkokosinski 3371 files: 3372 - cmake/emu/renode.cmake 3373 - boards/*/*/support/*.repl 3374 - boards/*/*/support/*.resc 3375 labels: 3376 - "area: Renode" 3377 3378zbus: 3379 status: maintained 3380 maintainers: 3381 - rodrigopex 3382 files: 3383 - samples/subsys/zbus/ 3384 - include/zephyr/zbus/ 3385 - tests/subsys/zbus/ 3386 - subsys/zbus/ 3387 - doc/services/zbus/ 3388 labels: 3389 - "area: zbus" 3390