2018-05-06 17:58:06 -04:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2017-05-16 18:39:03 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2017 Álvaro Fernández Rojas <noltari@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CONFIG_BMIPS_BCM6348_H
|
|
|
|
#define __CONFIG_BMIPS_BCM6348_H
|
|
|
|
|
2019-08-30 11:54:27 +02:00
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
2017-05-16 18:39:03 +02:00
|
|
|
/* RAM */
|
2022-11-16 13:10:37 -05:00
|
|
|
#define CFG_SYS_SDRAM_BASE 0x80000000
|
2017-05-16 18:39:03 +02:00
|
|
|
|
|
|
|
/* U-Boot */
|
|
|
|
|
|
|
|
#if defined(CONFIG_BMIPS_BOOT_RAM)
|
2022-11-16 13:10:41 -05:00
|
|
|
#define CFG_SYS_INIT_SP_OFFSET SZ_8K
|
2017-05-16 18:39:03 +02:00
|
|
|
#endif
|
|
|
|
|
2022-11-16 13:10:41 -05:00
|
|
|
#define CFG_SYS_FLASH_BASE 0xbfc00000
|
2017-05-16 18:39:03 +02:00
|
|
|
|
|
|
|
#endif /* __CONFIG_BMIPS_BCM6348_H */
|