diff options
author | Philippe Reynes <philippe.reynes@softathome.com> | 2018-10-11 18:31:59 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-11-16 13:34:35 -0500 |
commit | 786dc91492b3e759fb22aa88c5d9cc07dc7986f1 (patch) | |
tree | ed4324128944fb440e0fdff20cf80c416bcba46a /include/configs | |
parent | 40b59b0586339569c93ce54350edf292d1ce5283 (diff) | |
download | u-boot-786dc91492b3e759fb22aa88c5d9cc07dc7986f1.tar.gz u-boot-786dc91492b3e759fb22aa88c5d9cc07dc7986f1.tar.xz u-boot-786dc91492b3e759fb22aa88c5d9cc07dc7986f1.zip |
bcm968580xref: add initial support
This add the initial support of the broadcom reference
board bcm968580xref with a bcm6858 SoC.
This board has 512 MB of ram, 256 MB of flash (nand),
2 usb port, 1 uart, 4 ethernet ports (LAN), 1 ethernet port (WAN).
Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/broadcom_bcm968580xref.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/include/configs/broadcom_bcm968580xref.h b/include/configs/broadcom_bcm968580xref.h new file mode 100644 index 0000000000..1c0945e140 --- /dev/null +++ b/include/configs/broadcom_bcm968580xref.h @@ -0,0 +1,36 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (C) 2018 Philippe Reynes <philippe.reynes@softathome.com> + */ + +#include <linux/sizes.h> + +/* + * common + */ + +/* UART */ +#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, \ + 230400, 500000, 1500000 } +/* Memory usage */ +#define CONFIG_SYS_MAXARGS 24 +#define CONFIG_SYS_MALLOC_LEN (1024 * 1024) + +/* + * 6858 + */ + +/* RAM */ +#define CONFIG_SYS_SDRAM_BASE 0x00000000 + +/* U-Boot */ +#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE + SZ_16M) +#define CONFIG_SYS_LOAD_ADDR CONFIG_SYS_TEXT_BASE + +#define CONFIG_SKIP_LOWLEVEL_INIT + +/* + * 968580xref + */ + +#define CONFIG_ENV_SIZE (8 * 1024) |