1 /* 2 * Copyright (C) 2012-2015 Masahiro Yamada <yamada.masahiro@socionext.com> 3 * 4 * SPDX-License-Identifier: GPL-2.0+ 5 */ 6 7 /* U-Boot - Common settings for UniPhier Family */ 8 9 #ifndef __CONFIG_UNIPHIER_COMMON_H__ 10 #define __CONFIG_UNIPHIER_COMMON_H__ 11 12 #define CONFIG_I2C_EEPROM 13 #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 10 14 15 #define CONFIG_SMC911X 16 17 /* dummy: referenced by examples/standalone/smc911x_eeprom.c */ 18 #define CONFIG_SMC911X_BASE 0 19 #define CONFIG_SMC911X_32_BIT 20 21 /*----------------------------------------------------------------------- 22 * MMU and Cache Setting 23 *----------------------------------------------------------------------*/ 24 25 /* Comment out the following to enable L1 cache */ 26 /* #define CONFIG_SYS_ICACHE_OFF */ 27 /* #define CONFIG_SYS_DCACHE_OFF */ 28 29 #define CONFIG_SYS_CACHELINE_SIZE 32 30 31 /* Comment out the following to disable L2 cache */ 32 #define CONFIG_UNIPHIER_L2CACHE_ON 33 34 #define CONFIG_DISPLAY_CPUINFO 35 #define CONFIG_DISPLAY_BOARDINFO 36 #define CONFIG_MISC_INIT_F 37 #define CONFIG_BOARD_EARLY_INIT_F 38 #define CONFIG_BOARD_EARLY_INIT_R 39 #define CONFIG_BOARD_LATE_INIT 40 41 #define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024) 42 43 #define CONFIG_TIMESTAMP 44 45 /* FLASH related */ 46 #define CONFIG_MTD_DEVICE 47 48 /* 49 * uncomment the following to disable FLASH related code. 50 */ 51 /* #define CONFIG_SYS_NO_FLASH */ 52 53 #define CONFIG_FLASH_CFI_DRIVER 54 #define CONFIG_SYS_FLASH_CFI 55 56 #define CONFIG_SYS_MAX_FLASH_SECT 256 57 #define CONFIG_SYS_MONITOR_BASE 0 58 #define CONFIG_SYS_MONITOR_LEN 0x00080000 /* 512KB */ 59 #define CONFIG_SYS_FLASH_BASE 0 60 61 /* 62 * flash_toggle does not work for out supoort card. 63 * We need to use flash_status_poll. 64 */ 65 #define CONFIG_SYS_CFI_FLASH_STATUS_POLL 66 67 #define CONFIG_FLASH_SHOW_PROGRESS 45 /* count down from 45/5: 9..1 */ 68 69 #define CONFIG_SYS_MAX_FLASH_BANKS_DETECT 1 70 71 /* serial console configuration */ 72 #define CONFIG_BAUDRATE 115200 73 74 75 #if !defined(CONFIG_SPL_BUILD) 76 #define CONFIG_USE_ARCH_MEMSET 77 #define CONFIG_USE_ARCH_MEMCPY 78 #endif 79 80 #define CONFIG_SYS_LONGHELP /* undef to save memory */ 81 82 #define CONFIG_CMDLINE_EDITING /* add command line history */ 83 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ 84 /* Print Buffer Size */ 85 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT) + 16) 86 #define CONFIG_SYS_MAXARGS 16 /* max number of command */ 87 /* Boot Argument Buffer Size */ 88 #define CONFIG_SYS_BARGSIZE (CONFIG_SYS_CBSIZE) 89 90 #define CONFIG_CONS_INDEX 1 91 92 /* #define CONFIG_ENV_IS_NOWHERE */ 93 /* #define CONFIG_ENV_IS_IN_NAND */ 94 #define CONFIG_ENV_IS_IN_MMC 95 #define CONFIG_ENV_OFFSET 0x80000 96 #define CONFIG_ENV_SIZE 0x2000 97 /* #define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE) */ 98 99 #define CONFIG_SYS_MMC_ENV_DEV 0 100 #define CONFIG_SYS_MMC_ENV_PART 1 101 102 /* Time clock 1MHz */ 103 #define CONFIG_SYS_TIMER_RATE 1000000 104 105 /* 106 * By default, ARP timeout is 5 sec. 107 * The first ARP request does not seem to work. 108 * So we need to retry ARP request anyway. 109 * We want to shrink the interval until the second ARP request. 110 */ 111 #define CONFIG_ARP_TIMEOUT 500UL /* 0.5 msec */ 112 113 #define CONFIG_SYS_MAX_NAND_DEVICE 1 114 #define CONFIG_SYS_NAND_MAX_CHIPS 2 115 #define CONFIG_SYS_NAND_ONFI_DETECTION 116 117 #define CONFIG_NAND_DENALI_ECC_SIZE 1024 118 119 #ifdef CONFIG_ARCH_UNIPHIER_SLD3 120 #define CONFIG_SYS_NAND_REGS_BASE 0xf8100000 121 #define CONFIG_SYS_NAND_DATA_BASE 0xf8000000 122 #else 123 #define CONFIG_SYS_NAND_REGS_BASE 0x68100000 124 #define CONFIG_SYS_NAND_DATA_BASE 0x68000000 125 #endif 126 127 #define CONFIG_SYS_NAND_BASE (CONFIG_SYS_NAND_DATA_BASE + 0x10) 128 129 #define CONFIG_SYS_NAND_USE_FLASH_BBT 130 #define CONFIG_SYS_NAND_BAD_BLOCK_POS 0 131 132 /* USB */ 133 #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 134 #define CONFIG_SYS_USB_XHCI_MAX_ROOT_PORTS 4 135 #define CONFIG_CMD_FAT 136 #define CONFIG_FAT_WRITE 137 #define CONFIG_DOS_PARTITION 138 139 /* SD/MMC */ 140 #define CONFIG_CMD_MMC 141 #define CONFIG_SUPPORT_EMMC_BOOT 142 #define CONFIG_GENERIC_MMC 143 144 /* memtest works on */ 145 #define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE 146 #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_SDRAM_BASE + 0x01000000) 147 148 #define CONFIG_BOOTDELAY 3 149 #define CONFIG_ZERO_BOOTDELAY_CHECK /* check for keypress on bootdelay==0 */ 150 151 /* 152 * Network Configuration 153 */ 154 #define CONFIG_SERVERIP 192.168.11.1 155 #define CONFIG_IPADDR 192.168.11.10 156 #define CONFIG_GATEWAYIP 192.168.11.1 157 #define CONFIG_NETMASK 255.255.255.0 158 159 #define CONFIG_LOADADDR 0x84000000 160 #define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR 161 162 #define CONFIG_CMDLINE_EDITING /* add command line history */ 163 164 #define CONFIG_BOOTCOMMAND "run $bootmode" 165 166 #define CONFIG_ROOTPATH "/nfs/root/path" 167 #define CONFIG_NFSBOOTCOMMAND \ 168 "setenv bootargs $bootargs root=/dev/nfs rw " \ 169 "nfsroot=$serverip:$rootpath " \ 170 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off;" \ 171 "run __nfsboot" 172 173 #ifdef CONFIG_FIT 174 #define CONFIG_BOOTFILE "fitImage" 175 #define LINUXBOOT_ENV_SETTINGS \ 176 "fit_addr=0x00100000\0" \ 177 "fit_addr_r=0x84100000\0" \ 178 "fit_size=0x00f00000\0" \ 179 "norboot=setexpr fit_addr $nor_base + $fit_addr &&" \ 180 "bootm $fit_addr\0" \ 181 "nandboot=nand read $fit_addr_r $fit_addr $fit_size &&" \ 182 "bootm $fit_addr_r\0" \ 183 "tftpboot=tftpboot $fit_addr_r $bootfile &&" \ 184 "bootm $fit_addr_r\0" \ 185 "__nfsboot=run tftpboot\0" 186 #else 187 #define CONFIG_CMD_BOOTZ 188 #define CONFIG_BOOTFILE "zImage" 189 #define LINUXBOOT_ENV_SETTINGS \ 190 "fdt_addr=0x00100000\0" \ 191 "fdt_addr_r=0x84100000\0" \ 192 "fdt_size=0x00008000\0" \ 193 "kernel_addr=0x00200000\0" \ 194 "kernel_addr_r=0x80208000\0" \ 195 "kernel_size=0x00800000\0" \ 196 "ramdisk_addr=0x00a00000\0" \ 197 "ramdisk_addr_r=0x84a00000\0" \ 198 "ramdisk_size=0x00600000\0" \ 199 "ramdisk_file=rootfs.cpio.uboot\0" \ 200 "boot_common=setexpr bootm_low $kernel_addr_r '&' fe000000 &&" \ 201 "bootz $kernel_addr_r $ramdisk_addr_r $fdt_addr_r\0" \ 202 "norboot=setexpr kernel_addr $nor_base + $kernel_addr &&" \ 203 "cp.b $kernel_addr $kernel_addr_r $kernel_size &&" \ 204 "setexpr ramdisk_addr_r $nor_base + $ramdisk_addr &&" \ 205 "setexpr fdt_addr_r $nor_base + $fdt_addr &&" \ 206 "run boot_common\0" \ 207 "nandboot=nand read $kernel_addr_r $kernel_addr $kernel_size &&" \ 208 "nand read $ramdisk_addr_r $ramdisk_addr $ramdisk_size &&" \ 209 "nand read $fdt_addr_r $fdt_addr $fdt_size &&" \ 210 "run boot_common\0" \ 211 "tftpboot=tftpboot $kernel_addr_r $bootfile &&" \ 212 "tftpboot $ramdisk_addr_r $ramdisk_file &&" \ 213 "tftpboot $fdt_addr_r $fdt_file &&" \ 214 "run boot_common\0" \ 215 "__nfsboot=tftpboot $kernel_addr_r $bootfile &&" \ 216 "tftpboot $fdt_addr_r $fdt_file &&" \ 217 "tftpboot $fdt_addr_r $fdt_file &&" \ 218 "setenv ramdisk_addr_r - &&" \ 219 "run boot_common\0" 220 #endif 221 222 #define CONFIG_EXTRA_ENV_SETTINGS \ 223 "netdev=eth0\0" \ 224 "verify=n\0" \ 225 "nor_base=0x42000000\0" \ 226 "sramupdate=setexpr tmp_addr $nor_base + 0x50000 &&" \ 227 "tftpboot $tmp_addr u-boot-spl.bin &&" \ 228 "setexpr tmp_addr $nor_base + 0x60000 &&" \ 229 "tftpboot $tmp_addr u-boot.bin\0" \ 230 "emmcupdate=mmcsetn &&" \ 231 "mmc partconf $mmc_first_dev 0 1 1 &&" \ 232 "mmc erase 0 800 &&" \ 233 "tftpboot u-boot-spl.bin &&" \ 234 "mmc write $loadaddr 0 80 &&" \ 235 "tftpboot u-boot.bin &&" \ 236 "mmc write $loadaddr 80 780\0" \ 237 "nandupdate=nand erase 0 0x00100000 &&" \ 238 "tftpboot u-boot-spl.bin &&" \ 239 "nand write $loadaddr 0 0x00010000 &&" \ 240 "tftpboot u-boot.bin &&" \ 241 "nand write $loadaddr 0x00010000 0x000f0000\0" \ 242 LINUXBOOT_ENV_SETTINGS 243 244 #define CONFIG_SYS_BOOTMAPSZ 0x20000000 245 246 #define CONFIG_SYS_SDRAM_BASE 0x80000000 247 #define CONFIG_NR_DRAM_BANKS 2 248 249 #if defined(CONFIG_ARCH_UNIPHIER_SLD3) || defined(CONFIG_ARCH_UNIPHIER_LD4) || \ 250 defined(CONFIG_ARCH_UNIPHIER_SLD8) 251 #define CONFIG_SPL_TEXT_BASE 0x00040000 252 #else 253 #define CONFIG_SPL_TEXT_BASE 0x00100000 254 #endif 255 256 #define CONFIG_SPL_STACK (0x00100000) 257 #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE) 258 259 #define CONFIG_PANIC_HANG 260 261 #define CONFIG_SPL_FRAMEWORK 262 #define CONFIG_SPL_SERIAL_SUPPORT 263 #define CONFIG_SPL_NOR_SUPPORT 264 #define CONFIG_SPL_NAND_SUPPORT 265 #define CONFIG_SPL_MMC_SUPPORT 266 267 #define CONFIG_SPL_LIBCOMMON_SUPPORT /* for mem_malloc_init */ 268 #define CONFIG_SPL_LIBGENERIC_SUPPORT 269 270 #define CONFIG_SPL_BOARD_INIT 271 272 #define CONFIG_SYS_NAND_U_BOOT_OFFS 0x10000 273 274 /* subtract sizeof(struct image_header) */ 275 #define CONFIG_SYS_UBOOT_BASE (0x60000 - 0x40) 276 #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x80 277 278 #define CONFIG_SPL_TARGET "u-boot-with-spl.bin" 279 #define CONFIG_SPL_MAX_FOOTPRINT 0x10000 280 #define CONFIG_SPL_MAX_SIZE 0x10000 281 282 #endif /* __CONFIG_UNIPHIER_COMMON_H__ */ 283