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 114ACPI: 115 status: maintained 116 maintainers: 117 - jhedberg 118 - najumon1980 119 collaborators: 120 - finikorg 121 - tbursztyka 122 files: 123 - lib/acpi/ 124 - include/zephyr/acpi/ 125 - tests/lib/acpi/ 126 labels: 127 - "area: ACPI" 128 tests: 129 - acpi 130 131ARC arch: 132 status: maintained 133 maintainers: 134 - ruuddw 135 collaborators: 136 - abrodkin 137 - evgeniy-paltsev 138 - SiyuanCheng-CN 139 files: 140 - arch/arc/ 141 - include/zephyr/arch/arc/ 142 - tests/arch/arc/ 143 - dts/arc/synopsys/ 144 - doc/hardware/arch/arc-support-status.rst 145 labels: 146 - "area: ARC" 147 tests: 148 - arch.arc 149 150ARM arch: 151 status: maintained 152 maintainers: 153 - microbuilder 154 collaborators: 155 - carlocaione 156 - galak 157 - MaureenHelm 158 - stephanosio 159 - bbolen 160 - povergoing 161 - ithinuel 162 - sgrrzhf 163 files: 164 - arch/arm/ 165 - arch/arm/core/offsets/ 166 - include/zephyr/arch/arm/ 167 - tests/arch/arm/ 168 - doc/hardware/arch/arm_cortex_m.rst 169 - boards/arm/qemu_cortex_m3/ 170 - boards/arm/qemu_cortex_m0/ 171 - soc/arm/* 172 labels: 173 - "area: ARM" 174 tests: 175 - arch.arm 176 177ARM64 arch: 178 status: maintained 179 maintainers: 180 - carlocaione 181 collaborators: 182 - npitre 183 - povergoing 184 - sgrrzhf 185 files: 186 - arch/arm64/ 187 - include/zephyr/arch/arm64/ 188 - tests/arch/arm64/ 189 - soc/arm64/ 190 - boards/arm64/ 191 - dts/arm64/ 192 labels: 193 - "area: ARM64" 194 tests: 195 - arch.arm64 196 197ARM Platforms: 198 status: odd fixes 199 files: 200 - boards/arm/mps*/ 201 - soc/arm/arm/ 202 - boards/arm/v2m_*/ 203 - dts/arm/armv*.dtsi 204 labels: 205 - "platform: ARM" 206 207ASPEED Platforms: 208 status: odd fixes 209 files: 210 - soc/arm/aspeed/ 211 - dts/arm/aspeed/ 212 - drivers/*/*_ast10x0.c 213 - drivers/*/Kconfig.aspeed 214 labels: 215 - "platform: ASPEED" 216 217ARM SiP SVC: 218 status: odd fixes 219 files: 220 - subsys/sip_svc/ 221 - tests/subsys/sip_svc/ 222 - include/zephyr/sip_svc/ 223 - include/zephyr/drivers/sip_svc/ 224 - drivers/sip_svc/ 225 labels: 226 - "area: ARM SiP SVC" 227 tests: 228 - sip_svc 229 230MIPS arch: 231 status: odd fixes 232 files: 233 - soc/mips/ 234 - arch/mips/ 235 - include/zephyr/arch/mips/ 236 - boards/mips/ 237 labels: 238 - "area: MIPS" 239 tests: 240 - arch.mips 241 242Ambiq Platforms: 243 status: maintained 244 maintainers: 245 - fkokosinski 246 collaborators: 247 - tgorochowik 248 - msobkowski 249 - aaronyegx 250 - RichardSWheatley 251 files: 252 - soc/arm/ambiq/ 253 - boards/arm/apollo*/ 254 - dts/arm/ambiq/ 255 - dts/bindings/*/ambiq,* 256 - drivers/*/*ambiq* 257 - drivers/*/*/*ambiq* 258 - drivers/*/*/*apollo* 259 labels: 260 - "platform: Ambiq" 261 262BeagleBoard Platforms: 263 status: maintained 264 maintainers: 265 - jadonk 266 collaborators: 267 - ayush1325 268 - con-pax 269 - vaishnavachath 270 files: 271 - boards/arm/beagle*/ 272 - boards/riscv/beagle*/ 273 labels: 274 - "platform: BeagleBoard" 275 276Benchmarks: 277 status: maintained 278 maintainers: 279 - peter-mitsis 280 collaborators: 281 - nashif 282 - dcpleung 283 files: 284 - tests/benchmarks/ 285 labels: 286 - "area: Benchmarks" 287 288Binary Descriptors: 289 status: maintained 290 maintainers: 291 - yonsch 292 files: 293 - subsys/bindesc/ 294 - include/zephyr/bindesc.h 295 - samples/subsys/bindesc/ 296 - scripts/west_commands/bindesc.py 297 - tests/subsys/bindesc/ 298 labels: 299 - "area: Binary Descriptors" 300 tests: 301 - bindesc 302 303Bluetooth: 304 status: maintained 305 maintainers: 306 - jhedberg 307 collaborators: 308 - hermabe 309 - Vudentz 310 - Thalley 311 - asbjornsabo 312 - sjanc 313 files: 314 - doc/connectivity/bluetooth/ 315 - include/zephyr/bluetooth/ 316 - samples/bluetooth/ 317 - subsys/bluetooth/ 318 - subsys/bluetooth/common/ 319 - tests/bluetooth/ 320 - tests/bsim/bluetooth/ 321 files-exclude: 322 - include/zephyr/bluetooth/mesh/ 323 - subsys/bluetooth/controller/ 324 - subsys/bluetooth/host/ 325 - subsys/bluetooth/mesh/ 326 - samples/bluetooth/mesh/ 327 - subsys/bluetooth/audio/ 328 - include/zephyr/bluetooth/audio/ 329 - tests/bsim/bluetooth/audio/ 330 - tests/bsim/bluetooth/host/ 331 - tests/bsim/bluetooth/ll/ 332 - tests/bluetooth/controller/ 333 - tests/bluetooth/host*/ 334 - tests/bluetooth/mesh_*/ 335 - tests/bluetooth/mesh/ 336 - tests/bluetooth/audio/ 337 - tests/bsim/bluetooth/mesh/ 338 - tests/bluetooth/shell/audio* 339 labels: 340 - "area: Bluetooth" 341 tests: 342 - bluetooth 343 344Bluetooth HCI: 345 status: maintained 346 maintainers: 347 - jhedberg 348 - jori-nordic 349 collaborators: 350 - hermabe 351 - alwa-nordic 352 - Thalley 353 - sjanc 354 - theob-pro 355 - HoZHel 356 files: 357 - include/zephyr/drivers/bluetooth/ 358 - drivers/bluetooth/ 359 - samples/bluetooth/hci_*/ 360 labels: 361 - "area: Bluetooth Host" 362 - "area: Bluetooth" 363 tests: 364 - bluetooth 365 366Bluetooth controller: 367 status: maintained 368 maintainers: 369 - cvinayak 370 collaborators: 371 - carlescufi 372 - thoh-ot 373 - kruithofa 374 - ppryga 375 - mtpr-ot 376 - wopu-ot 377 - erbr-ot 378 files: 379 - subsys/bluetooth/controller/ 380 - tests/bluetooth/controller/ 381 - tests/bsim/bluetooth/ll/ 382 labels: 383 - "area: Bluetooth Controller" 384 - "area: Bluetooth" 385 tests: 386 - bluetooth.controller 387 388Bluetooth Host: 389 status: maintained 390 maintainers: 391 - jori-nordic 392 - jhedberg 393 collaborators: 394 - hermabe 395 - alwa-nordic 396 - Thalley 397 - sjanc 398 - theob-pro 399 files: 400 - subsys/bluetooth/host/ 401 - subsys/bluetooth/services/ 402 - subsys/bluetooth/shell/ 403 - tests/bluetooth/host*/ 404 - tests/bsim/bluetooth/host/ 405 labels: 406 - "area: Bluetooth Host" 407 - "area: Bluetooth" 408 409Bluetooth Mesh: 410 status: maintained 411 maintainers: 412 - PavelVPV 413 collaborators: 414 - jhedberg 415 - LingaoM 416 - alxelax 417 - Andrewpini 418 - akredalen 419 - HaavardRei 420 files: 421 - subsys/bluetooth/mesh/ 422 - include/zephyr/bluetooth/mesh/ 423 - tests/bluetooth/mesh*/ 424 - tests/bsim/bluetooth/mesh/ 425 - samples/bluetooth/mesh/ 426 labels: 427 - "area: Bluetooth Mesh" 428 - "area: Bluetooth" 429 tests: 430 - bluetooth.mesh 431 432Bluetooth Audio: 433 status: maintained 434 maintainers: 435 - Thalley 436 collaborators: 437 - jhedberg 438 - Casper-Bonde-Bose 439 - MariuszSkamra 440 - sjanc 441 - szymon-czapracki 442 - asbjornsabo 443 - fredrikdanebjer 444 - kruithofa 445 - larsgk 446 - pin-zephyr 447 files: 448 - subsys/bluetooth/audio/ 449 - include/zephyr/bluetooth/audio/ 450 - tests/bluetooth/audio/ 451 - tests/bsim/bluetooth/audio/ 452 - tests/bluetooth/shell/audio* 453 labels: 454 - "area: Bluetooth Audio" 455 - "area: Bluetooth" 456 tests: 457 - bluetooth.audio 458 459Bluetooth Classic: 460 status: maintained 461 maintainers: 462 - lylezhu2012 463 collaborators: 464 - jhedberg 465 - sjanc 466 files: 467 - subsys/bluetooth/host/a2dp* 468 - subsys/bluetooth/host/at.* 469 - subsys/bluetooth/host/avdtp* 470 - subsys/bluetooth/host/br.* 471 - subsys/bluetooth/host/hfp* 472 - subsys/bluetooth/host/l2cap_br* 473 - subsys/bluetooth/host/rfcomm* 474 - subsys/bluetooth/host/sdp* 475 - subsys/bluetooth/host/ssp* 476 labels: 477 - "area: Bluetooth Classic" 478 tests: 479 - bluetooth 480 481Bootloaders: 482 status: odd fixes 483 files: 484 - tests/boot/ 485 labels: 486 - "area: Bootloader" 487 tests: 488 - bootloader 489 490Build system: 491 status: maintained 492 maintainers: 493 - tejlmand 494 collaborators: 495 - jeremybettis 496 - nashif 497 - nordicjm 498 - "57300" 499 files: 500 - cmake/ 501 - CMakeLists.txt 502 - scripts/zephyr_module.py 503 - share/ 504 - doc/build/ 505 - doc/develop/modules.rst 506 - scripts/build/ 507 - tests/cmake/ 508 - misc/empty_file.c 509 - misc/generated/ 510 - snippets/ 511 - modules/Kconfig.sysbuild 512 labels: 513 - "area: Build System" 514 tests: 515 - buildsystem 516 517Board/SoC configuration: 518 status: maintained 519 maintainers: 520 - tejlmand 521 collaborators: 522 - galak 523 - nashif 524 - nordicjm 525 - "57300" 526 files: 527 - soc/Kconfig 528 - boards/Kconfig 529 labels: 530 - "area: Board/SoC configuration" 531 532"C++": 533 status: maintained 534 maintainers: 535 - stephanosio 536 collaborators: 537 - alexanderwachter 538 - cfriedt 539 files: 540 - lib/cpp/ 541 - tests/lib/cpp/ 542 - samples/cpp/ 543 labels: 544 - "area: C++" 545 tests: 546 - cpp 547 548Cache: 549 status: maintained 550 maintainers: 551 - carlocaione 552 collaborators: 553 - nashif 554 files: 555 - include/zephyr/drivers/cache.h 556 - include/zephyr/cache.h 557 - doc/hardware/cache/index.rst 558 - drivers/cache/ 559 - tests/kernel/cache/ 560 labels: 561 - "area: Cache" 562 tests: 563 - kernel.cache 564 565C library: 566 status: maintained 567 maintainers: 568 - stephanosio 569 collaborators: 570 - nashif 571 - keith-packard 572 - cfriedt 573 files: 574 - lib/libc/ 575 - tests/lib/c_lib/ 576 - tests/lib/newlib/ 577 labels: 578 - "area: C Library" 579 tests: 580 - libraries.libc 581 582CMSIS API layer: 583 status: odd fixes 584 collaborators: 585 - nashif 586 files: 587 - subsys/portability/ 588 - include/zephyr/portability/cmsis* 589 - samples/subsys/portability/cmsis_rtos_v*/ 590 - tests/subsys/portability/cmsis_rtos_v*/ 591 - doc/services/portability/cmsis* 592 labels: 593 - "area: CMSIS API Layer" 594 - "area: Portability" 595 tests: 596 - portability.cmsis_rtos_v1 597 - portability.cmsis_rtos_v2 598 599DSP subsystem: 600 status: maintained 601 maintainers: 602 - stephanosio 603 - yperess 604 files: 605 - subsys/dsp/ 606 - tests/subsys/dsp/ 607 - include/zephyr/dsp/dsp.h 608 - include/zephyr/dsp/types.h 609 - include/zephyr/dsp/ 610 - doc/services/dsp/ 611 labels: 612 - "area: DSP" 613 tests: 614 - zdsp 615 616CMSIS-DSP integration: 617 status: maintained 618 maintainers: 619 - stephanosio 620 collaborators: 621 - galak 622 - XenuIsWatching 623 files: 624 - modules/cmsis-dsp/ 625 - tests/benchmarks/cmsis_dsp/ 626 - tests/lib/cmsis_dsp/ 627 labels: 628 - "area: CMSIS-DSP" 629 tests: 630 - libraries.cmsis_dsp 631 632CMSIS-NN integration: 633 status: maintained 634 maintainers: 635 - JordanYates 636 collaborators: 637 - stephanosio 638 - XenuIsWatching 639 files: 640 - modules/cmsis-nn/ 641 - tests/lib/cmsis_nn/ 642 labels: 643 - "area: CMSIS-NN" 644 tests: 645 - libraries.cmsis_nn 646 647Coding Guidelines: 648 status: maintained 649 maintainers: 650 - keith-zephyr 651 collaborators: 652 - nashif 653 - carlescufi 654 - jfischer-no 655 files: 656 - .checkpatch.conf 657 - .clang-format 658 - .editorconfig 659 - .gitlint 660 - .yamllint 661 - doc/contribute/guidelines.rst 662 - doc/contribute/coding_guidelines/ 663 - scripts/checkpatch.pl 664 - scripts/checkpatch/ 665 - scripts/ci/check_compliance.py 666 - scripts/ci/guideline_check.py 667 - scripts/ci/pylintrc 668 - scripts/coccicheck 669 - scripts/coccinelle/ 670 - scripts/gitlint/ 671 - scripts/pylint/ 672 - scripts/spelling.txt 673 labels: 674 - "area: Coding Guidelines" 675 676Common Architecture Interface: 677 status: odd fixes 678 collaborators: 679 - dcpleung 680 - nashif 681 files: 682 - arch/Kconfig 683 - include/zephyr/arch/ 684 - arch/common/ 685 - include/zephyr/arch/common/ 686 - tests/arch/common/ 687 - doc/hardware/porting/arch.rst 688 labels: 689 - "area: Architectures" 690 tests: 691 - arch 692 693Console: 694 status: odd fixes 695 files: 696 - include/zephyr/console/ 697 - subsys/console/ 698 labels: 699 - "area: Console" 700 tests: 701 - sample.console 702 703Debug: 704 status: maintained 705 maintainers: 706 - nashif 707 collaborators: 708 - dcpleung 709 - mrkhldn 710 files: 711 - include/zephyr/debug/ 712 - subsys/debug/ 713 - tests/subsys/debug/ 714 - scripts/coredump/ 715 - samples/subsys/debug/ 716 - doc/services/debugging/ 717 labels: 718 - "area: Debugging" 719 tests: 720 - debug 721 722Demand Paging: 723 status: maintained 724 maintainers: 725 - dcpleung 726 collaborators: 727 - ceolin 728 - peter-mitsis 729 - nashif 730 files: 731 - subsys/demand_paging/ 732 - tests/kernel/mem_protect/demand_paging/ 733 tests: 734 - kernel.demand_paging 735 736Device Driver Model: 737 status: maintained 738 maintainers: 739 - gmarull 740 collaborators: 741 - tbursztyka 742 - dcpleung 743 - nashif 744 files: 745 - include/zephyr/device.h 746 - kernel/device.c 747 - include/zephyr/init.h 748 - tests/kernel/device/ 749 - doc/kernel/drivers/ 750 - tests/misc/check_init_priorities/ 751 labels: 752 - "area: Device Model" 753 tests: 754 - kernel.device 755 - init 756 757DFU: 758 status: maintained 759 maintainers: 760 - de-nordic 761 - nordicjm 762 files: 763 - include/zephyr/dfu/ 764 - subsys/dfu/ 765 - tests/subsys/dfu/ 766 labels: 767 - "area: DFU" 768 tests: 769 - dfu 770 771Devicetree: 772 status: maintained 773 maintainers: 774 - galak 775 files: 776 - scripts/dts/ 777 - dts/common/ 778 - tests/lib/devicetree/ 779 - doc/build/dts/ 780 - include/zephyr/devicetree/ 781 - scripts/kconfig/kconfigfunctions.py 782 - include/zephyr/devicetree.h 783 labels: 784 - "area: Devicetree" 785 tests: 786 - libraries.devicetree 787 788Devicetree Bindings: 789 status: maintained 790 maintainers: 791 - galak 792 files: 793 - dts/bindings/ 794 - include/zephyr/dt-bindings/ 795 - dts/binding-template.yaml 796 labels: 797 - "area: Devicetree Binding" 798 799Disk: 800 status: maintained 801 maintainers: 802 - danieldegrasse 803 collaborators: 804 - jfischer-no 805 - decsny 806 files: 807 - include/zephyr/storage/disk_access.h 808 - include/zephyr/drivers/disk.h 809 - drivers/disk/ 810 - subsys/disk/ 811 - subsys/sd/ 812 - tests/subsys/sd/ 813 - tests/drivers/disk/ 814 - include/zephyr/sd/ 815 labels: 816 - "area: Disk Access" 817 tests: 818 - drivers.disk 819 820Display drivers: 821 status: odd fixes 822 collaborators: 823 - jfischer-no 824 - danieldegrasse 825 files: 826 - drivers/display/ 827 - dts/bindings/display/ 828 - include/zephyr/drivers/display.h 829 - include/zephyr/display/ 830 - include/zephyr/drivers/display.h 831 - subsys/fb/ 832 - samples/subsys/display/ 833 - doc/hardware/peripherals/display/ 834 - tests/drivers/*/display/ 835 labels: 836 - "area: Display" 837 838Documentation: 839 status: maintained 840 maintainers: 841 - kartben 842 - carlescufi 843 collaborators: 844 - nashif 845 files: 846 - CODE_OF_CONDUCT.md 847 - CONTRIBUTING.rst 848 - doc/glossary.rst 849 - doc/contribute/ 850 - doc/develop/ 851 - doc/introduction/ 852 - doc/project/ 853 - doc/releases/ 854 - doc/security/ 855 - README.rst 856 - doc/substitutions.txt 857 - doc/images/Zephyr-Kite-in-tree.png 858 - doc/index-tex.rst 859 - doc/index.rst 860 - doc/kconfig.rst 861 - doc/known-warnings.txt 862 - doc/templates/sample.tmpl 863 - doc/templates/board.tmpl 864 - boards/index.rst 865 files-exclude: 866 - doc/releases/migration-guide-* 867 - doc/releases/release-notes-* 868 labels: 869 - "area: Documentation" 870 871Documentation Infrastructure: 872 status: maintained 873 maintainers: 874 - gmarull 875 collaborators: 876 - carlescufi 877 - nashif 878 - kartben 879 files: 880 - doc/_*/ 881 - doc/CMakeLists.txt 882 - doc/conf.py 883 - doc/Makefile 884 - doc/zephyr.doxyfile.in 885 labels: 886 - "area: Documentation Infrastructure" 887 888Release Notes: 889 status: maintained 890 maintainers: 891 - MaureenHelm 892 - henrikbrixandersen 893 collaborators: 894 - kartben 895 files: 896 - doc/releases/migration-guide-* 897 - doc/releases/release-notes-* 898 labels: 899 - "Release Notes" 900 901"Drivers: ADC": 902 status: maintained 903 maintainers: 904 - anangl 905 files: 906 - drivers/adc/ 907 - include/zephyr/drivers/adc.h 908 - tests/drivers/adc/ 909 - samples/drivers/adc/ 910 - include/zephyr/drivers/adc/ 911 - doc/hardware/peripherals/adc.rst 912 - tests/drivers/build_all/adc/ 913 - include/zephyr/dt-bindings/adc/ 914 labels: 915 - "area: ADC" 916 tests: 917 - drivers.adc 918 919"Drivers: Audio": 920 status: odd fixes 921 collaborators: 922 - lyakh 923 - lgirdwood 924 - marc-hb 925 - kv2019i 926 files: 927 - drivers/audio/ 928 - include/zephyr/audio/ 929 - doc/hardware/peripherals/audio/ 930 labels: 931 - "area: Audio" 932 933"Drivers: bbram": 934 status: maintained 935 maintainers: 936 - yperess 937 files: 938 - tests/drivers/bbram/ 939 - drivers/bbram/ 940 - include/zephyr/drivers/bbram.h 941 - doc/hardware/peripherals/bbram.rst 942 labels: 943 - "area: Battery Backed RAM (bbram)" 944 tests: 945 - drivers.bbram 946 947"Drivers: Aux display": 948 status: maintained 949 maintainers: 950 - thedjnK 951 collaborators: 952 - xingrz 953 files: 954 - include/zephyr/drivers/auxdisplay.h 955 - drivers/auxdisplay/* 956 - dts/bindings/auxdisplay/* 957 - doc/hardware/peripherals/auxdisplay.rst 958 labels: 959 - "area: Aux display" 960 tests: 961 - sample.drivers.auxdisplay 962 963"Drivers: CAN": 964 status: maintained 965 maintainers: 966 - henrikbrixandersen 967 collaborators: 968 - alexanderwachter 969 - karstenkoenig 970 - martinjaeger 971 - str4t0m 972 files: 973 - boards/shields/mcp2515/ 974 - boards/shields/tcan4550evm/ 975 - doc/connectivity/canbus/ 976 - doc/hardware/peripherals/can/ 977 - drivers/can/ 978 - drivers/net/canbus.c 979 - dts/bindings/can/ 980 - dts/bindings/phy/can-transceiver* 981 - include/zephyr/canbus/ 982 - include/zephyr/devicetree/can.h 983 - include/zephyr/drivers/can.h 984 - include/zephyr/drivers/can/ 985 - include/zephyr/net/canbus.h 986 - include/zephyr/net/socketcan*.h 987 - samples/drivers/can/ 988 - samples/modules/canopennode/ 989 - samples/net/sockets/can/ 990 - samples/subsys/canbus/ 991 - subsys/canbus/ 992 - subsys/net/l2/canbus/ 993 - tests/drivers/build_all/can/ 994 - tests/drivers/can/ 995 - tests/net/socket/can/ 996 - tests/subsys/canbus/ 997 labels: 998 - "area: CAN" 999 tests: 1000 - drivers.can 1001 - canbus 1002 1003"Drivers: Charger": 1004 status: maintained 1005 maintainers: 1006 - rriveramcrus 1007 collaborators: 1008 - GRobertZieba 1009 files: 1010 - drivers/charger/ 1011 - dts/bindings/charger/ 1012 - include/zephyr/drivers/charger.h 1013 - tests/drivers/charger/ 1014 - doc/hardware/peripherals/charger.rst 1015 - tests/drivers/build_all/charger/ 1016 labels: 1017 - "area: Charger" 1018 tests: 1019 - drivers.charger 1020 1021"Drivers: Clock control": 1022 status: maintained 1023 maintainers: 1024 - nordic-krch 1025 files: 1026 - drivers/clock_control/ 1027 - dts/bindings/clock/ 1028 - include/zephyr/drivers/clock_control.h 1029 - include/zephyr/dt-bindings/clock/ 1030 - tests/drivers/clock_control/ 1031 - include/zephyr/drivers/clock_control/ 1032 - doc/hardware/peripherals/clock_control.rst 1033 labels: 1034 - "area: Clock control" 1035 tests: 1036 - drivers.clock 1037 1038"Drivers: Console": 1039 status: odd fixes 1040 files: 1041 - drivers/console/ 1042 - include/zephyr/drivers/console/ 1043 - tests/drivers/console/ 1044 - samples/subsys/console/ 1045 labels: 1046 - "area: Console" 1047 tests: 1048 - drivers.console 1049 1050"Drivers: Coredump": 1051 status: maintained 1052 maintainers: 1053 - mrkhldn 1054 files: 1055 - drivers/coredump/ 1056 - dts/bindings/coredump/ 1057 - include/zephyr/drivers/coredump.h 1058 - tests/drivers/coredump/ 1059 - doc/hardware/peripherals/coredump.rst 1060 labels: 1061 - "area: Coredump" 1062 tests: 1063 - debug.codedump 1064 1065"Drivers: Counter": 1066 status: maintained 1067 maintainers: 1068 - nordic-krch 1069 files: 1070 - drivers/counter/ 1071 - include/zephyr/drivers/counter.h 1072 - tests/drivers/counter/ 1073 - doc/hardware/peripherals/counter.rst 1074 - samples/drivers/counter/ 1075 - tests/drivers/build_all/counter/ 1076 labels: 1077 - "area: Counter" 1078 tests: 1079 - drivers.counter 1080 1081"Drivers: Crypto": 1082 status: maintained 1083 maintainers: 1084 - ceolin 1085 files: 1086 - drivers/crypto/ 1087 - dts/bindings/crypto/ 1088 - include/zephyr/crypto/ 1089 - samples/drivers/crypto/ 1090 - tests/crypto/ 1091 labels: 1092 - "area: Crypto / RNG" 1093 tests: 1094 - crypto 1095 1096"Drivers: DAC": 1097 status: maintained 1098 maintainers: 1099 - martinjaeger 1100 files: 1101 - drivers/dac/ 1102 - include/zephyr/drivers/dac.h 1103 - tests/drivers/dac/ 1104 - samples/drivers/dac/ 1105 - doc/hardware/peripherals/dac.rst 1106 - tests/drivers/build_all/dac/ 1107 labels: 1108 - "area: DAC" 1109 tests: 1110 - drivers.dac 1111 1112"Drivers: DAI": 1113 status: maintained 1114 maintainers: 1115 - kv2019i 1116 collaborators: 1117 - lgirdwood 1118 - juimonen 1119 files: 1120 - drivers/dai/ 1121 - doc/hardware/peripherals/audio/dai.rst 1122 - include/zephyr/drivers/dai.h 1123 labels: 1124 - "area: DAI" 1125 1126"Drivers: Devmux": 1127 status: maintained 1128 maintainers: 1129 - cfriedt 1130 files: 1131 - drivers/misc/devmux/ 1132 - include/zephyr/drivers/misc/devmux/ 1133 - tests/drivers/console_switching/ 1134 labels: 1135 - "area: Devmux" 1136 tests: 1137 - drivers.devmux 1138 1139"Drivers: DMA": 1140 status: maintained 1141 maintainers: 1142 - teburd 1143 files: 1144 - drivers/dma/ 1145 - tests/drivers/dma/ 1146 - include/zephyr/drivers/dma/ 1147 - doc/hardware/peripherals/dma.rst 1148 - include/zephyr/drivers/dma.h 1149 - include/zephyr/dt-bindings/dma/ 1150 labels: 1151 - "area: DMA" 1152 tests: 1153 - drivers.dma 1154 1155"Drivers: EDAC": 1156 status: maintained 1157 maintainers: 1158 - finikorg 1159 files: 1160 - drivers/edac/ 1161 - dts/bindings/edac/ 1162 - include/zephyr/drivers/edac.h 1163 - samples/subsys/edac/ 1164 - tests/subsys/edac/ 1165 - doc/hardware/peripherals/edac/ 1166 labels: 1167 - "area: EDAC" 1168 tests: 1169 - edac 1170 1171"Drivers: EEPROM": 1172 status: maintained 1173 maintainers: 1174 - henrikbrixandersen 1175 files: 1176 - drivers/eeprom/ 1177 - include/zephyr/drivers/eeprom/eeprom_fake.h 1178 - dts/bindings/mtd/*eeprom* 1179 - include/zephyr/drivers/eeprom.h 1180 - samples/drivers/eeprom/ 1181 - tests/drivers/eeprom/ 1182 - tests/drivers/*/eeprom/ 1183 - doc/hardware/peripherals/eeprom.rst 1184 labels: 1185 - "area: EEPROM" 1186 tests: 1187 - drivers.eeprom 1188 1189"Drivers: Entropy": 1190 status: maintained 1191 maintainers: 1192 - ceolin 1193 files: 1194 - drivers/entropy/ 1195 - include/zephyr/drivers/entropy.h 1196 - tests/drivers/entropy/ 1197 - doc/hardware/peripherals/entropy.rst 1198 labels: 1199 - "area: Crypto / RNG" 1200 tests: 1201 - drivers.entropy 1202 1203"Drivers: ESPI": 1204 status: maintained 1205 maintainers: 1206 - albertofloyd 1207 collaborators: 1208 - VenkatKotakonda 1209 - jvasanth1 1210 files: 1211 - drivers/espi/ 1212 - include/zephyr/drivers/espi.h 1213 - include/zephyr/dt-bindings/espi/ 1214 - samples/drivers/espi/ 1215 - dts/bindings/espi/ 1216 - doc/hardware/peripherals/espi.rst 1217 - include/zephyr/drivers/espi_saf.h 1218 - tests/drivers/espi/ 1219 labels: 1220 - "area: eSPI" 1221 tests: 1222 - sample.drivers.espi 1223 - drivers.espi 1224 1225"Drivers: Ethernet": 1226 status: odd fixes 1227 collaborators: 1228 - decsny 1229 files: 1230 - drivers/ethernet/ 1231 - include/zephyr/dt-bindings/ethernet/ 1232 - tests/drivers/build_all/ethernet/ 1233 - dts/bindings/ethernet/ 1234 - tests/drivers/ethernet/ 1235 - include/zephyr/drivers/ethernet/ 1236 labels: 1237 - "area: Ethernet" 1238 tests: 1239 - net.ethernet 1240 1241"Drivers: Flash": 1242 status: maintained 1243 maintainers: 1244 - de-nordic 1245 files: 1246 - drivers/flash/ 1247 - dts/bindings/flash_controller/ 1248 - include/zephyr/drivers/flash.h 1249 - samples/drivers/flash_shell/ 1250 - samples/drivers/soc_flash_nrf/ 1251 - tests/drivers/flash/ 1252 - doc/hardware/peripherals/flash.rst 1253 - include/zephyr/drivers/flash/ 1254 - tests/drivers/flash_simulator/ 1255 labels: 1256 - "area: Flash" 1257 tests: 1258 - drivers.flash 1259 1260"Drivers: FPGA": 1261 status: maintained 1262 maintainers: 1263 - cfriedt 1264 collaborators: 1265 - tgorochowik 1266 - fkokosinski 1267 - msierszulski 1268 files: 1269 - drivers/fpga/ 1270 - dts/bindings/fpga/ 1271 - include/zephyr/drivers/fpga.h 1272 - samples/drivers/fpga/ 1273 - tests/drivers/build_all/fpga/ 1274 labels: 1275 - "area: FPGA" 1276 tests: 1277 - drivers.fpga 1278 1279"Drivers: Fuel Gauge": 1280 status: maintained 1281 maintainers: 1282 - aaronemassey 1283 - teburd 1284 files: 1285 - drivers/fuel_gauge/ 1286 - dts/bindings/fuel-gauge/ 1287 - include/zephyr/drivers/fuel_gauge.h 1288 - tests/drivers/fuel_gauge/ 1289 - doc/hardware/peripherals/fuel_gauge.rst 1290 labels: 1291 - "area: Fuel Gauge" 1292 tests: 1293 - drivers.fuel_gauge 1294 1295"Drivers: GPIO": 1296 status: odd fixes 1297 collaborators: 1298 - henrikbrixandersen 1299 - mnkp 1300 files: 1301 - doc/hardware/peripherals/gpio.rst 1302 - drivers/gpio/ 1303 - include/zephyr/drivers/gpio/ 1304 - include/zephyr/drivers/gpio.h 1305 - include/zephyr/dt-bindings/gpio/ 1306 - tests/drivers/gpio/ 1307 - tests/drivers/build_all/gpio/ 1308 labels: 1309 - "area: GPIO" 1310 tests: 1311 - drivers.gpio 1312 1313"Drivers: GNSS": 1314 status: maintained 1315 maintainers: 1316 - bjarki-trackunit 1317 files: 1318 - doc/hardware/peripherals/gnss.rst 1319 - drivers/gnss/ 1320 - include/zephyr/drivers/gnss.h 1321 - include/zephyr/drivers/gnss/ 1322 - tests/drivers/build_all/gnss/ 1323 - tests/drivers/gnss/ 1324 labels: 1325 - "area: GNSS" 1326 tests: 1327 - drivers.gnss 1328 1329"Drivers: HW Info": 1330 status: maintained 1331 maintainers: 1332 - alexanderwachter 1333 files: 1334 - drivers/hwinfo/ 1335 - dts/bindings/hwinfo/ 1336 - include/zephyr/drivers/hwinfo.h 1337 - tests/drivers/hwinfo/ 1338 - doc/hardware/peripherals/hwinfo.rst 1339 labels: 1340 - "area: HWINFO" 1341 tests: 1342 - drivers.hwinfo 1343 1344"Drivers: Hardware Spinlock": 1345 status: odd fixes 1346 files: 1347 - drivers/hwspinlock/ 1348 - dts/bindings/hwspinlock/ 1349 - include/zephyr/drivers/hwspinlock.h 1350 labels: 1351 - "area: Hardware Spinlock" 1352 1353"Drivers: I2C": 1354 status: maintained 1355 maintainers: 1356 - teburd 1357 files: 1358 - drivers/i2c/ 1359 - include/zephyr/drivers/i2c/ 1360 - dts/bindings/i2c/ 1361 - include/zephyr/drivers/i2c.h 1362 - tests/drivers/i2c/ 1363 - doc/hardware/peripherals/i2c.rst 1364 - include/zephyr/dt-bindings/i2c/ 1365 - tests/boards/*/i2c/ 1366 - tests/drivers/*/i2c/ 1367 labels: 1368 - "area: I2C" 1369 tests: 1370 - drivers.i2c 1371 1372"Drivers: I2S": 1373 status: maintained 1374 maintainers: 1375 - anangl 1376 files: 1377 - doc/hardware/peripherals/audio/i2s.rst 1378 - drivers/i2s/ 1379 - dts/bindings/i2s/ 1380 - include/zephyr/drivers/i2s.h 1381 - tests/drivers/i2s/ 1382 - samples/drivers/i2s/ 1383 labels: 1384 - "area: I2S" 1385 tests: 1386 - drivers.i2s 1387 1388"Drivers: I3C": 1389 status: maintained 1390 maintainers: 1391 - dcpleung 1392 collaborators: 1393 - XenuIsWatching 1394 files: 1395 - drivers/i3c/ 1396 - dts/bindings/i3c/ 1397 - include/zephyr/drivers/i3c.h 1398 - include/zephyr/drivers/i3c/ 1399 - doc/hardware/peripherals/i3c.rst 1400 - tests/drivers/build_all/i3c/ 1401 labels: 1402 - "area: I3C" 1403 tests: 1404 - drivers.i3c 1405 1406"Drivers: IEEE 802.15.4": 1407 status: maintained 1408 maintainers: 1409 - fgrandel 1410 collaborators: 1411 - rlubos 1412 - jciupis 1413 - cfriedt 1414 - jukkar 1415 files: 1416 - drivers/ieee802154/ 1417 - include/zephyr/drivers/ieee802154/ 1418 - include/zephyr/net/ieee802154_radio.h 1419 - tests/drivers/build_all/ieee802154/ 1420 labels: 1421 - "area: IEEE 802.15.4" 1422 tests: 1423 - drivers.ieee802154 1424 1425"Drivers: Mbox": 1426 status: maintained 1427 maintainers: 1428 - carlocaione 1429 files: 1430 - include/zephyr/drivers/mbox.h 1431 - drivers/mbox/ 1432 - samples/drivers/mbox/ 1433 - dts/bindings/mbox/ 1434 - doc/hardware/peripherals/mbox.rst 1435 labels: 1436 - "area: mbox" 1437 tests: 1438 - sample.drivers.mbox 1439 1440"Drivers: MEMC": 1441 status: odd fixes 1442 files: 1443 - drivers/memc/ 1444 - samples/drivers/memc/ 1445 - tests/drivers/memc/ 1446 labels: 1447 - "area: MEMC" 1448 tests: 1449 - samples.drivers.memc 1450 - drivers.memc 1451 1452"Drivers: MDIO": 1453 status: odd fixes 1454 collaborators: 1455 - decsny 1456 files: 1457 - doc/hardware/peripherals/mdio.rst 1458 - drivers/mdio/ 1459 - include/zephyr/drivers/mdio.h 1460 - tests/drivers/build_all/mdio/ 1461 labels: 1462 - "area: MDIO" 1463 tests: 1464 - drivers.mdio 1465 1466"Drivers: MIPI-DSI": 1467 status: odd fixes 1468 files: 1469 - drivers/mipi_dsi/ 1470 - doc/hardware/peripherals/mipi_dsi.rst 1471 - include/zephyr/drivers/mipi_dsi.h 1472 - include/zephyr/drivers/mipi_dsi/ 1473 - tests/drivers/mipi_dsi/ 1474 - include/zephyr/dt-bindings/mipi_dsi/ 1475 - dts/bindings/mipi-dsi/ 1476 labels: 1477 - "area: MIPI-DSI" 1478 tests: 1479 - drivers.mipi_dsi 1480 1481"Drivers: Reset": 1482 status: odd fixes 1483 files: 1484 - drivers/reset/ 1485 - include/zephyr/drivers/reset.h 1486 1487"Interrupt Handling": 1488 status: odd fixes 1489 files: 1490 - drivers/interrupt_controller/ 1491 - dts/bindings/interrupt-controller/ 1492 - include/zephyr/drivers/interrupt_controller/ 1493 - include/zephyr/dt-bindings/interrupt-controller/ 1494 - include/zephyr/irq* 1495 - include/zephyr/sw_isr_table.h 1496 - include/zephyr/shared_irq.h 1497 - tests/drivers/interrupt_controller/ 1498 - tests/drivers/build_all/interrupt_controller/ 1499 labels: 1500 - "area: Interrupt Controller" 1501 tests: 1502 - drivers.interrupt_controller 1503 1504"Drivers: IPM": 1505 status: odd fixes 1506 collaborators: 1507 - dcpleung 1508 files: 1509 - drivers/ipm/ 1510 - samples/drivers/ipm/ 1511 - dts/bindings/ipm/ 1512 - tests/drivers/ipm/ 1513 - doc/hardware/peripherals/ipm.rst 1514 - include/zephyr/drivers/ipm.h 1515 description: >- 1516 Inter-processor mailboxes 1517 labels: 1518 - "area: IPM" 1519 tests: 1520 - drivers.ipm 1521 1522"Drivers: kscan": 1523 status: maintained 1524 maintainers: 1525 - albertofloyd 1526 collaborators: 1527 - VenkatKotakonda 1528 files: 1529 - drivers/kscan/ 1530 - include/zephyr/drivers/kscan.h 1531 - samples/drivers/kscan/ 1532 - tests/drivers/kscan/ 1533 - dts/bindings/kscan/ 1534 - doc/hardware/peripherals/kscan.rst 1535 labels: 1536 - "area: Kscan" 1537 tests: 1538 - drivers.kscan 1539 1540"Drivers: LED": 1541 status: maintained 1542 maintainers: 1543 - Mani-Sadhasivam 1544 - simonguinot 1545 collaborators: 1546 - bbilas 1547 files: 1548 - drivers/led/ 1549 - include/zephyr/drivers/led/ 1550 - include/zephyr/drivers/led.h 1551 - samples/drivers/led_*/ 1552 - tests/drivers/led/ 1553 - doc/hardware/peripherals/led.rst 1554 - tests/drivers/build_all/led/ 1555 labels: 1556 - "area: LED" 1557 tests: 1558 - drivers.led 1559 1560"Drivers: LED Strip": 1561 status: maintained 1562 maintainers: 1563 - mbolivar-ampere 1564 - simonguinot 1565 collaborators: 1566 - soburi 1567 files: 1568 - drivers/led_strip/ 1569 - dts/bindings/led_strip/ 1570 - include/zephyr/drivers/led_strip.h 1571 - tests/drivers/build_all/led_strip/ 1572 - include/zephyr/drivers/led_strip/ 1573 labels: 1574 - "area: LED" 1575 tests: 1576 - drivers.led_strip 1577 1578"Drivers: MFD": 1579 status: odd fixes 1580 collaborators: 1581 - gmarull 1582 - aasinclair 1583 files: 1584 - drivers/mfd/ 1585 - include/zephyr/drivers/mfd/ 1586 - dts/bindings/mfd/ 1587 - tests/drivers/build_all/mfd/ 1588 labels: 1589 - "area: MFD" 1590 tests: 1591 - drivers.mfd 1592 1593"Drivers: Modem": 1594 status: maintained 1595 maintainers: 1596 - rerickson1 1597 files: 1598 - drivers/modem/ 1599 - tests/drivers/build_all/modem/ 1600 - dts/bindings/modem/ 1601 - include/zephyr/drivers/modem/ 1602 labels: 1603 - "area: Modem Drivers" 1604 tests: 1605 - drivers.modem 1606 1607"Drivers: Regulators": 1608 status: maintained 1609 maintainers: 1610 - aasinclair 1611 collaborators: 1612 - danieldegrasse 1613 - gmarull 1614 files: 1615 - drivers/regulator/ 1616 - include/zephyr/drivers/regulator/ 1617 - include/zephyr/drivers/regulator.h 1618 - include/zephyr/dt-bindings/regulator/ 1619 - tests/drivers/regulator/ 1620 - tests/drivers/build_all/regulator/ 1621 - doc/hardware/peripherals/regulators.rst 1622 labels: 1623 - "area: Regulators" 1624 tests: 1625 - drivers.regulator 1626 1627"Drivers: Retained Memory": 1628 status: maintained 1629 maintainers: 1630 - nordicjm 1631 files: 1632 - drivers/retained_mem/ 1633 - dts/bindings/retained_mem/ 1634 - include/zephyr/drivers/retained_mem.h 1635 - tests/drivers/retained_mem/ 1636 - doc/hardware/peripherals/retained_mem.rst 1637 labels: 1638 - "area: Retained Memory" 1639 tests: 1640 - drivers.retained_mem 1641 1642"Drivers: RTC": 1643 status: maintained 1644 maintainers: 1645 - bjarki-trackunit 1646 files: 1647 - drivers/rtc/ 1648 - include/zephyr/drivers/rtc/ 1649 - tests/drivers/rtc/ 1650 - doc/hardware/peripherals/rtc.rst 1651 - include/zephyr/drivers/rtc.h 1652 - tests/drivers/build_all/rtc/ 1653 labels: 1654 - "area: RTC" 1655 tests: 1656 - drivers.rtc 1657 1658"Drivers: PCI": 1659 status: maintained 1660 maintainers: 1661 - dcpleung 1662 collaborators: 1663 - jhedberg 1664 - finikorg 1665 - tbursztyka 1666 files: 1667 - drivers/pcie/ 1668 - include/zephyr/drivers/pcie/ 1669 - doc/hardware/peripherals/pcie.rst 1670 labels: 1671 - "area: PCI" 1672 1673"Drivers: PECI": 1674 status: maintained 1675 maintainers: 1676 - albertofloyd 1677 collaborators: 1678 - VenkatKotakonda 1679 files: 1680 - drivers/peci/ 1681 - include/zephyr/drivers/peci.h 1682 - samples/drivers/peci/ 1683 - doc/hardware/peripherals/peci.rst 1684 labels: 1685 - "area: PECI" 1686 tests: 1687 - samples.drivers.peci 1688 1689"Drivers: Pin Control": 1690 status: maintained 1691 maintainers: 1692 - gmarull 1693 files: 1694 - doc/hardware/pinctrl/ 1695 - include/zephyr/drivers/pinctrl/ 1696 - include/zephyr/drivers/pinctrl.h 1697 - drivers/pinctrl/ 1698 - tests/drivers/pinctrl/ 1699 - dts/bindings/pinctrl/ 1700 - include/zephyr/dt-bindings/pinctrl/ 1701 labels: 1702 - "area: Pinctrl" 1703 tests: 1704 - drivers.pinctrl 1705 1706"Drivers: PS2": 1707 status: odd fixes 1708 files: 1709 - drivers/ps2/ 1710 - doc/hardware/peripherals/ps2.rst 1711 - include/zephyr/drivers/ps2.h 1712 - samples/drivers/ps2/ 1713 - dts/bindings/ps2/ 1714 labels: 1715 - "area: PS2" 1716 tests: 1717 - sample.drivers.espi.ps2 1718 1719"Drivers: PTP Clock": 1720 status: maintained 1721 maintainers: 1722 - tbursztyka 1723 files: 1724 - drivers/ptp_clock/ 1725 - include/zephyr/drivers/ptp_clock.h 1726 labels: 1727 - "area: Clocks" 1728 1729"Drivers: PM CPU ops": 1730 status: maintained 1731 maintainers: 1732 - carlocaione 1733 collaborators: 1734 - gdengi 1735 - nbalabak 1736 files: 1737 - drivers/pm_cpu_ops/ 1738 - include/zephyr/drivers/pm_cpu_ops/ 1739 - include/zephyr/drivers/pm_cpu_ops.h 1740 - include/zephyr/arch/arm64/arm-smccc.h 1741 labels: 1742 - "area: PM CPU ops" 1743 1744"Drivers: PWM": 1745 status: maintained 1746 maintainers: 1747 - anangl 1748 collaborators: 1749 - henrikbrixandersen 1750 files: 1751 - drivers/pwm/ 1752 - dts/bindings/pwm/ 1753 - tests/drivers/pwm/ 1754 - include/zephyr/*/pwms.h 1755 - doc/hardware/peripherals/pwm.rst 1756 - tests/drivers/build_all/pwm/ 1757 - include/zephyr/drivers/pwm.h 1758 - include/zephyr/drivers/pwm/ 1759 labels: 1760 - "area: PWM" 1761 tests: 1762 - drivers.pwm 1763 1764"Drivers: SDHC": 1765 status: maintained 1766 maintainers: 1767 - danieldegrasse 1768 files: 1769 - drivers/sdhc/ 1770 - tests/drivers/sdhc/ 1771 - include/zephyr/drivers/sdhc.h 1772 - dts/bindings/sdhc/ 1773 - doc/hardware/peripherals/sdhc.rst 1774 labels: 1775 - "area: Disk Access" 1776 tests: 1777 - drivers.sdhc 1778 1779"Drivers: Serial/UART": 1780 status: maintained 1781 maintainers: 1782 - dcpleung 1783 files: 1784 - drivers/serial/ 1785 - include/zephyr/drivers/uart.h 1786 - include/zephyr/drivers/uart/ 1787 - dts/bindings/serial/ 1788 - samples/drivers/uart/ 1789 - tests/drivers/uart/ 1790 - tests/drivers/build_all/uart/ 1791 - doc/hardware/peripherals/uart.rst 1792 - include/zephyr/drivers/serial/ 1793 - include/zephyr/drivers/uart_pipe.h 1794 labels: 1795 - "area: UART" 1796 tests: 1797 - drivers.uart 1798 1799"Drivers: Sensors": 1800 status: maintained 1801 maintainers: 1802 - MaureenHelm 1803 collaborators: 1804 - avisconti 1805 - teburd 1806 - yperess 1807 - tristan-google 1808 files: 1809 - drivers/sensor/ 1810 - include/zephyr/drivers/sensor.h 1811 - include/zephyr/drivers/sensor_data_types.h 1812 - samples/sensor/ 1813 - tests/drivers/sensor/ 1814 - dts/bindings/sensor/ 1815 - include/zephyr/drivers/sensor/ 1816 - include/zephyr/dt-bindings/sensor/ 1817 - doc/hardware/peripherals/sensor.rst 1818 - tests/drivers/build_all/sensor/ 1819 labels: 1820 - "area: Sensors" 1821 tests: 1822 - drivers.sensors 1823 1824"Drivers: SMBus": 1825 status: maintained 1826 maintainers: 1827 - finikorg 1828 files: 1829 - drivers/smbus/ 1830 - dts/bindings/smbus/ 1831 - include/zephyr/drivers/smbus.h 1832 - samples/drivers/smbus/ 1833 - tests/drivers/smbus/ 1834 - doc/hardware/peripherals/smbus.rst 1835 labels: 1836 - "area: SMBus" 1837 tests: 1838 - drivers.smbus 1839 1840"Drivers: SPI": 1841 status: maintained 1842 maintainers: 1843 - tbursztyka 1844 collaborators: 1845 - teburd 1846 files: 1847 - drivers/spi/ 1848 - include/zephyr/drivers/spi.h 1849 - tests/drivers/spi/ 1850 - doc/hardware/peripherals/spi.rst 1851 labels: 1852 - "area: SPI" 1853 tests: 1854 - drivers.spi 1855 1856"Drivers: System timer": 1857 status: maintained 1858 maintainers: 1859 - andyross 1860 collaborators: 1861 - teburd 1862 files: 1863 - drivers/timer/ 1864 - include/zephyr/drivers/timer/ 1865 labels: 1866 - "area: Timer" 1867 1868"Drivers: Video": 1869 status: odd fixes 1870 collaborators: 1871 - loicpoulain 1872 files: 1873 - drivers/video/ 1874 - include/zephyr/drivers/video.h 1875 - include/zephyr/drivers/video-controls.h 1876 - doc/hardware/peripherals/video.rst 1877 - tests/drivers/*/video/ 1878 labels: 1879 - "area: Video" 1880 tests: 1881 - drivers.video 1882 1883"Drivers: W1": 1884 status: maintained 1885 maintainers: 1886 - str4t0m 1887 collaborators: 1888 - casparfriedrich 1889 files: 1890 - doc/hardware/peripherals/w1.rst 1891 - drivers/w1/ 1892 - dts/bindings/w1/ 1893 - include/zephyr/drivers/w1.h 1894 - include/zephyr/drivers/sensor/w1_sensor.h 1895 - tests/drivers/w1/ 1896 - samples/drivers/w1/ 1897 labels: 1898 - "area: W1" 1899 tests: 1900 - drivers.w1 1901 1902"Drivers: Watchdog": 1903 status: odd fixes 1904 collaborators: 1905 - katsuster 1906 - martinjaeger 1907 files: 1908 - doc/hardware/peripherals/watchdog.rst 1909 - drivers/watchdog/ 1910 - dts/bindings/watchdog/ 1911 - include/zephyr/drivers/watchdog.h 1912 - samples/drivers/watchdog/ 1913 - tests/drivers/watchdog/ 1914 - tests/drivers/build_all/watchdog/ 1915 labels: 1916 - "area: Watchdog" 1917 tests: 1918 - drivers.watchdog 1919 1920"Drivers: Wi-Fi": 1921 status: maintained 1922 maintainers: 1923 - jukkar 1924 collaborators: 1925 - rlubos 1926 - kludentwo 1927 - krish2718 1928 files: 1929 - drivers/wifi/ 1930 labels: 1931 - "area: Wi-Fi" 1932 1933"Drivers: Wi-Fi es-WiFi": 1934 status: odd fixes 1935 collaborators: 1936 - loicpoulain 1937 files: 1938 - drivers/wifi/eswifi/ 1939 description: >- 1940 Inventek es-WiFi 1941 1942 labels: 1943 - "area: Wi-Fi" 1944 1945"Drivers: Memory Management": 1946 status: maintained 1947 maintainers: 1948 - dcpleung 1949 collaborators: 1950 - ceolin 1951 - edersondisouza 1952 - jxstelter 1953 files: 1954 - include/zephyr/drivers/mm/ 1955 - drivers/mm/ 1956 - tests/boards/intel_adsp/mm/ 1957 - dts/bindings/mm/ 1958 labels: 1959 - "area: Memory Management" 1960 1961"Drivers: MIPI DBI": 1962 status: maintained 1963 maintainers: 1964 - danieldegrasse 1965 files: 1966 - drivers/mipi_dbi/ 1967 - dts/bindings/mipi-dbi/ 1968 labels: 1969 - "area: Display Controller" 1970 1971"Drivers: Virtualization": 1972 status: maintained 1973 maintainers: 1974 - tbursztyka 1975 files: 1976 - drivers/virtualization/ 1977 - tests/drivers/virtualization/ 1978 - dts/bindings/virtualization/ 1979 - include/zephyr/drivers/virtualization/ 1980 - doc/services/virtualization/ 1981 - include/zephyr/drivers/virtualization/ivshmem.h 1982 labels: 1983 - "area: Virtualization" 1984 tests: 1985 - drivers.virtualization 1986 1987EC Host Commands: 1988 status: maintained 1989 maintainers: 1990 - niedzwiecki-dawid 1991 files: 1992 - subsys/mgmt/ec_host_cmd/ 1993 - include/zephyr/mgmt/ec_host_cmd/ 1994 - tests/subsys/mgmt/ec_host_cmd/ 1995 labels: 1996 - "area: ec_host_cmd" 1997 tests: 1998 - mgmt.ec_host_cmd 1999 2000Xen Platform: 2001 status: maintained 2002 maintainers: 2003 - povergoing 2004 collaborators: 2005 - SgrrZhf 2006 - lorc 2007 - firscity 2008 - luca-fancellu 2009 files: 2010 - include/zephyr/xen/ 2011 - drivers/xen/ 2012 - arch/arm64/core/xen/ 2013 - soc/arm64/xenvm/ 2014 - boards/arm64/xenvm/ 2015 labels: 2016 - "area: Xen Platform" 2017 2018Filesystems: 2019 status: maintained 2020 maintainers: 2021 - de-nordic 2022 collaborators: 2023 - Laczen 2024 - nashif 2025 files: 2026 - include/zephyr/fs/ 2027 - samples/subsys/fs/ 2028 - subsys/fs/ 2029 - tests/subsys/fs/ 2030 labels: 2031 - "area: File System" 2032 tests: 2033 - filesystem 2034 2035"Filesystems: FatFs reentrant support": 2036 status: maintained 2037 maintainers: 2038 - ox11 2039 files: 2040 - modules/fatfs/zfs_ffsystem.c 2041 - tests/subsys/fs/fat_fs_api/src/test_fat_file_reentrant.c 2042 labels: 2043 - "area: File System" 2044 tests: 2045 - filesystem.fat 2046 2047Formatted Output: 2048 status: maintained 2049 maintainers: 2050 - nordic-krch 2051 collaborators: 2052 - dcpleung 2053 files: 2054 - include/zephyr/sys/cbprintf* 2055 - tests/unit/cbprintf/ 2056 - tests/lib/cbprintf_*/ 2057 - lib/os/cbprintf* 2058 - lib/os/Kconfig.cbprintf 2059 - doc/services/formatted_output.rst 2060 labels: 2061 - "area: Formatting Output" 2062 tests: 2063 - utilities.prf 2064 - libraries.cbprintf 2065 2066Google Platforms: 2067 status: maintained 2068 maintainers: 2069 - fabiobaltieri 2070 - keith-zephyr 2071 files: 2072 - boards/*/google_*/ 2073 - samples/boards/google_*/ 2074 2075Hash Utilities: 2076 status: maintained 2077 maintainers: 2078 - cfriedt 2079 files: 2080 - include/zephyr/sys/hash_* 2081 - lib/hash/ 2082 - samples/basic/hash_map/ 2083 - tests/lib/hash_*/ 2084 description: >- 2085 Hash Functions and Hash Maps (Hash Tables) 2086 labels: 2087 - "area: hash utils" 2088 tests: 2089 - libraries.hash_function 2090 - libraries.hash_map 2091 2092Input: 2093 status: maintained 2094 maintainers: 2095 - fabiobaltieri 2096 collaborators: 2097 - gmarull 2098 files: 2099 - doc/services/input/ 2100 - drivers/input/ 2101 - dts/bindings/input/ 2102 - include/zephyr/dt-bindings/input/ 2103 - include/zephyr/input/ 2104 - samples/subsys/input/ 2105 - subsys/input/ 2106 - tests/drivers/build_all/input/ 2107 - tests/subsys/input/ 2108 - tests/drivers/input/ 2109 description: >- 2110 Input subsystem and drivers 2111 labels: 2112 - "area: Input" 2113 tests: 2114 - drivers.input 2115 - input 2116 2117IPC: 2118 status: maintained 2119 maintainers: 2120 - carlocaione 2121 - arnopo 2122 files: 2123 - include/zephyr/ipc/ 2124 - samples/subsys/ipc/ 2125 - subsys/ipc/ 2126 - tests/subsys/ipc/ 2127 - doc/services/ipc/ 2128 description: >- 2129 Inter-Processor Communication 2130 labels: 2131 - "area: IPC" 2132 tests: 2133 - ipc 2134 2135JSON Web Token: 2136 status: maintained 2137 maintainers: 2138 - d3zd3z 2139 collaborators: 2140 - mrfuchs 2141 - sir-branch 2142 files: 2143 - subsys/jwt/ 2144 - include/zephyr/data/ 2145 - lib/utils/json.c 2146 - tests/subsys/jwt/ 2147 - tests/lib/json/ 2148 labels: 2149 - "area: JSON" 2150 tests: 2151 - libraries.encoding.json 2152 - libraries.encoding.jwt 2153 2154Kconfig: 2155 status: odd fixes 2156 collaborators: 2157 - tejlmand 2158 - nashif 2159 files: 2160 - scripts/kconfig/ 2161 - doc/build/kconfig/ 2162 - Kconfig.zephyr 2163 - tests/kconfig/configdefault/ 2164 - tests/misc/kconfigoptions/ 2165 labels: 2166 - "area: Kconfig" 2167 description: >- 2168 See https://docs.zephyrproject.org/latest/build/kconfig/index.html and 2169 https://docs.zephyrproject.org/latest/hardware/porting/board_porting.html#default-board-configuration 2170 tests: 2171 - kconfig 2172 2173Kernel: 2174 status: maintained 2175 maintainers: 2176 - andyross 2177 - peter-mitsis 2178 collaborators: 2179 - nashif 2180 - ceolin 2181 - dcpleung 2182 - cfriedt 2183 - npitre 2184 files: 2185 - doc/kernel/ 2186 - include/zephyr/kernel*.h 2187 - include/zephyr/spinlock.h 2188 - include/zephyr/fatal.h 2189 - kernel/ 2190 - tests/kernel/ 2191 - include/zephyr/sys_clock.h 2192 - samples/kernel/ 2193 - include/zephyr/kernel/ 2194 - tests/lib/p4workq/ 2195 files-exclude: 2196 - tests/kernel/mem_protect/ 2197 labels: 2198 - "area: Kernel" 2199 tests: 2200 - kernel 2201 2202Utilities: 2203 status: maintained 2204 maintainers: 2205 - andyross 2206 - nashif 2207 collaborators: 2208 - dcpleung 2209 - peter-mitsis 2210 files: 2211 - lib/crc/ 2212 - lib/utils/ 2213 - tests/unit/timeutil/ 2214 - tests/unit/time_units/ 2215 - tests/unit/rbtree/ 2216 - tests/unit/math_extras/ 2217 - tests/unit/crc/ 2218 - tests/unit/base64/ 2219 - tests/unit/math_extras/ 2220 - tests/unit/list/ 2221 - tests/unit/intmath/ 2222 - tests/unit/pot/ 2223 - tests/lib/time/ 2224 - tests/lib/onoff/ 2225 - tests/lib/sys_util/ 2226 - tests/lib/sprintf/ 2227 - tests/lib/ringbuffer/ 2228 - tests/lib/notify/ 2229 - tests/lib/linear_range/ 2230 labels: 2231 - "area: Utilities" 2232 tests: 2233 - utilities 2234 - libraries.ring_buffer 2235 - libraries.linear_range 2236 2237Base OS: 2238 status: maintained 2239 maintainers: 2240 - andyross 2241 - nashif 2242 collaborators: 2243 - dcpleung 2244 - peter-mitsis 2245 files: 2246 - include/zephyr/sys/ 2247 - lib/os/ 2248 - tests/misc/print_format/ 2249 - tests/lib/p4workq/ 2250 - tests/lib/fdtable/ 2251 files-exclude: 2252 - include/zephyr/sys/cbprintf* 2253 - tests/unit/cbprintf/ 2254 - tests/lib/cbprintf_*/ 2255 - lib/os/cbprintf* 2256 - lib/os/Kconfig.cbprintf 2257 - include/zephyr/sys/mem_manage.h 2258 - include/zephyr/sys/mpsc_pbuf.h 2259 - include/zephyr/sys/mpsc_packet.h 2260 - lib/os/mpsc_pbuf.c 2261 labels: 2262 - "area: Base OS" 2263 tests: 2264 - printk 2265 2266Heap Management: 2267 status: maintained 2268 maintainers: 2269 - npitre 2270 - andyross 2271 files: 2272 - tests/lib/shared_multi_heap/ 2273 - lib/heap/ 2274 - tests/lib/heap/ 2275 - tests/lib/heap_align/ 2276 - tests/lib/multi_heap/ 2277 - include/zephyr/multi_heap/ 2278 2279Memory Management: 2280 status: maintained 2281 maintainers: 2282 - carlocaione 2283 - dcpleung 2284 files: 2285 - subsys/mem_mgmt/ 2286 - lib/mem_blocks/ 2287 - tests/subsys/mem_mgmt/ 2288 - include/zephyr/mem_mgmt/mem_attr_heap.h 2289 - tests/lib/mem_alloc/ 2290 - tests/lib/mem_blocks/ 2291 - doc/services/mem_mgmt/ 2292 - include/zephyr/mem_mgmt/mem_attr.h 2293 - tests/lib/mem_blocks_stats/ 2294 - tests/drivers/mm/ 2295 tests: 2296 - mem_mgmt 2297 2298Laird Connectivity platforms: 2299 status: maintained 2300 maintainers: 2301 - rerickson1 2302 collaborators: 2303 - greg-leach 2304 files: 2305 - boards/arm/bl5340_dvk/ 2306 - boards/arm/bl65*/ 2307 - boards/arm/bt510/ 2308 - boards/arm/bt610/ 2309 - boards/arm/pinnacle_100_dvk/ 2310 - boards/arm/mg100/ 2311 labels: 2312 - "platform: Laird Connectivity" 2313 2314Linker Scripts: 2315 status: maintained 2316 maintainers: 2317 - nashif 2318 files: 2319 - include/zephyr/linker/ 2320 - tests/misc/iterable_sections/ 2321 - tests/application_development/code_relocation/ 2322 labels: 2323 - "area: Linker Scripts" 2324 tests: 2325 - linker 2326 2327Little FS: 2328 status: odd fixes 2329 files: 2330 - subsys/fs/Kconfig.littlefs 2331 - subsys/fs/littlefs_fs.c 2332 - tests/subsys/fs/littlefs/ 2333 description: >- 2334 Little FS 2335 labels: 2336 - "area: File System" 2337 tests: 2338 - filesystem.littlefs 2339 2340Logging: 2341 status: maintained 2342 maintainers: 2343 - nordic-krch 2344 collaborators: 2345 - dcpleung 2346 files: 2347 - include/zephyr/logging/ 2348 - include/zephyr/sys/mpsc_pbuf.h 2349 - include/zephyr/sys/mpsc_packet.h 2350 - lib/os/mpsc_pbuf.c 2351 - doc/kernel/data_structures/mpsc_pbuf.rst 2352 - tests/lib/mpsc_pbuf/ 2353 - samples/subsys/logging/ 2354 - subsys/logging/ 2355 - tests/subsys/logging/ 2356 - scripts/logging/ 2357 - doc/services/logging/ 2358 - tests/lib/spsc_pbuf/ 2359 labels: 2360 - "area: Logging" 2361 tests: 2362 - logging 2363 2364LoRa and LoRaWAN: 2365 status: maintained 2366 maintainers: 2367 - JordanYates 2368 collaborators: 2369 - Mani-Sadhasivam 2370 - martinjaeger 2371 - mniestroj 2372 files: 2373 - drivers/lora/ 2374 - include/zephyr/drivers/lora.h 2375 - samples/drivers/lora/ 2376 - include/zephyr/lorawan/ 2377 - subsys/lorawan/ 2378 - samples/subsys/lorawan/ 2379 - doc/connectivity/lora_lorawan/index.rst 2380 labels: 2381 - "area: LoRa" 2382 tests: 2383 - sample.driver.lora 2384 2385MAINTAINERS file: 2386 status: maintained 2387 maintainers: 2388 - MaureenHelm 2389 collaborators: 2390 - nashif 2391 - stephanosio 2392 files: 2393 - MAINTAINERS.yml 2394 labels: 2395 - "area: Process" 2396 description: >- 2397 Zephyr Maintainers File 2398 2399Mbed TLS: 2400 status: maintained 2401 maintainers: 2402 - d3zd3z 2403 - ceolin 2404 files: 2405 - tests/crypto/mbedtls/ 2406 - doc/services/crypto/ 2407 - tests/benchmarks/mbedtls/ 2408 labels: 2409 - "area: Crypto / RNG" 2410 description: >- 2411 Mbed TLS module implementing the PSA Crypto API and TLS. 2412 tests: 2413 - benchmark.crypto.mbedtls 2414 - crypto.mbedtls 2415 2416MCU Manager: 2417 status: maintained 2418 maintainers: 2419 - nordicjm 2420 collaborators: 2421 - de-nordic 2422 files: 2423 - subsys/mgmt/mcumgr/ 2424 - include/zephyr/mgmt/mcumgr/ 2425 - samples/subsys/mgmt/mcumgr/ 2426 - tests/subsys/mgmt/mcumgr/ 2427 - doc/services/device_mgmt/ 2428 - scripts/utils/migrate_mcumgr_kconfigs.py 2429 labels: 2430 - "area: mcumgr" 2431 tests: 2432 - mgmt.mcumgr 2433 2434Modbus: 2435 status: maintained 2436 maintainers: 2437 - jfischer-no 2438 files: 2439 - samples/subsys/modbus/ 2440 - include/zephyr/modbus/ 2441 - tests/subsys/modbus/ 2442 - subsys/modbus/ 2443 - doc/services/modbus/ 2444 labels: 2445 - "area: modbus" 2446 tests: 2447 - modbus 2448 2449Modem: 2450 status: maintained 2451 maintainers: 2452 - bjarki-trackunit 2453 files: 2454 - subsys/modem/ 2455 - include/zephyr/modem/ 2456 - tests/subsys/modem/ 2457 - doc/services/modem/ 2458 - samples/net/cellular_modem/ 2459 - include/zephyr/drivers/cellular.h 2460 labels: 2461 - "area: Modem" 2462 tests: 2463 - modem 2464 2465OSDP: 2466 status: maintained 2467 maintainers: 2468 - sidcha 2469 collaborators: 2470 - adakus 2471 - r2r0 2472 files: 2473 - subsys/mgmt/osdp/ 2474 - include/zephyr/mgmt/osdp.h 2475 - samples/subsys/mgmt/osdp/ 2476 labels: 2477 - "area: OSDP" 2478 tests: 2479 - sample.mgmt.osdp 2480 2481hawkBit: 2482 status: odd fixes 2483 collaborators: 2484 - ycsin 2485 files: 2486 - subsys/mgmt/hawkbit/ 2487 - include/zephyr/mgmt/hawkbit.h 2488 - samples/subsys/mgmt/hawkbit/ 2489 labels: 2490 - "area: hawkBit" 2491 tests: 2492 - sample.net.hawkbit 2493 2494"mgmt: updatehub": 2495 status: maintained 2496 maintainers: 2497 - nandojve 2498 files: 2499 - subsys/mgmt/updatehub/ 2500 - include/zephyr/mgmt/updatehub.h 2501 - samples/subsys/mgmt/updatehub/ 2502 labels: 2503 - "area: updatehub" 2504 description: >- 2505 UpdateHub embedded Firmware Over-The-Air (FOTA) upgrade agent 2506 tests: 2507 - sample.net.updatehub 2508 2509Native POSIX/Sim and POSIX arch: 2510 status: maintained 2511 maintainers: 2512 - aescolar 2513 files: 2514 - arch/posix/ 2515 - boards/posix/common/ 2516 - boards/posix/native_*/ 2517 - boards/posix/doc/ 2518 - boards/posix/*.rst 2519 - drivers/*/*posix* 2520 - drivers/*/*native* 2521 - drivers/*/*/*posix* 2522 - drivers/*/*/*native* 2523 - dts/posix/ 2524 - include/zephyr/arch/posix/ 2525 - scripts/native_simulator/ 2526 - scripts/valgrind.supp 2527 - soc/posix/ 2528 - tests/boards/native_sim/ 2529 labels: 2530 - "area: native port" 2531 description: >- 2532 POSIX architecture and SOC, native_posix & native_sim boards, and related drivers 2533 tests: 2534 - boards.native_sim 2535 2536Networking: 2537 status: maintained 2538 maintainers: 2539 - rlubos 2540 - jukkar 2541 collaborators: 2542 - tbursztyka 2543 - ssharks 2544 files: 2545 - scripts/net/ 2546 - drivers/net/ 2547 - include/zephyr/net/ 2548 - samples/net/ 2549 - subsys/net/ 2550 - doc/connectivity/networking/ 2551 - tests/net/ 2552 - tests/unit/net_timeout/ 2553 files-exclude: 2554 - doc/connectivity/networking/api/gptp.rst 2555 - doc/connectivity/networking/api/ieee802154.rst 2556 - doc/connectivity/networking/api/wifi.rst 2557 - include/zephyr/net/gptp.h 2558 - include/zephyr/net/ieee802154*.h 2559 - include/zephyr/net/wifi*.h 2560 - include/zephyr/net/buf.h 2561 - samples/net/gptp/ 2562 - samples/net/sockets/coap_*/ 2563 - samples/net/lwm2m_client/ 2564 - samples/net/wifi/ 2565 - subsys/net/buf*.c 2566 - subsys/net/l2/ethernet/gptp/ 2567 - subsys/net/l2/ieee802154/ 2568 - subsys/net/l2/wifi/ 2569 - subsys/net/lib/coap/ 2570 - subsys/net/lib/config/ieee802154* 2571 - subsys/net/lib/lwm2m/ 2572 - subsys/net/lib/tls_credentials/ 2573 - tests/net/ieee802154/ 2574 - tests/net/wifi/ 2575 labels: 2576 - "area: Networking" 2577 tests: 2578 - net 2579 2580"Networking: BSD sockets": 2581 status: odd fixes 2582 collaborators: 2583 - rlubos 2584 - jukkar 2585 files: 2586 - samples/net/sockets/ 2587 - subsys/net/lib/sockets/ 2588 - tests/net/socket/ 2589 labels: 2590 - "area: Sockets" 2591 tests: 2592 - net.socket 2593 2594"Networking: Buffers": 2595 status: maintained 2596 maintainers: 2597 - jhedberg 2598 collaborators: 2599 - rlubos 2600 - tbursztyka 2601 - jukkar 2602 files: 2603 - include/zephyr/net/buf.h 2604 - subsys/net/buf*.c 2605 - tests/net/buf/ 2606 labels: 2607 - "area: Networking Buffers" 2608 tests: 2609 - net.buf 2610 2611"Networking: Connection Manager": 2612 status: maintained 2613 maintainers: 2614 - rlubos 2615 collaborators: 2616 - glarsennordic 2617 - jukkar 2618 files: 2619 - include/zephyr/net/conn_mgr*.h 2620 - subsys/net/conn_mgr/ 2621 - tests/net/conn_mgr_monitor/ 2622 - tests/net/conn_mgr_conn/ 2623 - doc/connectivity/networking/conn_mgr/ 2624 labels: 2625 - "area: Networking" 2626 tests: 2627 - net.conn_mgr 2628 2629"Networking: CoAP": 2630 status: maintained 2631 maintainers: 2632 - rlubos 2633 collaborators: 2634 - pdgendt 2635 files: 2636 - subsys/net/lib/coap/ 2637 - samples/net/sockets/coap_*/ 2638 - tests/net/lib/coap/ 2639 labels: 2640 - "area: Networking" 2641 tests: 2642 - net.coap 2643 2644"Networking: gPTP": 2645 status: maintained 2646 maintainers: 2647 - jukkar 2648 collaborators: 2649 - fgrandel 2650 files: 2651 - doc/connectivity/networking/api/gptp.rst 2652 - include/zephyr/net/gptp.h 2653 - samples/net/gptp/ 2654 - subsys/net/l2/ethernet/gptp/ 2655 labels: 2656 - "area: Networking" 2657 tests: 2658 - sample.net.gptp 2659 2660"Networking: LWM2M": 2661 status: maintained 2662 maintainers: 2663 - rlubos 2664 collaborators: 2665 - SeppoTakalo 2666 files: 2667 - samples/net/lwm2m_client/ 2668 - tests/net/lib/lwm2m/ 2669 - subsys/net/lib/lwm2m/ 2670 labels: 2671 - "area: LWM2M" 2672 tests: 2673 - net.lwm2m 2674 2675"Networking: MQTT": 2676 status: maintained 2677 maintainers: 2678 - rlubos 2679 files: 2680 - subsys/net/lib/mqtt/ 2681 - tests/net/lib/mqtt_*/ 2682 - samples/net/cloud/mqtt_azure/ 2683 - samples/net/mqtt_publisher/ 2684 files-exclude: 2685 - tests/net/lib/mqtt_sn*/ 2686 labels: 2687 - "area: Networking" 2688 tests: 2689 - net.mqtt 2690 2691"Networking: MQTT-SN": 2692 status: maintained 2693 maintainers: 2694 - rlubos 2695 collaborators: 2696 - BeckmaR 2697 files: 2698 - subsys/net/lib/mqtt_sn/ 2699 - tests/net/lib/mqtt_sn*/ 2700 - samples/net/mqtt_sn_publisher/ 2701 labels: 2702 - "area: Networking" 2703 tests: 2704 - net.mqtt_sn 2705 2706"Networking: Native IEEE 802.15.4": 2707 status: maintained 2708 maintainers: 2709 - fgrandel 2710 collaborators: 2711 - rlubos 2712 - jukkar 2713 files: 2714 - doc/connectivity/networking/api/ieee802154.rst 2715 - include/zephyr/net/ieee802154*.h 2716 - subsys/net/l2/ieee802154/ 2717 - subsys/net/lib/config/ieee802154* 2718 - tests/net/ieee802154/ 2719 labels: 2720 - "area: IEEE 802.15.4" 2721 tests: 2722 - net.ieee802154 2723 2724"Networking: OpenThread": 2725 status: maintained 2726 maintainers: 2727 - rlubos 2728 collaborators: 2729 - pdgendt 2730 - canisLupus1313 2731 - mariuszpos 2732 - edmont 2733 - maciejbaczmanski 2734 files: 2735 - subsys/net/l2/openthread/ 2736 - samples/net/openthread/ 2737 - tests/subsys/openthread/ 2738 labels: 2739 - "area: Networking" 2740 - "area: OpenThread" 2741 tests: 2742 - openthread 2743 2744"Networking: Wi-Fi": 2745 status: maintained 2746 maintainers: 2747 - jukkar 2748 collaborators: 2749 - rlubos 2750 - krish2718 2751 files: 2752 - doc/connectivity/networking/api/wifi.rst 2753 - include/zephyr/net/wifi*.h 2754 - subsys/net/l2/wifi/ 2755 - samples/net/wifi/ 2756 - tests/net/wifi/ 2757 labels: 2758 - "area: Networking" 2759 - "area: Wi-Fi" 2760 tests: 2761 - net.wifi 2762 2763NIOS-2 arch: 2764 status: maintained 2765 maintainers: 2766 - nashif 2767 files: 2768 - arch/nios2/ 2769 - dts/nios2/intel/ 2770 - boards/common/nios2.board.cmake 2771 - boards/nios2/ 2772 - soc/nios2/ 2773 - include/zephyr/arch/nios2/ 2774 - tests/boards/altera_max10/ 2775 - boards/nios2/qemu_nios2/ 2776 - scripts/support/quartus-flash.py 2777 labels: 2778 - "area: NIOS2" 2779 tests: 2780 - boards.altera_max10 2781 2782nRF BSIM: 2783 status: maintained 2784 maintainers: 2785 - aescolar 2786 files: 2787 - boards/posix/nrf_bsim/ 2788 - tests/boards/nrf52_bsim/ 2789 - tests/bsim/ 2790 files-exclude: 2791 - tests/bsim/*/ 2792 labels: 2793 - "platform: nRF BSIM" 2794 tests: 2795 - boards.nrf52_bsim 2796 2797Open AMP: 2798 status: maintained 2799 maintainers: 2800 - carlocaione 2801 files: 2802 - lib/open-amp/ 2803 2804 2805POSIX API layer: 2806 status: maintained 2807 maintainers: 2808 - cfriedt 2809 collaborators: 2810 - ycsin 2811 files: 2812 - include/zephyr/posix/ 2813 - lib/posix/ 2814 - tests/posix/ 2815 - samples/posix/ 2816 - tests/lib/fdtable/ 2817 - doc/services/portability/posix/ 2818 labels: 2819 - "area: POSIX" 2820 tests: 2821 - libraries.fdtable 2822 - portability.posix 2823 2824Power management: 2825 status: maintained 2826 maintainers: 2827 - ceolin 2828 collaborators: 2829 - nashif 2830 - teburd 2831 - tmleman 2832 - JordanYates 2833 files: 2834 - include/zephyr/pm/ 2835 - samples/subsys/pm/ 2836 - subsys/pm/ 2837 - tests/subsys/pm/ 2838 - doc/services/pm/ 2839 - drivers/power_domain/ 2840 labels: 2841 - "area: Power Management" 2842 tests: 2843 - pm 2844 2845"Quicklogic Platform": 2846 status: odd fixes 2847 files: 2848 - soc/arm/quicklogic_eos_s3/ 2849 - dts/arm/quicklogic/ 2850 labels: 2851 - "platform: Quicklogic" 2852 2853RISCV arch: 2854 status: maintained 2855 maintainers: 2856 - fkokosinski 2857 - kgugala 2858 - tgorochowik 2859 collaborators: 2860 - mgielda 2861 - katsuster 2862 - edersondisouza 2863 - carlocaione 2864 - npitre 2865 files: 2866 - arch/riscv/ 2867 - boards/riscv/ 2868 - dts/bindings/riscv/ 2869 - dts/riscv/ 2870 - include/zephyr/arch/riscv/ 2871 - soc/riscv/ 2872 - tests/arch/riscv/ 2873 - doc/hardware/arch/risc-v.rst 2874 - drivers/interrupt_controller/intc_plic.c 2875 labels: 2876 - "area: RISCV" 2877 tests: 2878 - arch.riscv 2879 2880Retention: 2881 status: maintained 2882 maintainers: 2883 - nordicjm 2884 files: 2885 - dts/bindings/retention/ 2886 - include/zephyr/retention/ 2887 - subsys/retention/ 2888 - doc/services/retention/ 2889 labels: 2890 - "area: Retention" 2891 2892Samples: 2893 status: maintained 2894 maintainers: 2895 - kartben 2896 collaborators: 2897 - nashif 2898 files: 2899 - samples/ 2900 labels: 2901 - "area: Samples" 2902 2903Sensor Subsystem: 2904 status: maintained 2905 maintainers: 2906 - lixuzha 2907 - ghu0510 2908 - yperess 2909 collaborators: 2910 - qianruh 2911 files: 2912 - dts/bindings/sensor/zephyr,sensing.yaml 2913 - dts/bindings/sensor/zephyr,sensing*.yaml 2914 - include/zephyr/sensing/ 2915 - doc/services/sensing/ 2916 - subsys/sensing/ 2917 - samples/subsys/sensing/ 2918 labels: 2919 - "area: Sensor Subsystem" 2920 tests: 2921 - sample.sensing 2922 2923Stats: 2924 status: odd fixes 2925 files: 2926 - subsys/stats/ 2927 - include/zephyr/stats/stats.h 2928 labels: 2929 - "area: Stats" 2930 2931Twister: 2932 status: maintained 2933 maintainers: 2934 - nashif 2935 collaborators: 2936 - galak 2937 - PerMac 2938 - hakehuang 2939 - gopiotr 2940 - golowanow 2941 - gchwier 2942 files: 2943 - scripts/twister 2944 - scripts/schemas/twister/ 2945 - scripts/pylib/twister/ 2946 - scripts/tests/twister/ 2947 - scripts/tests/twister_blackbox/ 2948 - doc/develop/test/twister.rst 2949 - scripts/pylib/pytest-twister-harness/ 2950 - doc/develop/test/pytest.rst 2951 - tests/test_config.yaml 2952 - scripts/utils/twister_to_list.py 2953 - tests/robot/common.robot 2954 labels: 2955 - "area: Twister" 2956 2957Settings: 2958 status: odd fixes 2959 files: 2960 - include/zephyr/settings/ 2961 - subsys/settings/ 2962 - tests/subsys/settings/ 2963 - samples/subsys/settings/ 2964 - doc/services/settings/ 2965 labels: 2966 - "area: Settings" 2967 tests: 2968 - settings 2969 2970Shell: 2971 status: maintained 2972 maintainers: 2973 - jakub-uC 2974 collaborators: 2975 - carlescufi 2976 files: 2977 - include/zephyr/shell/ 2978 - samples/subsys/shell/ 2979 - subsys/shell/ 2980 - tests/subsys/shell/ 2981 - doc/services/shell/ 2982 labels: 2983 - "area: Shell" 2984 tests: 2985 - shell 2986 2987Shields: 2988 status: maintained 2989 maintainers: 2990 - erwango 2991 collaborators: 2992 - avisconti 2993 - jfischer-no 2994 - kartben 2995 files: 2996 - boards/shields/ 2997 - doc/hardware/porting/shields.rst 2998 - samples/shields/ 2999 labels: 3000 - "area: Shields" 3001 tests: 3002 - sample.shields 3003 3004SPARC arch: 3005 status: odd fixes 3006 collaborators: 3007 - julius-barendt 3008 files: 3009 - arch/sparc/ 3010 - include/zephyr/arch/sparc/ 3011 - soc/sparc/ 3012 - boards/sparc/ 3013 - dts/sparc/ 3014 labels: 3015 - "area: SPARC" 3016 3017State machine framework: 3018 status: maintained 3019 maintainers: 3020 - sambhurst 3021 collaborators: 3022 - keith-zephyr 3023 files: 3024 - doc/services/smf/ 3025 - include/zephyr/smf.h 3026 - lib/smf/ 3027 - tests/lib/smf/ 3028 labels: 3029 - "area: State Machine Framework" 3030 tests: 3031 - libraries.smf 3032 3033ADI Platforms: 3034 status: maintained 3035 maintainers: 3036 - MaureenHelm 3037 collaborators: 3038 - galak 3039 - microbuilder 3040 files: 3041 - boards/arm/adi_*/ 3042 - drivers/*/max* 3043 - drivers/*/*max*/ 3044 - drivers/dac/dac_ltc* 3045 - drivers/ethernet/eth_adin* 3046 - drivers/mdio/mdio_adin* 3047 - drivers/regulator/regulator_adp5360* 3048 - drivers/sensor/adt*/ 3049 - drivers/sensor/adxl*/ 3050 - dts/bindings/*/adi,* 3051 - dts/bindings/*/lltc,* 3052 - dts/bindings/*/maxim,* 3053 labels: 3054 - "platform: ADI" 3055 3056Broadcom Platforms: 3057 status: odd fixes 3058 files: 3059 - dts/arm/broadcom/ 3060 - soc/arm/bcm_vk/ 3061 - boards/arm/bcm95840*/ 3062 3063GD32 Platforms: 3064 status: maintained 3065 maintainers: 3066 - cameled 3067 - nandojve 3068 collaborators: 3069 - gmarull 3070 - soburi 3071 files: 3072 - boards/arm/gd32*/ 3073 - boards/riscv/gd32*/ 3074 - boards/riscv/longan_nano/ 3075 - drivers/*/*gd32* 3076 - dts/*/gd/ 3077 - dts/bindings/*/*gd32* 3078 - soc/*/gd_gd32/ 3079 - scripts/west_commands/*/*gd32* 3080 labels: 3081 - "platform: GD32" 3082 description: >- 3083 GigaDevice GD32 SOCs, dts files and related drivers. Starter and eval 3084 boards. 3085 3086Synopsys Platforms: 3087 status: maintained 3088 maintainers: 3089 - ruuddw 3090 collaborators: 3091 - abrodkin 3092 - evgeniy-paltsev 3093 - IRISZZW 3094 files: 3095 - soc/arc/ 3096 - boards/arc/ 3097 - samples/boards/arc_secure_services/ 3098 labels: 3099 - "platform: Synopsys" 3100 3101Nuvoton NPCX Platforms: 3102 status: maintained 3103 maintainers: 3104 - MulinChao 3105 - ChiHuaL 3106 collaborators: 3107 - TomChang19 3108 - alvsun 3109 - sjg20 3110 - keith-zephyr 3111 - jackrosenthal 3112 - fabiobaltieri 3113 files: 3114 - soc/arm/nuvoton_npcx/ 3115 - boards/arm/npcx*/ 3116 - dts/arm/nuvoton/ 3117 - dts/bindings/*/*npcx* 3118 - drivers/*/*_npcx*.c 3119 labels: 3120 - "platform: Nuvoton NPCX" 3121 3122Nuvoton Numicro Numaker Platforms: 3123 status: maintained 3124 maintainers: 3125 - cyliangtw 3126 collaborators: 3127 - ssekar15 3128 files: 3129 - soc/arm/nuvoton_numicro/ 3130 - soc/arm/nuvoton_numaker/ 3131 - boards/arm/nuvoton_pfm*/ 3132 - boards/arm/numaker_*/ 3133 - dts/arm/nuvoton/ 3134 - dts/bindings/*/*numicro* 3135 - dts/bindings/*/*numaker* 3136 - drivers/*/*_numicro* 3137 - drivers/*/*_numaker* 3138 labels: 3139 - "platform: Nuvoton Numicro Numaker" 3140 3141Raspberry Pi Pico Platforms: 3142 status: maintained 3143 maintainers: 3144 - yonsch 3145 collaborators: 3146 - soburi 3147 files: 3148 - boards/arm/rpi_pico/ 3149 - boards/arm/adafruit_kb2040/ 3150 - boards/arm/sparkfun_pro_micro_rp2040/ 3151 - dts/arm/rpi_pico/ 3152 - dts/bindings/*/raspberrypi,pico* 3153 - drivers/*/*rpi_pico 3154 - drivers/*/*rpi_pico*/ 3155 - drivers/*/*rpi_pico*.c 3156 - soc/arm/rpi_pico/ 3157 labels: 3158 - "platform: Raspberry Pi Pico" 3159 3160SiLabs Platforms: 3161 status: maintained 3162 maintainers: 3163 - fkokosinski 3164 collaborators: 3165 - tgorochowik 3166 files: 3167 - soc/arm/silabs_*/ 3168 - boards/arm/ef*/ 3169 - dts/arm/silabs/ 3170 - dts/bindings/*/silabs* 3171 - drivers/*/*_gecko* 3172 labels: 3173 - "platform: SiLabs" 3174 3175Intel Platforms (X86): 3176 status: maintained 3177 maintainers: 3178 - jhedberg 3179 collaborators: 3180 - tbursztyka 3181 - laurenmurphyx64 3182 files: 3183 - boards/x86/ 3184 - dts/x86/intel/ 3185 - soc/x86/ 3186 - samples/boards/up_squared/ 3187 labels: 3188 - "platform: X86" 3189 3190Intel Platforms (Xtensa): 3191 status: maintained 3192 maintainers: 3193 - nashif 3194 collaborators: 3195 - andyross 3196 - dcpleung 3197 - lyakh 3198 - lgirdwood 3199 - marc-hb 3200 - kv2019i 3201 - ceolin 3202 - tmleman 3203 - softwarecki 3204 - jxstelter 3205 - marcinszkudlinski 3206 files: 3207 - boards/xtensa/intel_*/ 3208 - soc/xtensa/intel_*/ 3209 - dts/xtensa/intel/ 3210 - tests/boards/intel_adsp/ 3211 - samples/boards/intel_adsp/ 3212 - dts/bindings/*/intel,adsp* 3213 - scripts/west_commands/runners/intel_adsp.py 3214 labels: 3215 - "platform: Intel ADSP" 3216 3217Intel Platforms (ISH): 3218 status: maintained 3219 maintainers: 3220 - kwd-doodling 3221 collaborators: 3222 - teburd 3223 - likongintel 3224 files: 3225 - boards/x86/intel_ish/ 3226 - soc/x86/intel_ish/ 3227 - dts/x86/intel/intel_ish* 3228 - dts/bindings/*/intel,sedi* 3229 - drivers/*/*sedi* 3230 labels: 3231 - "platform: Intel ISH" 3232 3233Intel Platforms (Agilex): 3234 status: maintained 3235 maintainers: 3236 - gdengi 3237 collaborators: 3238 - nbalabak 3239 - teikheng 3240 files: 3241 - boards/arm64/intel_*/ 3242 - soc/arm64/intel_*/ 3243 - dts/arm64/intel/ 3244 - dts/bindings/*/intel,agilex* 3245 - dts/arm/intel_socfpga_std/ 3246 labels: 3247 - "platform: Intel SoC FPGA Agilex" 3248 3249NXP Drivers: 3250 status: maintained 3251 maintainers: 3252 - dleach02 3253 collaborators: 3254 - mmahadevan108 3255 - danieldegrasse 3256 - decsny 3257 - manuargue 3258 - dbaluta 3259 files: 3260 - drivers/*/*imx* 3261 - drivers/*/*lpc*.c 3262 - drivers/*/*mcux*.c 3263 - drivers/*/*.mcux 3264 - drivers/*/*.nxp 3265 - drivers/*/*nxp* 3266 - drivers/*/*kinetis* 3267 - drivers/misc/*/nxp* 3268 - include/zephyr/dt-bindings/*/*nxp* 3269 - include/zephyr/dt-bindings/*/*mcux* 3270 - include/zephyr/drivers/*/*nxp* 3271 - include/zephyr/drivers/*/*mcux* 3272 - arch/arm/core/mpu/nxp_mpu.c 3273 - dts/bindings/*/nxp* 3274 files-exclude: 3275 - drivers/*/*s32* 3276 - drivers/misc/*/*s32* 3277 - include/zephyr/dt-bindings/*/*s32* 3278 - include/zephyr/drivers/*/*s32* 3279 - dts/bindings/*/*s32* 3280 labels: 3281 - "platform: NXP Drivers" 3282 description: NXP Drivers 3283 3284NXP Platforms (MCUX): 3285 status: maintained 3286 maintainers: 3287 - dleach02 3288 collaborators: 3289 - mmahadevan108 3290 - danieldegrasse 3291 - DerekSnell 3292 - yvanderv 3293 - EmilioCBen 3294 - decsny 3295 files: 3296 - boards/arm/mimx*/ 3297 - boards/arm/frdm*/ 3298 - boards/arm/lpcxpress*/ 3299 - boards/arm/twr_*/ 3300 - boards/arm/vmu*/ 3301 - soc/arm/nxp_imx/ 3302 - soc/arm/nxp_kinetis/ 3303 - soc/arm/nxp_lpc/ 3304 - dts/arm/nxp/ 3305 - samples/boards/nxp*/ 3306 files-exclude: 3307 - boards/arm/*s32*/ 3308 - dts/arm/nxp/*s32* 3309 - samples/boards/nxp_s32/ 3310 labels: 3311 - "platform: NXP" 3312 description: NXP Platforms supported by MCUXpresso suite 3313 3314NXP Platforms (S32): 3315 status: maintained 3316 maintainers: 3317 - manuargue 3318 collaborators: 3319 - PetervdPerk-NXP 3320 - bperseghetti 3321 - Dat-NguyenDuy 3322 files: 3323 - boards/arm/s32*/ 3324 - boards/arm/mr_canhubk3/ 3325 - boards/arm/ucans32k1sic/ 3326 - boards/common/*nxp_s32* 3327 - soc/arm/nxp_s32/ 3328 - drivers/*/*nxp_s32* 3329 - drivers/misc/*nxp_s32*/ 3330 - dts/bindings/*/nxp,s32* 3331 - dts/arm/nxp/*s32* 3332 - samples/boards/nxp_s32/ 3333 - include/zephyr/dt-bindings/*/nxp-s32* 3334 - include/zephyr/dt-bindings/*/nxp_s32* 3335 - include/zephyr/drivers/*/*nxp_s32* 3336 labels: 3337 - "platform: NXP S32" 3338 description: NXP S32 platforms and S32-specific drivers 3339 3340NXP Platforms (Xtensa): 3341 status: maintained 3342 maintainers: 3343 - dbaluta 3344 collaborators: 3345 - iuliana-prodan 3346 files: 3347 - soc/xtensa/nxp_adsp/ 3348 - boards/xtensa/nxp_adsp_*/ 3349 labels: 3350 - "platform: NXP ADSP" 3351 description: NXP Xtensa platforms 3352 3353Microchip MEC Platforms: 3354 status: maintained 3355 maintainers: 3356 - jvasanth1 3357 collaborators: 3358 - VenkatKotakonda 3359 - albertofloyd 3360 files: 3361 - boards/arm/mec*/ 3362 - dts/arm/microchip/ 3363 - soc/arm/microchip_mec/ 3364 - drivers/*/*mchp*.c 3365 - tests/boards/mec15xxevb_assy6853/ 3366 - tests/boards/mec172xevb_assy6906/ 3367 - dts/bindings/*/microchip,* 3368 labels: 3369 - "platform: Microchip MEC" 3370 3371Microchip SAM Platforms: 3372 status: maintained 3373 maintainers: 3374 - nandojve 3375 collaborators: 3376 - attie-argentum 3377 - pdgendt 3378 - mnkp 3379 - stephanosio 3380 files: 3381 - boards/arm/atsam*/ 3382 - boards/arm/sam*/ 3383 - dts/arm/atmel/ 3384 - soc/arm/atmel_sam*/ 3385 - drivers/*/*sam*.c 3386 - dts/bindings/*/atmel,* 3387 labels: 3388 - "platform: Microchip SAM" 3389 3390nRF Platforms: 3391 status: maintained 3392 maintainers: 3393 - anangl 3394 files: 3395 - boards/arm/*nrf*/ 3396 - drivers/*/*nrfx*.c 3397 - soc/arm/nordic_nrf/ 3398 - samples/boards/nrf/ 3399 - dts/arm/nordic/ 3400 - dts/bindings/*/nordic,* 3401 - tests/drivers/timer/nrf_rtc_timer/ 3402 labels: 3403 - "platform: nRF" 3404 3405Renesas SmartBond Platforms: 3406 status: maintained 3407 maintainers: 3408 - andrzej-kaczmarek 3409 - blauret 3410 files: 3411 - boards/arm/da14*/ 3412 - drivers/*/*smartbond* 3413 - dts/arm/renesas/smartbond/ 3414 - dts/bindings/*/renesas,smartbond* 3415 - soc/arm/renesas_smartbond/ 3416 labels: 3417 - "platform: Renesas SmartBond" 3418 description: >- 3419 Renesas SmartBond SOCs, dts files, and related drivers. Renesas boards based 3420 on SmartBond SoCs. 3421 3422Renesas RA Platforms: 3423 status: maintained 3424 maintainers: 3425 - soburi 3426 files: 3427 - boards/arm/arduino_uno_r4/ 3428 - drivers/*/*renesas_ra* 3429 - dts/arm/renesas/ra/ 3430 - dts/bindings/*/*renesas,ra* 3431 - soc/arm/renesas_ra/ 3432 labels: 3433 - "platforms: Renesas RA" 3434 description: >- 3435 Renesas RA SOCs, dts files, and related drivers. Boards based 3436 on Renesas RA SoCs. 3437 3438Renesas RZ Platforms: 3439 status: maintained 3440 maintainers: 3441 - tgorochowik 3442 files: 3443 - boards/arm/rzt2m_*/ 3444 - drivers/*/*rzt2m* 3445 - dts/arm/renesas/rz/ 3446 - dts/bindings/*/*rzt2m* 3447 - soc/arm/renesas_rzt2m/ 3448 labels: 3449 - "platforms: Renesas RZ" 3450 description: >- 3451 Renesas RZ SOCs, dts files, and related drivers. Renesas boards based 3452 on RZ SoCs. 3453 3454Renesas R-Car Platforms: 3455 status: maintained 3456 maintainers: 3457 - aaillet 3458 - lorc 3459 collaborators: 3460 - xakep-amatop 3461 files: 3462 - dts/arm/renesas/rcar/ 3463 - boards/arm/rcar_*/ 3464 - boards/arm64/rcar_*/ 3465 - drivers/*/*rcar* 3466 - drivers/clock_control/*cpg_mssr* 3467 - dts/arm/renesas/rcar/ 3468 - dts/arm64/renesas/ 3469 - dts/bindings/*/*rcar* 3470 - soc/arm/renesas_rcar/ 3471 - soc/arm64/renesas_rcar/ 3472 labels: 3473 - "platform: Renesas R-Car" 3474 description: >- 3475 Renesas R-Car SOCs, dts files (Cortex-R and Cortex-A sides). 3476 Renesas boards based on R-Car SOCs (Cortex-R and Cortex-A sides). 3477 Renesas R-Car related drivers. 3478 3479STM32 Platforms: 3480 status: maintained 3481 maintainers: 3482 - erwango 3483 collaborators: 3484 - ABOSTM 3485 - FRASTM 3486 - gautierg-st 3487 - Desvauxm-st 3488 - GeorgeCGV 3489 files: 3490 - boards/arm/b_*/ 3491 - boards/arm/nucleo_*/ 3492 - boards/arm/stm32*_disco/ 3493 - boards/arm/stm32*_dk*/ 3494 - boards/arm/stm32*_eval/ 3495 - drivers/*/*stm32*/ 3496 - drivers/*/*stm32*.c 3497 - drivers/*/*stm32*.h 3498 - drivers/*/*/*stm32* 3499 - drivers/*/*stm32* 3500 - dts/arm/st/ 3501 - dts/bindings/*/*stm32* 3502 - soc/arm/st_stm32/ 3503 - samples/boards/stm32/ 3504 labels: 3505 - "platform: STM32" 3506 description: >- 3507 STM32 SOCs, dts files and related drivers. ST nucleo, disco and eval 3508 boards. 3509 3510Espressif Platforms: 3511 status: maintained 3512 maintainers: 3513 - sylvioalves 3514 collaborators: 3515 - LucasTambor 3516 - marekmatej 3517 - uLipe 3518 files: 3519 - drivers/*/*esp32*.c 3520 - boards/xtensa/esp32*/ 3521 - soc/xtensa/espressif_esp32*/ 3522 - boards/riscv/esp32*/ 3523 - soc/riscv/espressif_esp32*/ 3524 - dts/xtensa/espressif/ 3525 - dts/riscv/espressif/ 3526 - dts/bindings/*/*esp32* 3527 - samples/boards/esp32*/ 3528 - tests/boards/espressif_esp32/ 3529 - drivers/wifi/esp32/ 3530 labels: 3531 - "platform: ESP32" 3532 3533ITE Platforms: 3534 status: maintained 3535 maintainers: 3536 - Dino-Li 3537 - GTLin08 3538 - RuibinChang 3539 collaborators: 3540 - jackrosenthal 3541 - keith-zephyr 3542 - brockus-zephyr 3543 - sjg20 3544 files: 3545 - boards/riscv/it8*_evb/ 3546 - drivers/*/*/*it8xxx2*.c 3547 - drivers/*/*it8xxx2*.c 3548 - drivers/*/*_ite_* 3549 - dts/bindings/*/*ite* 3550 - dts/riscv/ite/ 3551 - soc/riscv/ite_ec/ 3552 labels: 3553 - "platform: ITE" 3554 3555TI SimpleLink Platforms: 3556 status: maintained 3557 maintainers: 3558 - vaishnavachath 3559 collaborators: 3560 - vanti 3561 files: 3562 - boards/arm/cc13*/ 3563 - boards/arm/cc26*/ 3564 - boards/arm/cc32*/ 3565 - boards/*/msp*/ 3566 - drivers/*/*cc13* 3567 - drivers/*/*cc25* 3568 - drivers/*/*cc26* 3569 - drivers/*/*cc32* 3570 - dts/arm/ti/ 3571 - dts/bindings/*/ti,* 3572 - soc/arm/ti_simplelink/ 3573 - dts/bindings/*/ti,* 3574 - modules/Kconfig.simplelink 3575 labels: 3576 - "platform: TI SimpleLink" 3577 3578TI K3 Platforms: 3579 status: maintained 3580 maintainers: 3581 - vaishnavachath 3582 collaborators: 3583 - gramsay0 3584 files: 3585 - boards/*/*phycore_am6*/ 3586 - boards/*/am6*/ 3587 - drivers/*/*ti_k3* 3588 - dts/bindings/*/ti,k3* 3589 - soc/*/ti_k3/ 3590 labels: 3591 - "platform: TI K3" 3592 3593TI Platforms: 3594 status: odd fixes 3595 files: 3596 - soc/arm/ti_lm3s6965/ 3597 - dts/arm/ti/lm3s6965.dtsi 3598 labels: 3599 - "platform: TI" 3600 3601Xilinx Platforms: 3602 status: odd fixes 3603 collaborators: 3604 - henrikbrixandersen 3605 - ibirnbaum 3606 files: 3607 - drivers/*/*xlnx* 3608 - dts/*/xilinx/ 3609 - dts/bindings/*/*xlnx* 3610 - include/zephyr/*/*/*xlnx* 3611 - soc/arm/xilinx*/ 3612 labels: 3613 - "platform: Xilinx" 3614 3615Infineon Platforms: 3616 status: maintained 3617 maintainers: 3618 - ifyall 3619 collaborators: 3620 - npal-cy 3621 - talih0 3622 files: 3623 - boards/arm/cy8ckit_*/ 3624 - boards/arm/cy8cproto_*/ 3625 - boards/arm/xmc*_relax*/ 3626 - drivers/*/*ifx_cat1* 3627 - drivers/*/*xmc*/ 3628 - drivers/*/*xmc*.c 3629 - drivers/*/*/*xmc* 3630 - dts/arm/infineon/ 3631 - dts/arm/cypress/ 3632 - soc/arm/cypress/ 3633 - dts/bindings/*/*infineon* 3634 - soc/arm/infineon_*/ 3635 labels: 3636 - "platform: Infineon" 3637 description: >- 3638 Infineon SOCs, dts files and related drivers. Infineon Proto, Pioneer, Eval and Relax 3639 boards. 3640 3641Panasonic Platforms: 3642 status: maintained 3643 maintainers: 3644 - pideu-sj 3645 files: 3646 - boards/arm/pan17*/ 3647 labels: 3648 - "platform: Panasonic" 3649 3650RTIO: 3651 status: maintained 3652 maintainers: 3653 - teburd 3654 collaborators: 3655 - yperess 3656 files: 3657 - samples/subsys/rtio/ 3658 - include/zephyr/rtio/ 3659 - tests/subsys/rtio/ 3660 - subsys/rtio/ 3661 - doc/services/rtio/ 3662 labels: 3663 - "area: RTIO" 3664 tests: 3665 - rtio 3666 3667Storage: 3668 status: odd fixes 3669 files: 3670 - subsys/storage/ 3671 - include/zephyr/storage/ 3672 - tests/subsys/storage/ 3673 - doc/services/storage/ 3674 labels: 3675 - "area: Storage" 3676 tests: 3677 - storage 3678 3679Sysbuild: 3680 status: maintained 3681 maintainers: 3682 - tejlmand 3683 collaborators: 3684 - nordicjm 3685 - "57300" 3686 files: 3687 - share/sysbuild/ 3688 - samples/application_development/sysbuild/ 3689 - doc/build/sysbuild/ 3690 labels: 3691 - "area: Sysbuild" 3692 tests: 3693 - sample.application_development.sysbuild 3694 3695Task Watchdog: 3696 status: maintained 3697 maintainers: 3698 - martinjaeger 3699 files: 3700 - include/zephyr/task_wdt/ 3701 - samples/subsys/task_wdt/ 3702 - subsys/task_wdt/ 3703 - doc/services/task_wdt/index.rst 3704 labels: 3705 - "area: Task Watchdog" 3706 tests: 3707 - sample.task_wdt 3708 3709"Drivers: Syscon": 3710 status: maintained 3711 maintainers: 3712 - carlocaione 3713 files: 3714 - include/zephyr/drivers/syscon.h 3715 - drivers/syscon/ 3716 - tests/drivers/syscon/ 3717 tests: 3718 - drivers.syscon 3719 3720"Drivers: Time Aware GPIO": 3721 status: maintained 3722 maintainers: 3723 - akanisetti 3724 files: 3725 - doc/hardware/peripherals/tgpio.rst 3726 - drivers/misc/timeaware_gpio/ 3727 - include/zephyr/drivers/misc/timeaware_gpio/ 3728 - samples/drivers/misc/timeaware_gpio/ 3729 labels: 3730 - "area: Time Aware GPIO" 3731 tests: 3732 - sample.drivers.misc.timeaware_gpio 3733 3734TF-M Integration: 3735 status: maintained 3736 maintainers: 3737 - d3zd3z 3738 collaborators: 3739 - SebastianBoe 3740 files: 3741 - samples/tfm_integration/ 3742 - modules/trusted-firmware-m/ 3743 - doc/services/tfm/ 3744 labels: 3745 - "area: TF-M" 3746 tests: 3747 - tfm 3748 3749 3750"Toolchain Integration": 3751 status: maintained 3752 maintainers: 3753 - tejlmand 3754 collaborators: 3755 - stephanosio 3756 files: 3757 - cmake/bintools/ 3758 - cmake/compiler/ 3759 - cmake/linker/ 3760 - cmake/toolchain/ 3761 - include/zephyr/toolchain/ 3762 - include/zephyr/toolchain.h 3763 labels: 3764 - "area: Toolchains" 3765 3766"Toolchain ARC MWDT": 3767 status: maintained 3768 maintainers: 3769 - evgeniy-paltsev 3770 - abrodkin 3771 files: 3772 - cmake/*/arcmwdt/ 3773 - include/zephyr/toolchain/mwdt.h 3774 - lib/libc/arcmwdt/* 3775 labels: 3776 - "area: Toolchains" 3777 3778"Toolchain arm compiler 6": 3779 status: maintained 3780 maintainers: 3781 - tejlmand 3782 files: 3783 - cmake/*/armclang/ 3784 - cmake/linker/armlink/ 3785 - include/zephyr/toolchain/armclang.h 3786 - lib/libc/armstdc/* 3787 labels: 3788 - "area: Toolchains" 3789 3790"Toolchain oneApi": 3791 status: maintained 3792 maintainers: 3793 - nashif 3794 files: 3795 - cmake/*/oneApi/ 3796 - cmake/compiler/icx/ 3797 labels: 3798 - "area: Toolchains" 3799 3800Tracing: 3801 status: maintained 3802 maintainers: 3803 - nashif 3804 collaborators: 3805 - teburd 3806 files: 3807 - subsys/tracing/ 3808 - scripts/tracing/ 3809 - include/zephyr/tracing/ 3810 - subsys/timing/ 3811 - samples/subsys/tracing/ 3812 - doc/services/tracing/ 3813 - tests/subsys/tracing/ 3814 labels: 3815 - "area: tracing" 3816 tests: 3817 - tracing 3818 3819USB: 3820 status: maintained 3821 maintainers: 3822 - jfischer-no 3823 collaborators: 3824 - tmon-nordic 3825 files: 3826 - drivers/usb/ 3827 - dts/bindings/usb/ 3828 - include/zephyr/*/usb/ 3829 - include/zephyr/usb/ 3830 - samples/subsys/usb/ 3831 - subsys/usb/ 3832 - tests/subsys/usb/ 3833 - tests/drivers/usb/ 3834 - tests/drivers/udc/ 3835 - doc/connectivity/usb/ 3836 - scripts/generate_usb_vif/ 3837 labels: 3838 - "area: USB" 3839 tests: 3840 - usb 3841 - drivers.usb 3842 3843USB-C: 3844 status: maintained 3845 maintainers: 3846 - sambhurst 3847 collaborators: 3848 - keith-zephyr 3849 files: 3850 - drivers/usb_c/ 3851 - dts/bindings/usb-c/ 3852 - include/zephyr/*/usb_c/ 3853 - include/zephyr/usb_c/ 3854 - samples/subsys/usb_c/ 3855 - subsys/usb/usb_c/ 3856 - doc/connectivity/usb/pd/ 3857 - doc/hardware/peripherals/usbc_vbus.rst 3858 labels: 3859 - "area: USB-C" 3860 tests: 3861 - sample.usbc 3862 3863Userspace: 3864 status: maintained 3865 maintainers: 3866 - dcpleung 3867 collaborators: 3868 - ceolin 3869 files: 3870 - include/zephyr/internal/syscall_handler.h 3871 - doc/kernel/usermode/kernelobjects.rst 3872 - include/zephyr/app_memory/ 3873 - include/zephyr/linker/app_smem*.ld 3874 - tests/kernel/mem_protect/ 3875 - samples/userspace/ 3876 - include/zephyr/syscall.h 3877 - kernel/userspace* 3878 - scripts/build/gen_app_partitions.py 3879 - scripts/build/gen_kobject_list.py 3880 - scripts/build/gen_syscalls.py 3881 - scripts/build/process_gperf.py 3882 - scripts/build/gen_relocate_app.py 3883 - include/zephyr/sys/kobject.h 3884 - include/zephyr/sys/mem_manage.h 3885 - include/zephyr/kernel/mm.h 3886 - include/zephyr/kernel/internal/mm.h 3887 - include/zephyr/kernel/mm/demand_paging.h 3888 labels: 3889 - "area: Userspace" 3890 tests: 3891 - kernel.memory_protection 3892 3893VFS: 3894 status: maintained 3895 maintainers: 3896 - de-nordic 3897 files: 3898 - subsys/fs/fat_fs.c 3899 - tests/subsys/fs/fat_fs_api/ 3900 description: >- 3901 VFS implementation 3902 3903 labels: 3904 - "area: File System" 3905 tests: 3906 - filesystem 3907 3908West: 3909 status: maintained 3910 maintainers: 3911 - mbolivar-ampere 3912 collaborators: 3913 - carlescufi 3914 - swinslow 3915 files: 3916 - scripts/west-commands.yml 3917 - scripts/west_commands/ 3918 - doc/develop/west/ 3919 - scripts/pylib/build_helpers/domains.py 3920 labels: 3921 - "area: West" 3922 3923"West project: acpica": 3924 status: maintained 3925 maintainers: 3926 - najumon1980 3927 - jhedberg 3928 collaborators: 3929 - tbursztyka 3930 files: 3931 - modules/acpica/ 3932 labels: 3933 - "area: ACPI" 3934 3935"West project: canopennode": 3936 status: maintained 3937 maintainers: 3938 - henrikbrixandersen 3939 files: 3940 - modules/canopennode/ 3941 labels: 3942 - "area: CAN" 3943 3944"West project: chre": 3945 status: maintained 3946 maintainers: 3947 - yperess 3948 files: 3949 - samples/modules/chre/ 3950 - modules/Kconfig.chre 3951 labels: 3952 - "area: CHRE" 3953 3954"West project: cmsis": 3955 status: maintained 3956 maintainers: 3957 - stephanosio 3958 collaborators: 3959 - microbuilder 3960 - povergoing 3961 files: 3962 - modules/cmsis/ 3963 labels: 3964 - "area: ARM" 3965 3966"West project: cmsis-dsp": 3967 status: maintained 3968 maintainers: 3969 - XenuIsWatching 3970 collaborators: 3971 - stephanosio 3972 files: 3973 - modules/cmsis-dsp/ 3974 labels: 3975 - "area: ARM" 3976 3977"West project: cmsis-nn": 3978 status: maintained 3979 maintainers: 3980 - XenuIsWatching 3981 collaborators: 3982 - stephanosio 3983 files: 3984 - modules/cmsis-nn/ 3985 labels: 3986 - "area: ARM" 3987 3988"West project: edtt": 3989 status: maintained 3990 maintainers: 3991 - aescolar 3992 collaborators: 3993 - wopu-ot 3994 - thoh-ot 3995 files: [] 3996 labels: 3997 - "area: Tests" 3998 3999"West project: fatfs": 4000 status: maintained 4001 maintainers: 4002 - de-nordic 4003 files: 4004 - modules/fatfs/ 4005 labels: 4006 - "area: Storage" 4007 4008"West project: hal_altera": 4009 status: odd fixes 4010 collaborators: 4011 - nashif 4012 files: 4013 - modules/Kconfig.altera 4014 labels: 4015 - "platform: Altera" 4016 4017"West project: hal_ambiq": 4018 status: maintained 4019 maintainers: 4020 - fkokosinski 4021 collaborators: 4022 - tgorochowik 4023 - msobkowski 4024 - aaronyegx 4025 - RichardSWheatley 4026 files: 4027 - modules/hal_ambiq/ 4028 labels: 4029 - "platform: Ambiq" 4030 4031"West project: hal_atmel": 4032 status: maintained 4033 maintainers: 4034 - nandojve 4035 collaborators: 4036 - pdgendt 4037 files: 4038 - modules/Kconfig.atmel 4039 labels: 4040 - "platform: Microchip SAM" 4041 4042"West project: hal_cypress": 4043 status: maintained 4044 maintainers: 4045 - ifyall 4046 collaborators: 4047 - nashif 4048 - npal-cy 4049 files: 4050 - modules/Kconfig.cypress 4051 labels: 4052 - "platform: Infineon" 4053 4054"West project: hal_espressif": 4055 status: maintained 4056 maintainers: 4057 - sylvioalves 4058 collaborators: 4059 - LucasTambor 4060 - marekmatej 4061 files: 4062 - modules/Kconfig.esp32 4063 labels: 4064 - "platform: ESP32" 4065 4066"West project: hal_ethos_u": 4067 status: maintained 4068 maintainers: 4069 - kristofer-jonsson-arm 4070 files: 4071 - drivers/misc/ethos_u/ 4072 - modules/hal_ethos_u/ 4073 labels: 4074 - "area: ARM" 4075 4076"West project: hal_gigadevice": 4077 status: maintained 4078 maintainers: 4079 - nandojve 4080 collaborators: 4081 - gmarull 4082 - soburi 4083 files: 4084 - modules/hal_gigadevice/ 4085 labels: 4086 - "platform: GD32" 4087 4088"West project: hal_infineon": 4089 status: maintained 4090 maintainers: 4091 - ifyall 4092 collaborators: 4093 - parthitce 4094 - talih0 4095 - npal-cy 4096 files: 4097 - modules/Kconfig.infineon 4098 - modules/hal_infineon/ 4099 labels: 4100 - "platform: Infineon" 4101 4102"West project: hal_microchip": 4103 status: maintained 4104 maintainers: 4105 - jvasanth1 4106 collaborators: 4107 - VenkatKotakonda 4108 - albertofloyd 4109 files: 4110 - modules/Kconfig.microchip 4111 labels: 4112 - "platform: Microchip SAM" 4113 - "platform: Microchip MEC" 4114 4115"West project: hal_nordic": 4116 status: maintained 4117 maintainers: 4118 - anangl 4119 collaborators: 4120 - hubertmis 4121 - nordic-krch 4122 files: 4123 - modules/hal_nordic/ 4124 labels: 4125 - "platform: nRF" 4126 4127"West project: hal_nuvoton": 4128 status: maintained 4129 maintainers: 4130 - ssekar15 4131 files: 4132 - modules/Kconfig.nuvoton 4133 labels: 4134 - "platform: Nuvoton" 4135 4136"West project: hal_nxp": 4137 status: maintained 4138 maintainers: 4139 - dleach02 4140 collaborators: 4141 - mmahadevan108 4142 - danieldegrasse 4143 - manuargue 4144 - PetervdPerk-NXP 4145 - bperseghetti 4146 files: 4147 - modules/hal_nxp/ 4148 - modules/Kconfig.imx 4149 - modules/Kconfig.mcux 4150 - modules/Kconfig.nxp_s32 4151 labels: 4152 - "platform: NXP" 4153 4154"West project: hal_openisa": 4155 status: odd fixes 4156 collaborators: 4157 - dleach02 4158 files: 4159 - modules/Kconfig.vega 4160 labels: 4161 - "platform: openisa/RV32M1" 4162 4163"West project: hal_quicklogic": 4164 status: odd fixes 4165 collaborators: 4166 - fkokosinski 4167 files: [] 4168 labels: 4169 - "platform: Quicklogic" 4170 4171"West project: hal_renesas": 4172 status: maintained 4173 maintainers: 4174 - andrzej-kaczmarek 4175 files: [] 4176 labels: 4177 - "platform: Renesas" 4178 4179"West project: hal_rpi_pico": 4180 status: maintained 4181 maintainers: 4182 - yonsch 4183 files: 4184 - modules/hal_rpi_pico/ 4185 labels: 4186 - "platform: Raspberry Pi Pico" 4187 4188"West project: hal_silabs": 4189 status: maintained 4190 maintainers: 4191 - fkokosinski 4192 collaborators: 4193 - sateeshkotapati 4194 - yonsch 4195 - mnkp 4196 files: 4197 - modules/Kconfig.silabs 4198 labels: 4199 - "platform: SiLabs" 4200 4201"West project: hal_st": 4202 status: maintained 4203 maintainers: 4204 - avisconti 4205 collaborators: 4206 - erwango 4207 files: 4208 - modules/hal_st/Kconfig 4209 4210"West project: hal_stm32": 4211 status: maintained 4212 maintainers: 4213 - erwango 4214 collaborators: 4215 - FRASTM 4216 - ABOSTM 4217 - gautierg-st 4218 - Desvauxm-st 4219 files: 4220 - modules/Kconfig.stm32 4221 labels: 4222 - "platform: STM32" 4223 4224"West project: hal_telink": 4225 status: maintained 4226 maintainers: 4227 - andy-liu-telink 4228 files: 4229 - modules/Kconfig.telink 4230 labels: 4231 - "platform: Telink" 4232 4233"West project: hal_ti": 4234 status: maintained 4235 maintainers: 4236 - vaishnavachath 4237 files: [] 4238 labels: 4239 - "platform: TI" 4240 4241"West project: hal_wurthelektronik": 4242 status: maintained 4243 maintainers: 4244 - mah-eiSmart 4245 files: 4246 - modules/Kconfig.wurthelektronik 4247 4248"West project: hal_xtensa": 4249 status: maintained 4250 maintainers: 4251 - dcpleung 4252 collaborators: 4253 - andyross 4254 - nashif 4255 files: 4256 - modules/Kconfig.xtensa 4257 labels: 4258 - "area: Xtensa" 4259 4260"West project: hal_intel": 4261 status: maintained 4262 maintainers: 4263 - kwd-doodling 4264 collaborators: 4265 - teburd 4266 - likongintel 4267 files: 4268 - modules/Kconfig.intel 4269 labels: 4270 - "platform: Intel" 4271 4272"West project: libmetal": 4273 status: odd fixes 4274 collaborators: 4275 - carlocaione 4276 - arnopo 4277 files: 4278 - modules/Kconfig.libmetal 4279 labels: 4280 - "area: AMP" 4281 4282"West project: liblc3": 4283 status: maintained 4284 maintainers: 4285 - Casper-Bonde-Bose 4286 - MariuszSkamra 4287 collaborators: 4288 - thalley 4289 - asbjornsabo 4290 files: 4291 - modules/liblc3/ 4292 labels: 4293 - "area: Audio" 4294 4295"West project: littlefs": 4296 status: odd fixes 4297 files: 4298 - modules/littlefs/ 4299 labels: 4300 - "area: Storage" 4301 4302"West project: loramac-node": 4303 status: maintained 4304 maintainers: 4305 - Mani-Sadhasivam 4306 files: 4307 - modules/loramac-node/ 4308 labels: 4309 - "area: LoRa" 4310 4311"West project: lvgl": 4312 status: maintained 4313 maintainers: 4314 - faxe1008 4315 collaborators: 4316 - brgl 4317 - pdgendt 4318 files: 4319 - modules/lvgl/ 4320 - tests/lib/gui/lvgl/ 4321 labels: 4322 - "area: LVGL" 4323 4324"West project: lz4": 4325 status: odd fixes 4326 collaborators: 4327 - Navin-Sankar 4328 files: 4329 - modules/lz4/ 4330 labels: 4331 - "area: Compression" 4332 4333"West project: mbedtls": 4334 status: maintained 4335 maintainers: 4336 - d3zd3z 4337 - ceolin 4338 files: 4339 - modules/mbedtls/ 4340 labels: 4341 - "area: Crypto / RNG" 4342 4343"West project: mcuboot": 4344 status: maintained 4345 maintainers: 4346 - d3zd3z 4347 collaborators: 4348 - de-nordic 4349 - nordicjm 4350 files: 4351 - modules/Kconfig.mcuboot 4352 - tests/boot/test_mcuboot/ 4353 labels: 4354 - "area: MCUBoot" 4355 4356"West project: mipi-sys-t": 4357 status: odd fixes 4358 collaborators: 4359 - dcpleung 4360 files: 4361 - modules/Kconfig.syst 4362 labels: 4363 - "area: Tracing" 4364 4365"West project: nanopb": 4366 status: maintained 4367 maintainers: 4368 - pdgendt 4369 files: 4370 - modules/nanopb/ 4371 - samples/modules/nanopb/ 4372 - tests/modules/nanopb/ 4373 labels: 4374 - "area: Serialization" 4375 4376"West project: net-tools": 4377 status: odd fixes 4378 maintainers: 4379 - jukkar 4380 collaborators: 4381 - rlubos 4382 files: [] 4383 labels: 4384 - "area: Networking" 4385 4386"West project: nrf_hw_models": 4387 status: maintained 4388 maintainers: 4389 - aescolar 4390 collaborators: 4391 - wopu-ot 4392 - thoh-ot 4393 files: [] 4394 labels: 4395 - "area: native port" 4396 4397"West project: open-amp": 4398 status: odd fixes 4399 collaborators: 4400 - carlocaione 4401 files: 4402 - modules/Kconfig.open-amp 4403 labels: 4404 - "area: AMP" 4405 4406"West project: openthread": 4407 status: maintained 4408 maintainers: 4409 - rlubos 4410 collaborators: 4411 - pdgendt 4412 - canisLupus1313 4413 - mariuszpos 4414 - edmont 4415 - maciejbaczmanski 4416 files: 4417 - modules/openthread/ 4418 labels: 4419 - "area: OpenThread" 4420 4421"West project: percepio": 4422 status: maintained 4423 maintainers: 4424 - eriktamlin 4425 - aronlander-pe 4426 files: 4427 - modules/percepio/ 4428 labels: 4429 - "area: Tracing" 4430 4431"West project: picolibc": 4432 status: maintained 4433 maintainers: 4434 - keith-packard 4435 collaborators: 4436 - stephanosio 4437 files: 4438 - modules/Kconfig.picolibc 4439 labels: 4440 - "area: C Library" 4441 - "area: picolibc" 4442 4443"West project: segger": 4444 status: odd fixes 4445 collaborators: 4446 - nordic-krch 4447 files: 4448 - modules/segger/ 4449 labels: 4450 - "area: Debugging" 4451 4452"West project: sof": 4453 status: maintained 4454 maintainers: 4455 - kv2019i 4456 collaborators: 4457 - andyross 4458 - nashif 4459 - lyakh 4460 - lgirdwood 4461 - marc-hb 4462 files: 4463 - modules/Kconfig.sof 4464 labels: 4465 - "area: Audio" 4466 4467"West project: tflite-micro": 4468 status: odd fixes 4469 collaborators: 4470 - laurenmurphyx64 4471 files: 4472 - modules/tflite-micro/ 4473 - samples/modules/tflite-micro/ 4474 labels: 4475 - "area: Neural Networks" 4476 4477"West project: thrift": 4478 status: maintained 4479 maintainers: 4480 - cfriedt 4481 files: 4482 - modules/thrift/ 4483 - samples/modules/thrift/ 4484 - tests/modules/thrift/ 4485 labels: 4486 - "area: Thrift" 4487 - "area: Serialization" 4488 tests: 4489 - thrift 4490 4491"West project: tinycrypt": 4492 status: odd fixes 4493 files: 4494 - modules/Kconfig.tinycrypt 4495 labels: 4496 - "area: Crypto / RNG" 4497 4498"West project: trusted-firmware-m": 4499 status: maintained 4500 maintainers: 4501 - d3zd3z 4502 collaborators: 4503 - SebastianBoe 4504 files: 4505 - modules/trusted-firmware-m/ 4506 labels: 4507 - "area: TF-M" 4508 4509"West project: tf-m-tests": 4510 status: maintained 4511 maintainers: 4512 - d3zd3z 4513 collaborators: 4514 - SebastianBoe 4515 files: [] 4516 labels: 4517 - "area: TF-M" 4518 4519"West project: trusted-firmware-a": 4520 status: maintained 4521 maintainers: 4522 - povergoing 4523 - sgrrzhf 4524 collaborators: 4525 - carlocaione 4526 files: 4527 - modules/trusted-firmware-a/ 4528 labels: 4529 - "area: TF-A" 4530 4531"West project: psa-arch-tests": 4532 status: maintained 4533 maintainers: 4534 - d3zd3z 4535 collaborators: 4536 - SebastianBoe 4537 files: [] 4538 labels: 4539 - "area: TF-M" 4540 4541"West project: uoscore-uedhoc": 4542 status: maintained 4543 maintainers: 4544 - rlubos 4545 - StefanHri 4546 files: 4547 - modules/uoscore-uedhoc/ 4548 - tests/modules/uoscore/ 4549 labels: 4550 - "area: Networking" 4551 - "area: Crypto / RNG" 4552 4553"West project: zcbor": 4554 status: maintained 4555 maintainers: 4556 - de-nordic 4557 files: 4558 - modules/zcbor/ 4559 labels: 4560 - "area: CBOR" 4561 4562"West project: zscilib": 4563 status: maintained 4564 maintainers: 4565 - microbuilder 4566 files: [] 4567 4568"West project: hostap": 4569 status: maintained 4570 maintainers: 4571 - krish2718 4572 - jukkar 4573 files: 4574 - modules/hostap/ 4575 labels: 4576 - "area: Wi-Fi" 4577 4578Xtensa arch: 4579 status: maintained 4580 maintainers: 4581 - dcpleung 4582 collaborators: 4583 - andyross 4584 - nashif 4585 - ceolin 4586 files: 4587 - arch/xtensa/ 4588 - include/zephyr/arch/xtensa/ 4589 - dts/xtensa/ 4590 - boards/xtensa/qemu_xtensa/ 4591 - boards/xtensa/xt-sim/ 4592 - soc/xtensa/dc233c/ 4593 - soc/xtensa/sample_controller/ 4594 - soc/xtensa/CMakeLists.txt 4595 labels: 4596 - "area: Xtensa" 4597 4598x86 arch: 4599 status: maintained 4600 maintainers: 4601 - jhedberg 4602 collaborators: 4603 - tbursztyka 4604 - andyross 4605 - nashif 4606 - dcpleung 4607 - ceolin 4608 - laurenmurphyx64 4609 files: 4610 - arch/x86/ 4611 - include/zephyr/arch/x86/ 4612 - tests/arch/x86/ 4613 - drivers/interrupt_controller/*intel* 4614 - drivers/interrupt_controller/*ioapic* 4615 - drivers/interrupt_controller/*loapic* 4616 - doc/hardware/arch/x86.rst 4617 labels: 4618 - "area: X86" 4619 4620Continuous Integration: 4621 status: maintained 4622 maintainers: 4623 - stephanosio 4624 - nashif 4625 collaborators: 4626 - fabiobaltieri 4627 - kartben 4628 files: 4629 - .github/ 4630 - scripts/ci/ 4631 - .checkpatch.conf 4632 - scripts/gitlint/ 4633 - scripts/set_assignees.py 4634 labels: 4635 - "area: Continuous Integration" 4636 4637Test Framework (Ztest): 4638 status: maintained 4639 maintainers: 4640 - nashif 4641 collaborators: 4642 - aaronemassey 4643 - jeremybettis 4644 - yperess 4645 - asemjonovs 4646 files: 4647 - subsys/testsuite/ 4648 - tests/ztest/ 4649 - tests/unit/util/ 4650 - tests/subsys/testsuite/ 4651 - samples/subsys/testsuite/ 4652 - doc/develop/test/ztest.rst 4653 labels: 4654 - "area: Testsuite" 4655 tests: 4656 - testing 4657 4658Emulation: 4659 status: maintained 4660 maintainers: 4661 - yperess 4662 collaborators: 4663 - aaronemassey 4664 - jeremybettis 4665 - alevkoy 4666 - asemjonovs 4667 - tristan-google 4668 files: 4669 - subsys/emul/ 4670 - include/zephyr/drivers/emul_* 4671 - include/zephyr/drivers/emul.h 4672 - include/zephyr/drivers/espi_emul.h 4673 - include/zephyr/drivers/i2c_emul.h 4674 - include/zephyr/drivers/spi_emul.h 4675 - tests/subsys/emul/ 4676 - doc/hardware/emulator/ 4677 labels: 4678 - "area: HW Emulation" 4679 tests: 4680 - emul 4681 4682Random: 4683 status: maintained 4684 maintainers: 4685 - ceolin 4686 files: 4687 - subsys/random/ 4688 - include/zephyr/random/ 4689 labels: 4690 - "area: Random" 4691 4692# This area is to be converted to a subarea 4693Testing with Renode: 4694 status: maintained 4695 collaborators: 4696 - mateusz-holenko 4697 - fkokosinski 4698 files: 4699 - cmake/emu/renode.cmake 4700 - boards/*/*/support/*.repl 4701 - boards/*/*/support/*.resc 4702 labels: 4703 - "area: Renode" 4704 4705zbus: 4706 status: maintained 4707 maintainers: 4708 - rodrigopex 4709 files: 4710 - samples/subsys/zbus/ 4711 - include/zephyr/zbus/ 4712 - tests/subsys/zbus/ 4713 - subsys/zbus/ 4714 - doc/services/zbus/ 4715 labels: 4716 - "area: zbus" 4717 tests: 4718 - message_bus.zbus 4719 4720"Linkable Loadable Extensions": 4721 status: maintained 4722 maintainers: 4723 - teburd 4724 collaborators: 4725 - lyakh 4726 - pillo79 4727 files: 4728 - samples/subsys/llext/ 4729 - include/zephyr/llext/ 4730 - tests/subsys/llext/ 4731 - subsys/llext/ 4732 - doc/services/llext/ 4733 labels: 4734 - "area: Linkable Loadable Extensions" 4735 tests: 4736 - llext 4737