kconfig: rename CONFIG_BSP_SHARED_GDT_RAM_*
We stopped using BSP_ in configs long time ago, this one got stuck for some reason. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
cc1a960730
commit
61fe98c573
4 changed files with 11 additions and 11 deletions
|
@ -8,14 +8,14 @@
|
||||||
|
|
||||||
if X86 && SOC_QUARK_D2000
|
if X86 && SOC_QUARK_D2000
|
||||||
|
|
||||||
config BSP_SHARED_GDT_RAM_ADDR
|
config SHARED_GDT_RAM_ADDR
|
||||||
hex "Address of the shared RAM with the QMSI Bootloader"
|
hex "Address of the shared RAM with the QMSI Bootloader"
|
||||||
default 0x00281FE0
|
default 0x00281FE0
|
||||||
help
|
help
|
||||||
Address of the memory shared between the BSP and the Bootloader in order
|
Address of the memory shared between the BSP and the Bootloader in order
|
||||||
to store the GDT.
|
to store the GDT.
|
||||||
|
|
||||||
config BSP_SHARED_GDT_RAM_SIZE
|
config SHARED_GDT_RAM_SIZE
|
||||||
hex "Size of the shared RAM with the QMSI Bootloader"
|
hex "Size of the shared RAM with the QMSI Bootloader"
|
||||||
depends on !SET_GDT
|
depends on !SET_GDT
|
||||||
default 0x20
|
default 0x20
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
#ifdef CONFIG_SET_GDT
|
#ifdef CONFIG_SET_GDT
|
||||||
#define PHYS_RAM_SIZE CONFIG_RAM_SIZE*1K
|
#define PHYS_RAM_SIZE CONFIG_RAM_SIZE*1K
|
||||||
#else /* !CONFIG_SET_GDT */
|
#else /* !CONFIG_SET_GDT */
|
||||||
#define PHYS_RAM_SIZE CONFIG_RAM_SIZE*1K - CONFIG_BSP_SHARED_GDT_RAM_SIZE
|
#define PHYS_RAM_SIZE CONFIG_RAM_SIZE*1K - CONFIG_SHARED_GDT_RAM_SIZE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
MEMORY
|
MEMORY
|
||||||
|
@ -39,8 +39,8 @@ MEMORY
|
||||||
RAM (wx) : ORIGIN = PHYS_LOAD_ADDR, LENGTH = PHYS_RAM_SIZE
|
RAM (wx) : ORIGIN = PHYS_LOAD_ADDR, LENGTH = PHYS_RAM_SIZE
|
||||||
#endif /* CONFIG_XIP */
|
#endif /* CONFIG_XIP */
|
||||||
#ifndef CONFIG_SET_GDT
|
#ifndef CONFIG_SET_GDT
|
||||||
BSP_SHARED_GDT_RAM (rw) : ORIGIN = CONFIG_BSP_SHARED_GDT_RAM_ADDR,
|
SHARED_GDT_RAM (rw) : ORIGIN = CONFIG_SHARED_GDT_RAM_ADDR,
|
||||||
LENGTH = CONFIG_BSP_SHARED_GDT_RAM_SIZE
|
LENGTH = CONFIG_SHARED_GDT_RAM_SIZE
|
||||||
#endif /* !CONFIG_SET_GDT */
|
#endif /* !CONFIG_SET_GDT */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -90,14 +90,14 @@ config BSP_SHARED_RESTORE_INFO_SIZE
|
||||||
Size of the memory shared between the BSP and the Bootloader in order
|
Size of the memory shared between the BSP and the Bootloader in order
|
||||||
to store restore information.
|
to store restore information.
|
||||||
|
|
||||||
config BSP_SHARED_GDT_RAM_ADDR
|
config SHARED_GDT_RAM_ADDR
|
||||||
hex "Address of the GDT in RAM shared with the QMSI Bootloader"
|
hex "Address of the GDT in RAM shared with the QMSI Bootloader"
|
||||||
default 0xA8013FE0
|
default 0xA8013FE0
|
||||||
help
|
help
|
||||||
Address of the memory shared between the BSP and the Bootloader in order
|
Address of the memory shared between the BSP and the Bootloader in order
|
||||||
to store the GDT.
|
to store the GDT.
|
||||||
|
|
||||||
config BSP_SHARED_GDT_RAM_SIZE
|
config SHARED_GDT_RAM_SIZE
|
||||||
hex "Size of the GDT in RAM shared with the QMSI Bootloader"
|
hex "Size of the GDT in RAM shared with the QMSI Bootloader"
|
||||||
default 0x20
|
default 0x20
|
||||||
help
|
help
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
/* total shared RAM size (restore info + gdt) */
|
/* total shared RAM size (restore info + gdt) */
|
||||||
#define BSP_SHARED_RAM_SIZE \
|
#define BSP_SHARED_RAM_SIZE \
|
||||||
(CONFIG_BSP_SHARED_GDT_RAM_SIZE+CONFIG_BSP_SHARED_RESTORE_INFO_SIZE)
|
(CONFIG_SHARED_GDT_RAM_SIZE+CONFIG_BSP_SHARED_RESTORE_INFO_SIZE)
|
||||||
/*
|
/*
|
||||||
* When DEEP_SLEEP is not enabled, the shared memory can be re-used after boot.
|
* When DEEP_SLEEP is not enabled, the shared memory can be re-used after boot.
|
||||||
* Since the memory regions area are at fixed address locations, only the
|
* Since the memory regions area are at fixed address locations, only the
|
||||||
|
@ -38,7 +38,7 @@
|
||||||
#ifdef CONFIG_SET_GDT
|
#ifdef CONFIG_SET_GDT
|
||||||
#define PHYS_RAM_SIZE CONFIG_RAM_SIZE*1K
|
#define PHYS_RAM_SIZE CONFIG_RAM_SIZE*1K
|
||||||
#else
|
#else
|
||||||
#define PHYS_RAM_SIZE CONFIG_RAM_SIZE*1K - CONFIG_BSP_SHARED_GDT_RAM_SIZE
|
#define PHYS_RAM_SIZE CONFIG_RAM_SIZE*1K - CONFIG_SHARED_GDT_RAM_SIZE
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -55,8 +55,8 @@ MEMORY
|
||||||
LENGTH = CONFIG_BSP_SHARED_RESTORE_INFO_SIZE
|
LENGTH = CONFIG_BSP_SHARED_RESTORE_INFO_SIZE
|
||||||
#endif /* CONFIG_SYS_POWER_DEEP_SLEEP */
|
#endif /* CONFIG_SYS_POWER_DEEP_SLEEP */
|
||||||
#ifndef CONFIG_SET_GDT
|
#ifndef CONFIG_SET_GDT
|
||||||
BSP_SHARED_GDT_RAM (rw) : ORIGIN = CONFIG_BSP_SHARED_GDT_RAM_ADDR,
|
SHARED_GDT_RAM (rw) : ORIGIN = CONFIG_SHARED_GDT_RAM_ADDR,
|
||||||
LENGTH = CONFIG_BSP_SHARED_GDT_RAM_SIZE
|
LENGTH = CONFIG_SHARED_GDT_RAM_SIZE
|
||||||
#endif /* !CONFIG_SET_GDT */
|
#endif /* !CONFIG_SET_GDT */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue