uboot/include/configs/uniphier.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0+ */
   2/*
   3 * Copyright (C) 2012-2015 Panasonic Corporation
   4 * Copyright (C) 2015-2016 Socionext Inc.
   5 *   Author: Masahiro Yamada <yamada.masahiro@socionext.com>
   6 */
   7
   8/* U-Boot - Common settings for UniPhier Family */
   9
  10#ifndef __CONFIG_UNIPHIER_COMMON_H__
  11#define __CONFIG_UNIPHIER_COMMON_H__
  12
  13#ifndef CONFIG_SPL_BUILD
  14#include <config_distro_bootcmd.h>
  15
  16#ifdef CONFIG_CMD_MMC
  17#define BOOT_TARGET_DEVICE_MMC(func)    func(MMC, mmc, 0) func(MMC, mmc, 1)
  18#else
  19#define BOOT_TARGET_DEVICE_MMC(func)
  20#endif
  21
  22#ifdef CONFIG_CMD_UBIFS
  23#define BOOT_TARGET_DEVICE_UBIFS(func)  func(UBIFS, ubifs, 0)
  24#else
  25#define BOOT_TARGET_DEVICE_UBIFS(func)
  26#endif
  27
  28#ifdef CONFIG_CMD_USB
  29#define BOOT_TARGET_DEVICE_USB(func)    func(USB, usb, 0)
  30#else
  31#define BOOT_TARGET_DEVICE_USB(func)
  32#endif
  33
  34#define BOOT_TARGET_DEVICES(func)       \
  35        BOOT_TARGET_DEVICE_MMC(func)    \
  36        BOOT_TARGET_DEVICE_UBIFS(func)  \
  37        BOOT_TARGET_DEVICE_USB(func)
  38#else
  39#define BOOTENV
  40#endif
  41
  42#define CONFIG_ARMV7_PSCI_1_0
  43
  44/*-----------------------------------------------------------------------
  45 * MMU and Cache Setting
  46 *----------------------------------------------------------------------*/
  47
  48#define CONFIG_SYS_MALLOC_LEN           (4 * 1024 * 1024)
  49
  50#define CONFIG_TIMESTAMP
  51
  52/* FLASH related */
  53
  54#define CONFIG_SYS_MAX_FLASH_SECT       256
  55#define CONFIG_SYS_MONITOR_BASE         0
  56#define CONFIG_SYS_MONITOR_LEN          0x000d0000      /* 832KB */
  57#define CONFIG_SYS_FLASH_BASE           0
  58
  59/*
  60 * flash_toggle does not work for our support card.
  61 * We need to use flash_status_poll.
  62 */
  63#define CONFIG_SYS_CFI_FLASH_STATUS_POLL
  64
  65#define CONFIG_FLASH_SHOW_PROGRESS      45 /* count down from 45/5: 9..1 */
  66
  67#define CONFIG_SYS_MAX_FLASH_BANKS_DETECT 1
  68
  69/* serial console configuration */
  70
  71#define CONFIG_SYS_CBSIZE               1024    /* Console I/O Buffer Size */
  72/* Boot Argument Buffer Size */
  73#define CONFIG_SYS_BARGSIZE             (CONFIG_SYS_CBSIZE)
  74
  75#define CONFIG_ENV_OFFSET                       0x100000
  76#define CONFIG_ENV_SIZE                         0x2000
  77/* #define CONFIG_ENV_OFFSET_REDUND     (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE) */
  78
  79#define CONFIG_SYS_MMC_ENV_DEV          0
  80#define CONFIG_SYS_MMC_ENV_PART         1
  81
  82#if !defined(CONFIG_ARM64)
  83/* Time clock 1MHz */
  84#define CONFIG_SYS_TIMER_RATE                   1000000
  85#endif
  86
  87#define CONFIG_SYS_MAX_NAND_DEVICE                      1
  88#define CONFIG_SYS_NAND_ONFI_DETECTION
  89#define CONFIG_SYS_NAND_REGS_BASE                       0x68100000
  90#define CONFIG_SYS_NAND_DATA_BASE                       0x68000000
  91#define CONFIG_SYS_NAND_BAD_BLOCK_POS                   0
  92
  93/* memtest works on */
  94#define CONFIG_SYS_MEMTEST_START        CONFIG_SYS_SDRAM_BASE
  95#define CONFIG_SYS_MEMTEST_END          (CONFIG_SYS_SDRAM_BASE + 0x01000000)
  96
  97/*
  98 * Network Configuration
  99 */
 100#define CONFIG_SERVERIP                 192.168.11.1
 101#define CONFIG_IPADDR                   192.168.11.10
 102#define CONFIG_GATEWAYIP                192.168.11.1
 103#define CONFIG_NETMASK                  255.255.255.0
 104
 105#define CONFIG_LOADADDR                 0x85000000
 106#define CONFIG_SYS_LOAD_ADDR            CONFIG_LOADADDR
 107#define CONFIG_SYS_BOOTM_LEN            (32 << 20)
 108
 109#if defined(CONFIG_ARM64)
 110/* ARM Trusted Firmware */
 111#define BOOT_IMAGES \
 112        "second_image=unph_bl.bin\0" \
 113        "third_image=fip.bin\0"
 114#else
 115#define BOOT_IMAGES \
 116        "second_image=u-boot-spl.bin\0" \
 117        "third_image=u-boot.bin\0"
 118#endif
 119
 120#define CONFIG_ROOTPATH                 "/nfs/root/path"
 121#define CONFIG_NFSBOOTCOMMAND                                           \
 122        "setenv bootargs $bootargs root=/dev/nfs rw "                   \
 123        "nfsroot=$serverip:$rootpath "                                  \
 124        "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off;" \
 125                "run __nfsboot"
 126
 127#ifdef CONFIG_FIT
 128#define CONFIG_BOOTFILE                 "fitImage"
 129#define LINUXBOOT_ENV_SETTINGS \
 130        "kernel_addr_r=0x85100000\0" \
 131        "tftpboot=tftpboot $kernel_addr_r $bootfile &&" \
 132                "bootm $kernel_addr_r\0" \
 133        "__nfsboot=run tftpboot\0"
 134#else
 135#ifdef CONFIG_ARM64
 136#define CONFIG_BOOTFILE                 "Image"
 137#define LINUXBOOT_CMD                   "booti"
 138#define KERNEL_ADDR_R                   "kernel_addr_r=0x82080000\0"
 139#else
 140#define CONFIG_BOOTFILE                 "zImage"
 141#define LINUXBOOT_CMD                   "bootz"
 142#define KERNEL_ADDR_R                   "kernel_addr_r=0x80208000\0"
 143#endif
 144#define LINUXBOOT_ENV_SETTINGS \
 145        "fdt_addr_r=0x85100000\0" \
 146        KERNEL_ADDR_R \
 147        "ramdisk_addr_r=0x86000000\0" \
 148        "ramdisk_file=rootfs.cpio.gz\0" \
 149        "boot_common=setexpr bootm_low $kernel_addr_r '&' fe000000 && " \
 150                LINUXBOOT_CMD " $kernel_addr_r $ramdisk_addr_r $fdt_addr_r\0" \
 151        "tftpboot=tftpboot $kernel_addr_r $bootfile && " \
 152                "tftpboot $fdt_addr_r $fdtfile &&" \
 153                "tftpboot $ramdisk_addr_r $ramdisk_file &&" \
 154                "setenv ramdisk_addr_r $ramdisk_addr_r:$filesize &&" \
 155                "run boot_common\0" \
 156        "__nfsboot=tftpboot $kernel_addr_load $bootfile && " \
 157                "tftpboot $fdt_addr_r $fdtfile &&" \
 158                "setenv ramdisk_addr_r - &&" \
 159                "run boot_common\0"
 160#endif
 161
 162#define CONFIG_EXTRA_ENV_SETTINGS                               \
 163        "netdev=eth0\0"                                         \
 164        "initrd_high=0xffffffffffffffff\0"                      \
 165        "script=boot.scr\0" \
 166        "scriptaddr=0x85000000\0"                               \
 167        "nor_base=0x42000000\0"                                 \
 168        "emmcboot=mmcsetn && run bootcmd_mmc${mmc_first_dev}\0" \
 169        "nandboot=run bootcmd_ubifs0\0" \
 170        "norboot=run tftpboot\0" \
 171        "usbboot=run bootcmd_usb0\0" \
 172        "emmcscript=setenv devtype mmc && " \
 173                "mmcsetn && " \
 174                "setenv devnum ${mmc_first_dev} && " \
 175                "run loadscript_fat\0" \
 176        "nandscript=echo Running ${script} from ubi ... && " \
 177                "ubi part UBI && " \
 178                "ubifsmount ubi0:boot && " \
 179                "ubifsload ${loadaddr} ${script} && " \
 180                "source\0" \
 181        "norscript=echo Running ${script} from tftp ... && " \
 182                "tftpboot ${script} &&" \
 183                "source\0" \
 184        "usbscript=usb start && " \
 185                "setenv devtype usb && " \
 186                "setenv devnum 0 && " \
 187                "run loadscript_fat\0" \
 188        "loadscript_fat=echo Running ${script} from ${devtype}${devnum} ... && " \
 189                "load ${devtype} ${devnum}:1 ${loadaddr} ${script} && " \
 190                "source\0" \
 191        "sramupdate=setexpr tmp_addr $nor_base + 0x50000 &&"    \
 192                "tftpboot $tmp_addr $second_image && " \
 193                "setexpr tmp_addr $nor_base + 0x70000 && " \
 194                "tftpboot $tmp_addr $third_image\0" \
 195        "emmcupdate=mmcsetn &&"                                 \
 196                "mmc dev $mmc_first_dev &&"                     \
 197                "mmc partconf $mmc_first_dev 0 1 1 &&"          \
 198                "tftpboot $second_image && " \
 199                "mmc write $loadaddr 0 100 && " \
 200                "tftpboot $third_image && " \
 201                "mmc write $loadaddr 100 f00\0" \
 202        "nandupdate=nand erase 0 0x00100000 &&"                 \
 203                "tftpboot $second_image && " \
 204                "nand write $loadaddr 0 0x00020000 && " \
 205                "tftpboot $third_image && " \
 206                "nand write $loadaddr 0x00020000 0x001e0000\0" \
 207        "usbupdate=usb start &&" \
 208                "tftpboot $second_image && " \
 209                "usb write $loadaddr 0 100 && " \
 210                "tftpboot $third_image && " \
 211                "usb write $loadaddr 100 f00\0" \
 212        BOOT_IMAGES \
 213        LINUXBOOT_ENV_SETTINGS \
 214        BOOTENV
 215
 216#define CONFIG_SYS_BOOTMAPSZ                    0x20000000
 217
 218#define CONFIG_SYS_SDRAM_BASE           0x80000000
 219
 220#define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_TEXT_BASE)
 221
 222/* only for SPL */
 223#if defined(CONFIG_ARCH_UNIPHIER_LD4) || \
 224        defined(CONFIG_ARCH_UNIPHIER_SLD8)
 225#endif
 226
 227#define CONFIG_SPL_STACK                (0x00200000)
 228
 229#define CONFIG_SYS_NAND_U_BOOT_OFFS             0x20000
 230
 231/* subtract sizeof(struct image_header) */
 232#define CONFIG_SYS_UBOOT_BASE                   (0x130000 - 0x40)
 233
 234#define CONFIG_SPL_TARGET                       "u-boot-with-spl.bin"
 235#define CONFIG_SPL_MAX_FOOTPRINT                0x10000
 236#define CONFIG_SPL_MAX_SIZE                     0x10000
 237#define CONFIG_SPL_BSS_MAX_SIZE                 0x2000
 238
 239#define CONFIG_SPL_PAD_TO                       0x20000
 240
 241#endif /* __CONFIG_UNIPHIER_COMMON_H__ */
 242