-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/aspeed-dev' into aspeed-master
Change-Id: Ifd30d3196d2e6e200809309d1b94a50804ad0e2a
- Loading branch information
Showing
112 changed files
with
5,740 additions
and
1,890 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
# Copyright (c) 2022 ASPEED Technology Inc. | ||
# # SPDX-License-Identifier: MIT | ||
|
||
config ASPEED_DC_SCM | ||
default n | ||
bool "ASPEED DC-SCM board" | ||
help | ||
Enable ASPEED DC-SCM board basic settings. | ||
|
||
config BMC_DUAL_FLASH | ||
default n | ||
bool "Enable dual flash support" | ||
help | ||
Enable if BMC has dual flash | ||
|
||
config SPI_MUX_INVERSE | ||
default n | ||
bool "Invert SPI MUX" | ||
help | ||
Enable if SPI MUX connected to BMC/ROT is inverted | ||
|
||
config CHECKPOINT_RECOVERY | ||
default n | ||
bool "Checkpoint timeout recovery function" | ||
help | ||
Enable if BMC/PCH supports mailbox checkpoint | ||
|
||
config PLATFORM_STATE_LED | ||
default n | ||
bool "Display platfrom state in 8 bits LED" | ||
help | ||
Enable if the system has PlatformState LEDs | ||
|
||
config BMC_STAGING_SIZE | ||
default 0x03DE0000 | ||
hex "BMC staging region size in BMC flash" | ||
help | ||
The max size of BMC staging area for putting signed BMC capsule. | ||
|
||
config BMC_PCH_STAGING_SIZE | ||
default 0x1000000 | ||
hex "PCH staging region size in BMC flash" | ||
help | ||
The max size of PCH staging area for putting signed PCH capsule. | ||
|
||
config BMC_PFR_STAGING_SIZE | ||
default 0x500000 | ||
hex "PFR staging region size in BMC flash" | ||
help | ||
The max size of PFR staging area for putting signed ROT capsule. | ||
|
||
config PCH_STAGING_SIZE | ||
default 0x1000000 | ||
hex "PCH staging region size in PCH flash" | ||
help | ||
The max size of PCH staging area for putting signed PCH capsule. | ||
|
||
source "Kconfig.zephyr" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
CONFIG_GPIO_ASPEED_SGPIOM=y | ||
CONFIG_GPIO_ASPEED=y | ||
CONFIG_SPI_ASPEED=y | ||
CONFIG_SPI_MONITOR_ASPEED=y | ||
CONFIG_SPI_MONITOR_SHELL_ASPEED=y | ||
CONFIG_SPI_NOR_ADDR_MODE_FALLBACK_DISABLED=y | ||
CONFIG_PFR_SHELL_ASPEED=y | ||
CONFIG_I2C_ASPEED=y | ||
CONFIG_I2C_PFR=y | ||
CONFIG_I2C_PFR_INIT_PRIORITY=60 | ||
CONFIG_I2C_PFR_FILTER=y | ||
CONFIG_SHELL_ARGC_MAX=70 | ||
CONFIG_WATCHDOG=y | ||
CONFIG_WDT_ASPEED=y | ||
CONFIG_UART_ASPEED=y | ||
CONFIG_ASPEED_DC_SCM=y | ||
CONFIG_PFR_SW_MAILBOX=y | ||
CONFIG_I2C_SWMBX_SLAVE=y | ||
CONFIG_PLATFORM_STATE_LED=y | ||
CONFIG_BMC_STAGING_SIZE=0x3de0000 | ||
CONFIG_BMC_PCH_STAGING_SIZE=0x1000000 | ||
CONFIG_BMC_PFR_STAGING_SIZE=0x500000 | ||
CONFIG_PCH_STAGING_SIZE=0x1000000 |
Oops, something went wrong.