Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
| 3 | * (C) Copyright 2018 Cisco Systems, Inc. |
| 4 | * |
| 5 | * Author: Thomas Fitzsimmons <fitzsim@fitzsim.org> |
| 6 | * |
| 7 | * Configuration settings for the Broadcom BCMSTB SoC family. |
| 8 | */ |
| 9 | |
| 10 | #ifndef __BCMSTB_H |
| 11 | #define __BCMSTB_H |
| 12 | |
| 13 | #include "version.h" |
| 14 | #include <linux/sizes.h> |
Thomas Fitzsimmons | dc7685e | 2018-07-26 22:55:37 -0400 | [diff] [blame] | 15 | |
| 16 | #ifndef __ASSEMBLY__ |
| 17 | |
Simon Glass | 1af3c7f | 2020-05-10 11:40:09 -0600 | [diff] [blame] | 18 | #include <linux/stringify.h> |
Thomas Fitzsimmons | dc7685e | 2018-07-26 22:55:37 -0400 | [diff] [blame] | 19 | #include <linux/types.h> |
| 20 | |
| 21 | struct bcmstb_boot_parameters { |
| 22 | u32 r0; |
| 23 | u32 r1; |
| 24 | u32 r2; |
| 25 | u32 r3; |
| 26 | u32 sp; |
| 27 | u32 lr; |
| 28 | }; |
| 29 | |
| 30 | extern struct bcmstb_boot_parameters bcmstb_boot_parameters; |
| 31 | |
| 32 | extern phys_addr_t prior_stage_fdt_address; |
| 33 | |
| 34 | #endif /* __ASSEMBLY__ */ |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 35 | |
| 36 | /* |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 37 | * CPU configuration. |
| 38 | */ |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 39 | |
| 40 | /* |
| 41 | * Memory configuration. |
| 42 | * |
| 43 | * The prior stage BOLT bootloader sets up memory for us. |
| 44 | * |
| 45 | * An example boot memory layout after loading everything is: |
| 46 | * |
| 47 | * 0x0000 8000 vmlinux.bin.gz |
| 48 | * : [~31 MiB uncompressed max] |
| 49 | * 0x01ef f000 FIT containing signed public key |
| 50 | * : [~2 KiB in size] |
| 51 | * 0x01f0 0000 DTB copied from prior-stage-provided region |
| 52 | * : [~1 MiB max] |
| 53 | * 0x0200 0000 FIT containing ramdisk and device tree |
| 54 | * : initramfs.cpio.gz |
| 55 | * : [~208 MiB uncompressed max, to CMA/bmem low address] |
| 56 | * : [~80 MiB compressed max, to PSB low address] |
| 57 | * : device tree binary |
| 58 | * : [~60 KiB] |
| 59 | * 0x0700 0000 Prior stage bootloader (PSB) |
| 60 | * : |
| 61 | * 0x0761 7000 Prior-stage-provided device tree binary (DTB) |
| 62 | * : [~40 KiB in size] |
| 63 | * 0x0f00 0000 Contiguous memory allocator (CMA/bmem) low address |
| 64 | * : |
| 65 | * 0x8010 0000 U-Boot code at ELF load address |
| 66 | * : [~500 KiB in size, stripped] |
| 67 | * 0xc000 0000 Top of RAM |
| 68 | * |
| 69 | * Setting gd->relocaddr to CONFIG_SYS_TEXT_BASE in dram_init_banksize |
| 70 | * prevents U-Boot from relocating itself when it is run as an ELF |
| 71 | * program by the prior stage bootloader. |
| 72 | * |
| 73 | * We want to keep the ramdisk and FDT in the FIT image in-place, to |
| 74 | * accommodate stblinux's bmem and CMA regions. To accomplish this, |
| 75 | * we set initrd_high and fdt_high to 0xffffffff, and the load and |
| 76 | * entry addresses of the FIT ramdisk entry to 0x0. |
| 77 | * |
| 78 | * Overwriting the prior stage bootloader causes memory instability, |
| 79 | * so the compressed initramfs needs to fit between the load address |
| 80 | * and the PSB low address. In BOLT's default configuration this |
| 81 | * limits the compressed size of the initramfs to approximately 80 |
| 82 | * MiB. However, BOLT can be configured to allow loading larger |
| 83 | * initramfs images, in which case this limitation is eliminated. |
| 84 | */ |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 85 | #define CONFIG_SYS_SDRAM_BASE 0x00000000 |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 86 | #define CONFIG_SYS_INIT_RAM_SIZE 0x100000 |
| 87 | #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_INIT_RAM_ADDR + \ |
| 88 | CONFIG_SYS_INIT_RAM_SIZE - \ |
| 89 | GENERATED_GBL_DATA_SIZE) |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 90 | |
| 91 | /* |
| 92 | * CONFIG_SYS_LOAD_ADDR - 1 MiB. |
| 93 | */ |
| 94 | #define CONFIG_SYS_FDT_SAVE_ADDRESS 0x1f00000 |
| 95 | #define CONFIG_SYS_CBSIZE 512 |
| 96 | #define CONFIG_SYS_MAXARGS 32 |
| 97 | |
| 98 | /* |
| 99 | * Large kernel image bootm configuration. |
| 100 | */ |
| 101 | #define CONFIG_SYS_BOOTM_LEN SZ_64M |
| 102 | |
| 103 | /* |
| 104 | * NS16550 configuration. |
| 105 | */ |
| 106 | #define V_NS16550_CLK 81000000 |
| 107 | |
| 108 | #define CONFIG_SYS_NS16550 |
| 109 | #define CONFIG_SYS_NS16550_SERIAL |
| 110 | #define CONFIG_SYS_NS16550_REG_SIZE (-4) |
| 111 | #define CONFIG_SYS_NS16550_CLK V_NS16550_CLK |
| 112 | |
| 113 | /* |
| 114 | * Serial console configuration. |
| 115 | */ |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 116 | #define CONFIG_SYS_BAUDRATE_TABLE {4800, 9600, 19200, 38400, 57600, \ |
| 117 | 115200} |
| 118 | |
| 119 | /* |
| 120 | * Informational display configuration. |
| 121 | */ |
| 122 | #define CONFIG_REVISION_TAG |
| 123 | |
| 124 | /* |
| 125 | * Command configuration. |
| 126 | */ |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 127 | |
| 128 | /* |
| 129 | * Flash configuration. |
| 130 | */ |
| 131 | #define CONFIG_ST_SMI |
| 132 | #define CONFIG_SPI_FLASH_STMICRO |
| 133 | #define CONFIG_SPI_FLASH_MACRONIX |
| 134 | |
| 135 | /* |
| 136 | * Filesystem configuration. |
| 137 | */ |
| 138 | #define CONFIG_DOS_PARTITION |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 139 | |
| 140 | /* |
| 141 | * Environment configuration. |
| 142 | */ |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 143 | |
| 144 | /* |
| 145 | * Save the prior stage provided DTB. |
| 146 | */ |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 147 | /* |
| 148 | * Enable in-place RFS with this initrd_high setting. |
| 149 | */ |
| 150 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 151 | "fdtsaveaddr=" __stringify(CONFIG_SYS_FDT_SAVE_ADDRESS) "\0" \ |
| 152 | "initrd_high=0xffffffff\0" \ |
| 153 | "fdt_high=0xffffffff\0" |
| 154 | |
| 155 | /* |
| 156 | * Set fdtaddr to prior stage-provided DTB in board_late_init, when |
| 157 | * writeable environment is available. |
| 158 | */ |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 159 | |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 160 | #endif /* __BCMSTB_H */ |