Added devicetree and Kconfig for Apollo4 Blue Plus SoC. They are needed for the apollo4p_blue_kxr_evb board. Signed-off-by: Aaron Ye <aye@ambiq.com>
18 lines
353 B
Text
18 lines
353 B
Text
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Copyright (c) 2023 Ambiq Micro Inc. <www.ambiq.com>
|
|
|
|
if SOC_APOLLO4P_BLUE
|
|
|
|
config NUM_IRQS
|
|
default 83
|
|
|
|
DT_NODE_SRAM := /memory@0
|
|
|
|
config SRAM_NC_SIZE
|
|
default $(dt_node_reg_size_int,$(DT_NODE_SRAM),1,K)
|
|
|
|
config SRAM_NC_BASE_ADDRESS
|
|
default $(dt_node_reg_addr_hex,$(DT_NODE_SRAM),1)
|
|
|
|
endif # SOC_APOLLO4P_BLUE
|