diff options
author | Tom Rini <trini@konsulko.com> | 2017-05-31 22:28:06 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-05-31 22:28:06 -0400 |
commit | 31493dd5ffc74e2d5d1f1112fd2267e37d4fd698 (patch) | |
tree | 25e36b80fded32b568357f0d73b583beb3d980bb /include/configs/bmips_bcm6338.h | |
parent | 1b87f9538f28566a4f718532f9c6a2a19842dbde (diff) | |
parent | c93bb1d7bb24930cd3591b0a5a980f77fabd1c29 (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-mips
Please pull another update for Broadcom MIPS.
This contains new SoC's, new boards and new drivers and some bugfixes.
Diffstat (limited to 'include/configs/bmips_bcm6338.h')
-rw-r--r-- | include/configs/bmips_bcm6338.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/configs/bmips_bcm6338.h b/include/configs/bmips_bcm6338.h new file mode 100644 index 0000000000..52d72c87e5 --- /dev/null +++ b/include/configs/bmips_bcm6338.h @@ -0,0 +1,30 @@ +/* + * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> + * + * SPDX-License-Identifier: GPL-2.0+ + */ + +#ifndef __CONFIG_BMIPS_BCM6338_H +#define __CONFIG_BMIPS_BCM6338_H + +/* CPU */ +#define CONFIG_SYS_MIPS_TIMER_FREQ 120000000 + +/* RAM */ +#define CONFIG_NR_DRAM_BANKS 1 +#define CONFIG_SYS_SDRAM_BASE 0x80000000 + +/* U-Boot */ +#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_SDRAM_BASE + 0x100000 + +#if defined(CONFIG_BMIPS_BOOT_RAM) +#define CONFIG_SKIP_LOWLEVEL_INIT +#define CONFIG_SYS_INIT_SP_OFFSET 0x2000 +#endif + +#define CONFIG_SYS_FLASH_BASE 0xbfc00000 +#define CONFIG_SYS_FLASH_EMPTY_INFO +#define CONFIG_SYS_FLASH_PROTECTION +#define CONFIG_SYS_MAX_FLASH_BANKS_DETECT 1 + +#endif /* __CONFIG_BMIPS_BCM6338_H */ |