1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com> 4 */ 5 6 #ifndef __CONFIG_BMIPS_BCM6348_H 7 #define __CONFIG_BMIPS_BCM6348_H 8 9 #include <linux/sizes.h> 10 11 /* RAM */ 12 #define CFG_SYS_SDRAM_BASE 0x80000000 13 14 /* U-Boot */ 15 16 #if defined(CONFIG_BMIPS_BOOT_RAM) 17 #define CFG_SYS_INIT_SP_OFFSET SZ_8K 18 #endif 19 20 #define CFG_SYS_FLASH_BASE 0xbfc00000 21 22 #endif /* __CONFIG_BMIPS_BCM6348_H */ 23