blob: 06f8d1c9098ea42cd0e1293471e9ac76a8242d53 [file] [log] [blame]
Armando Montanezfd5de702020-06-10 16:51:01 -07001# Copyright 2020 The Pigweed Authors
2#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4# use this file except in compliance with the License. You may obtain a copy of
5# the License at
6#
7# https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations under
13# the License.
14
Armando Montanezfd5de702020-06-10 16:51:01 -070015import("//build_overrides/pigweed.gni")
16
Wyatt Heplerae93f422020-12-14 11:46:19 -080017import("$dir_pw_rpc/system_server/backend.gni")
Wyatt Heplercb9a8922020-12-16 10:19:41 -080018import("$dir_pw_sys_io/backend.gni")
Armando Montanezfd5de702020-06-10 16:51:01 -070019import("$dir_pw_toolchain/arm_gcc/toolchains.gni")
Wyatt Heplerd49f8fe2020-10-15 10:13:47 -070020
Armando Montanezfd5de702020-06-10 16:51:01 -070021declare_args() {
22 # Enable the pw_target_runner for on-device testing.
23 pw_use_test_server = false
24}
25
26_target_config = {
27 # Use the logging main.
28 pw_unit_test_MAIN = "$dir_pw_unit_test:logging_main"
29
30 # Configuration options for Pigweed executable targets.
31 pw_build_EXECUTABLE_TARGET_TYPE = "stm32f429i_executable"
32
33 pw_build_EXECUTABLE_TARGET_TYPE_FILE =
34 get_path_info("stm32f429i_executable.gni", "abspath")
35
36 # Path to the bloaty config file for the output binaries.
37 pw_bloat_BLOATY_CONFIG = "$dir_pw_boot_armv7m/bloaty_config.bloaty"
38
39 if (pw_use_test_server) {
40 _test_runner_script = "py/stm32f429i_disc1_utils/unit_test_client.py"
41 pw_unit_test_AUTOMATIC_RUNNER =
42 get_path_info(_test_runner_script, "abspath")
43 }
44
45 # Facade backends
46 pw_assert_BACKEND = dir_pw_assert_basic
47 pw_boot_BACKEND = dir_pw_boot_armv7m
Armando Montanez356bf972020-06-04 10:35:55 -070048 pw_cpu_exception_ENTRY_BACKEND = dir_pw_cpu_exception_armv7m
49 pw_cpu_exception_HANDLER_BACKEND = "$dir_pw_cpu_exception:basic_handler"
50 pw_cpu_exception_SUPPORT_BACKEND = "$dir_pw_cpu_exception_armv7m:support"
Prashanth Swaminathanacbd0702021-01-22 11:58:15 -080051 pw_sync_SPIN_LOCK_BACKEND = "$dir_pw_sync_baremetal:spin_lock_backend"
Armando Montanezfd5de702020-06-10 16:51:01 -070052 pw_log_BACKEND = dir_pw_log_basic
53 pw_sys_io_BACKEND = dir_pw_sys_io_baremetal_stm32f429
Alexei Froloveb94e962020-12-29 16:15:40 -080054 pw_rpc_system_server_BACKEND =
55 "$dir_pigweed/targets/stm32f429i-disc1:system_rpc_server"
Chenghan Zhoud4f44d22020-06-18 15:42:06 -040056 pw_malloc_BACKEND = dir_pw_malloc_freelist
Armando Montanezfd5de702020-06-10 16:51:01 -070057
58 pw_boot_armv7m_LINK_CONFIG_DEFINES = [
59 "PW_BOOT_FLASH_BEGIN=0x08000200",
60 "PW_BOOT_FLASH_SIZE=512K",
Chenghan Zhoud4f44d22020-06-18 15:42:06 -040061
62 # TODO(pwbug/219): Currently "pw_tokenizer/detokenize_test" requires at
63 # least 6K bytes in heap when using pw_malloc_freelist. The heap size
64 # required for tests should be investigated.
Chenghan Zhouea0f7ad2020-07-29 18:20:37 -040065 "PW_BOOT_HEAP_SIZE=7K",
Armando Montanezfd5de702020-06-10 16:51:01 -070066 "PW_BOOT_MIN_STACK_SIZE=1K",
67 "PW_BOOT_RAM_BEGIN=0x20000000",
68 "PW_BOOT_RAM_SIZE=192K",
69 "PW_BOOT_VECTOR_TABLE_BEGIN=0x08000000",
70 "PW_BOOT_VECTOR_TABLE_SIZE=512",
71 ]
Michael Spang6a845952020-08-13 19:04:19 -040072
73 current_cpu = "arm"
74 current_os = ""
Armando Montanezfd5de702020-06-10 16:51:01 -070075}
76
Armando Montanez86003202020-06-16 18:00:06 -070077_toolchain_properties = {
78 final_binary_extension = ".elf"
79}
80
Ewout van Bekkumfa1fc662020-10-16 16:11:13 -070081_target_default_configs = [
82 "$dir_pw_build:extra_strict_warnings",
83 "$dir_pw_toolchain/arm_gcc:enable_float_printf",
84]
Armando Montanez71b1fa32020-06-19 12:03:29 -070085
Armando Montanezfd5de702020-06-10 16:51:01 -070086pw_target_toolchain_stm32f429i_disc1 = {
87 _excluded_members = [
88 "defaults",
89 "name",
90 ]
91
92 debug = {
93 name = "stm32f429i_disc1_debug"
94 _toolchain_base = pw_toolchain_arm_gcc.cortex_m4f_debug
95 forward_variables_from(_toolchain_base, "*", _excluded_members)
Armando Montanez86003202020-06-16 18:00:06 -070096 forward_variables_from(_toolchain_properties, "*")
Armando Montanezfd5de702020-06-10 16:51:01 -070097 defaults = {
98 forward_variables_from(_toolchain_base.defaults, "*")
99 forward_variables_from(_target_config, "*")
Armando Montanez71b1fa32020-06-19 12:03:29 -0700100 default_configs += _target_default_configs
Armando Montanezfd5de702020-06-10 16:51:01 -0700101 }
102 }
103
104 speed_optimized = {
105 name = "stm32f429i_disc1_speed_optimized"
106 _toolchain_base = pw_toolchain_arm_gcc.cortex_m4f_speed_optimized
107 forward_variables_from(_toolchain_base, "*", _excluded_members)
Armando Montanez86003202020-06-16 18:00:06 -0700108 forward_variables_from(_toolchain_properties, "*")
Armando Montanezfd5de702020-06-10 16:51:01 -0700109 defaults = {
110 forward_variables_from(_toolchain_base.defaults, "*")
111 forward_variables_from(_target_config, "*")
Armando Montanez71b1fa32020-06-19 12:03:29 -0700112 default_configs += _target_default_configs
Armando Montanezfd5de702020-06-10 16:51:01 -0700113 }
114 }
115
116 size_optimized = {
117 name = "stm32f429i_disc1_size_optimized"
118 _toolchain_base = pw_toolchain_arm_gcc.cortex_m4f_size_optimized
119 forward_variables_from(_toolchain_base, "*", _excluded_members)
Armando Montanez86003202020-06-16 18:00:06 -0700120 forward_variables_from(_toolchain_properties, "*")
Armando Montanezfd5de702020-06-10 16:51:01 -0700121 defaults = {
122 forward_variables_from(_toolchain_base.defaults, "*")
123 forward_variables_from(_target_config, "*")
Armando Montanez71b1fa32020-06-19 12:03:29 -0700124 default_configs += _target_default_configs
Armando Montanezfd5de702020-06-10 16:51:01 -0700125 }
126 }
127}
128
129# This list just contains the members of the above scope for convenience to make
130# it trivial to generate all the toolchains in this file via a
131# `generate_toolchains` target.
132pw_target_toolchain_stm32f429i_disc1_list = [
133 pw_target_toolchain_stm32f429i_disc1.debug,
134 pw_target_toolchain_stm32f429i_disc1.speed_optimized,
135 pw_target_toolchain_stm32f429i_disc1.size_optimized,
136]