mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
global: Migrate CONFIG_IRAM_BASE to CFG
Perform a simple rename of CONFIG_IRAM_BASE to CFG_IRAM_BASE Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
e6014294dd
commit
7b5f75cffa
13 changed files with 13 additions and 13 deletions
|
@ -57,6 +57,6 @@ extern const char * const boot_devices[BROM_LAST_BOOTSOURCE + 1];
|
|||
/**
|
||||
* Locations of the boot-device identifier in SRAM
|
||||
*/
|
||||
#define BROM_BOOTSOURCE_ID_ADDR (CONFIG_IRAM_BASE + 0x10)
|
||||
#define BROM_BOOTSOURCE_ID_ADDR (CFG_IRAM_BASE + 0x10)
|
||||
|
||||
#endif
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include "rockchip-common.h"
|
||||
|
||||
/* FIXME: ff020000 is pmu_mem (10k), while ff0e0000 is regular int_mem */
|
||||
#define CONFIG_IRAM_BASE 0xff020000
|
||||
#define CFG_IRAM_BASE 0xff020000
|
||||
|
||||
#define GICD_BASE 0xff131000
|
||||
#define GICC_BASE 0xff132000
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include <asm/arch-rockchip/hardware.h>
|
||||
#include "rockchip-common.h"
|
||||
|
||||
#define CONFIG_IRAM_BASE 0x10080000
|
||||
#define CFG_IRAM_BASE 0x10080000
|
||||
|
||||
#define CFG_SYS_SDRAM_BASE 0x60000000
|
||||
#define SDRAM_BANK_SIZE (1024UL << 20UL)
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#define CFG_SYS_HZ_CLOCK 24000000
|
||||
|
||||
#define CONFIG_IRAM_BASE 0x10080000
|
||||
#define CFG_IRAM_BASE 0x10080000
|
||||
|
||||
/* RAW SD card / eMMC locations. */
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
#include <asm/arch-rockchip/hardware.h>
|
||||
#include "rockchip-common.h"
|
||||
|
||||
#define CONFIG_IRAM_BASE 0x10080000
|
||||
#define CFG_IRAM_BASE 0x10080000
|
||||
|
||||
/* spl size 32kb sram - 2kb bootrom */
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#define CFG_SYS_HZ_CLOCK 24000000
|
||||
|
||||
#define CONFIG_IRAM_BASE 0x10080000
|
||||
#define CFG_IRAM_BASE 0x10080000
|
||||
|
||||
#define CFG_SYS_SDRAM_BASE 0x60000000
|
||||
#define SDRAM_BANK_SIZE (512UL << 20UL)
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
#define CFG_SYS_HZ_CLOCK 24000000
|
||||
|
||||
#define CONFIG_IRAM_BASE 0xff700000
|
||||
#define CFG_IRAM_BASE 0xff700000
|
||||
|
||||
/* RAW SD card / eMMC locations. */
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "rockchip-common.h"
|
||||
|
||||
#define CONFIG_IRAM_BASE 0xfff80000
|
||||
#define CFG_IRAM_BASE 0xfff80000
|
||||
|
||||
#define CFG_SYS_SDRAM_BASE 0
|
||||
#define SDRAM_MAX_SIZE 0xff000000
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "rockchip-common.h"
|
||||
|
||||
#define CONFIG_IRAM_BASE 0xff090000
|
||||
#define CFG_IRAM_BASE 0xff090000
|
||||
|
||||
/* FAT sd card locations. */
|
||||
#define CFG_SYS_SDRAM_BASE 0
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#define CFG_SYS_SDRAM_BASE 0
|
||||
#define SDRAM_MAX_SIZE 0xff000000
|
||||
|
||||
#define CONFIG_IRAM_BASE 0xff8c0000
|
||||
#define CFG_IRAM_BASE 0xff8c0000
|
||||
|
||||
#define ENV_MEM_LAYOUT_SETTINGS \
|
||||
"scriptaddr=0x00500000\0" \
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "rockchip-common.h"
|
||||
|
||||
#define CONFIG_IRAM_BASE 0xff8c0000
|
||||
#define CFG_IRAM_BASE 0xff8c0000
|
||||
|
||||
/* FAT sd card locations. */
|
||||
#define CFG_SYS_SDRAM_BASE 0
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include "rockchip-common.h"
|
||||
|
||||
#define CONFIG_IRAM_BASE 0xfdcc0000
|
||||
#define CFG_IRAM_BASE 0xfdcc0000
|
||||
|
||||
#define CFG_SYS_SDRAM_BASE 0
|
||||
#define SDRAM_MAX_SIZE 0xf0000000
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include <asm/arch-rockchip/hardware.h>
|
||||
#include "rockchip-common.h"
|
||||
|
||||
#define CONFIG_IRAM_BASE 0x10080000
|
||||
#define CFG_IRAM_BASE 0x10080000
|
||||
|
||||
#define CFG_SYS_TIMER_RATE (24 * 1000 * 1000)
|
||||
/* TIMER1,initialized by ddr initialize code */
|
||||
|
|
Loading…
Reference in a new issue