diff options
author | Tom Rini <trini@konsulko.com> | 2020-01-23 16:28:17 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-01-23 16:28:17 -0500 |
commit | 2c871f9e084b2c03d1961884228a6901387ab8d6 (patch) | |
tree | 3d5adbb8b209dc38b11c0b12ff47e0ec37633a7d /include/configs/broadcom_bcm968360bg.h | |
parent | 052170c6a043eec4e73fad80955876cf1ba5e4f2 (diff) | |
parent | a9d1c0e2bc3fced595b742d90e65c744c55616b3 (diff) |
Merge branch '2020-01-22-master-imports'
- Re-add U8500 platform support
- Add bcm968360bg support
- Assorted Keymile fixes
- Other assorted bugfixes
Diffstat (limited to 'include/configs/broadcom_bcm968360bg.h')
-rw-r--r-- | include/configs/broadcom_bcm968360bg.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/include/configs/broadcom_bcm968360bg.h b/include/configs/broadcom_bcm968360bg.h new file mode 100644 index 0000000000..77690ff40f --- /dev/null +++ b/include/configs/broadcom_bcm968360bg.h @@ -0,0 +1,40 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (C) 2020 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 + +#ifdef CONFIG_MTD_RAW_NAND +#define CONFIG_SYS_MAX_NAND_DEVICE 1 +#define CONFIG_SYS_NAND_SELF_INIT +#define CONFIG_SYS_NAND_ONFI_DETECTION +#endif /* CONFIG_MTD_RAW_NAND */ + +/* + * 968360bg + */ |