summaryrefslogtreecommitdiff
path: root/zephyr/projects/brya/BUILD.py
blob: 9991335ca73c6f8bbfe2ef881cfd1a52a9c9f62d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Copyright 2021 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""Define zmake projects for brya."""


def register_npcx9_variant(
    project_name, extra_dts_overlays=(), extra_kconfig_files=()
):
    """Register a variant of a brya, even though this is not named as such."""
    return register_npcx_project(
        project_name=project_name,
        zephyr_board="npcx9m3f",
        dts_overlays=[
            "adc.dts",
            "battery.dts",
            "fan.dts",
            "gpio.dts",
            "i2c.dts",
            "interrupts.dts",
            "keyboard.dts",
            "motionsense.dts",
            "pwm_leds.dts",
            "temp_sensors.dts",
            "usbc.dts",
            # Project-specific DTS customization.
            *extra_dts_overlays,
        ],
        kconfig_files=[
            # Common to all projects.
            here / "prj.conf",
            # Project-specific KConfig customization.
            *extra_kconfig_files,
        ],
    )


brya = register_npcx9_variant(
    project_name="brya",
    extra_dts_overlays=[here / "brya.dts"],
    extra_kconfig_files=[here / "prj_brya.conf"],
)