| /* |
| * Copyright (C) 2015 Freescale Semiconductor |
| * |
| * SPDX-License-Identifier: GPL-2.0+ |
| */ |
| |
| #ifndef __LS1043A_COMMON_H |
| #define __LS1043A_COMMON_H |
| |
| #define CONFIG_REMAKE_ELF |
| #define CONFIG_FSL_LAYERSCAPE |
| #define CONFIG_FSL_LSCH2 |
| #define CONFIG_LS1043A |
| #define CONFIG_MP |
| #define CONFIG_SYS_FSL_CLK |
| #define CONFIG_GICV2 |
| |
| #include <asm/arch/config.h> |
| #ifdef CONFIG_SYS_FSL_SRDS_1 |
| #define CONFIG_SYS_HAS_SERDES |
| #endif |
| |
| /* Link Definitions */ |
| #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_FSL_OCRAM_BASE + 0xfff0) |
| |
| #define CONFIG_SUPPORT_RAW_INITRD |
| |
| #define CONFIG_SKIP_LOWLEVEL_INIT |
| #define CONFIG_BOARD_EARLY_INIT_F 1 |
| |
| /* Flat Device Tree Definitions */ |
| #define CONFIG_OF_LIBFDT |
| #define CONFIG_OF_BOARD_SETUP |
| |
| /* new uImage format support */ |
| #define CONFIG_FIT |
| #define CONFIG_FIT_VERBOSE /* enable fit_format_{error,warning}() */ |
| |
| #ifndef CONFIG_SYS_FSL_DDR4 |
| #define CONFIG_SYS_FSL_DDR3 /* Use DDR3 memory */ |
| #endif |
| |
| #define CONFIG_VERY_BIG_RAM |
| #define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000 |
| #define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 0 |
| #define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE |
| #define CONFIG_SYS_DDR_BLOCK2_BASE 0x880000000ULL |
| |
| #define CPU_RELEASE_ADDR secondary_boot_func |
| |
| /* Generic Timer Definitions */ |
| #define COUNTER_FREQUENCY 25000000 /* 25MHz */ |
| |
| /* Size of malloc() pool */ |
| #define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 1024 * 1024) |
| |
| /* Serial Port */ |
| #define CONFIG_CONS_INDEX 1 |
| #define CONFIG_SYS_NS16550_SERIAL |
| #define CONFIG_SYS_NS16550_REG_SIZE 1 |
| #define CONFIG_SYS_NS16550_CLK (get_bus_freq(0)) |
| |
| #define CONFIG_BAUDRATE 115200 |
| #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 } |
| |
| /* SD boot SPL */ |
| #ifdef CONFIG_SD_BOOT |
| #define CONFIG_SPL_FRAMEWORK |
| #define CONFIG_SPL_LDSCRIPT "arch/arm/cpu/armv8/u-boot-spl.lds" |
| #define CONFIG_SPL_TARGET "u-boot-with-spl.bin" |
| #define CONFIG_SPL_LIBCOMMON_SUPPORT |
| #define CONFIG_SPL_LIBGENERIC_SUPPORT |
| #define CONFIG_SPL_ENV_SUPPORT |
| #define CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT |
| #define CONFIG_SPL_WATCHDOG_SUPPORT |
| #define CONFIG_SPL_I2C_SUPPORT |
| #define CONFIG_SPL_SERIAL_SUPPORT |
| #define CONFIG_SPL_DRIVERS_MISC_SUPPORT |
| #define CONFIG_SPL_MMC_SUPPORT |
| #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0xf0 |
| #define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS 0x500 |
| |
| #define CONFIG_SPL_TEXT_BASE 0x10000000 |
| #define CONFIG_SPL_MAX_SIZE 0x1d000 |
| #define CONFIG_SPL_STACK 0x1001e000 |
| #define CONFIG_SPL_PAD_TO 0x1d000 |
| |
| #define CONFIG_SYS_SPL_MALLOC_START (CONFIG_SYS_TEXT_BASE + \ |
| CONFIG_SYS_MONITOR_LEN) |
| #define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 |
| #define CONFIG_SPL_BSS_START_ADDR 0x80100000 |
| #define CONFIG_SPL_BSS_MAX_SIZE 0x80000 |
| #define CONFIG_SYS_MONITOR_LEN 0xa0000 |
| #endif |
| |
| /* NAND SPL */ |
| #ifdef CONFIG_NAND_BOOT |
| #define CONFIG_SPL_PBL_PAD |
| #define CONFIG_SPL_FRAMEWORK |
| #define CONFIG_SPL_LDSCRIPT "arch/arm/cpu/armv8/u-boot-spl.lds" |
| #define CONFIG_SPL_TARGET "u-boot-with-spl.bin" |
| #define CONFIG_SPL_LIBCOMMON_SUPPORT |
| #define CONFIG_SPL_LIBGENERIC_SUPPORT |
| #define CONFIG_SPL_ENV_SUPPORT |
| #define CONFIG_SPL_WATCHDOG_SUPPORT |
| #define CONFIG_SPL_I2C_SUPPORT |
| #define CONFIG_SPL_SERIAL_SUPPORT |
| #define CONFIG_SPL_MPC8XXX_INIT_DDR_SUPPORT |
| #define CONFIG_SPL_NAND_SUPPORT |
| #define CONFIG_SPL_DRIVERS_MISC_SUPPORT |
| #define CONFIG_SPL_TEXT_BASE 0x10000000 |
| #define CONFIG_SPL_MAX_SIZE 0x1a000 |
| #define CONFIG_SPL_STACK 0x1001d000 |
| #define CONFIG_SYS_NAND_U_BOOT_DST CONFIG_SYS_TEXT_BASE |
| #define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE |
| #define CONFIG_SYS_SPL_MALLOC_START 0x80200000 |
| #define CONFIG_SPL_BSS_START_ADDR 0x80100000 |
| #define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 |
| #define CONFIG_SPL_BSS_MAX_SIZE 0x80000 |
| #define CONFIG_SYS_MONITOR_LEN 0xa0000 |
| #endif |
| |
| /* IFC */ |
| #define CONFIG_FSL_IFC |
| /* |
| * CONFIG_SYS_FLASH_BASE has the final address (core view) |
| * CONFIG_SYS_FLASH_BASE_PHYS has the final address (IFC view) |
| * CONFIG_SYS_FLASH_BASE_PHYS_EARLY has the temporary IFC address |
| * CONFIG_SYS_TEXT_BASE is linked to 0x60000000 for booting |
| */ |
| #define CONFIG_SYS_FLASH_BASE 0x60000000 |
| #define CONFIG_SYS_FLASH_BASE_PHYS CONFIG_SYS_FLASH_BASE |
| #define CONFIG_SYS_FLASH_BASE_PHYS_EARLY 0x00000000 |
| |
| #ifndef CONFIG_SYS_NO_FLASH |
| #define CONFIG_FLASH_CFI_DRIVER |
| #define CONFIG_SYS_FLASH_CFI |
| #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE |
| #define CONFIG_SYS_FLASH_QUIET_TEST |
| #define CONFIG_FLASH_SHOW_PROGRESS 45 /* count down from 45/5: 9..1 */ |
| #endif |
| |
| /* I2C */ |
| #define CONFIG_CMD_I2C |
| #define CONFIG_SYS_I2C |
| #define CONFIG_SYS_I2C_MXC |
| #define CONFIG_SYS_I2C_MXC_I2C1 |
| #define CONFIG_SYS_I2C_MXC_I2C2 |
| #define CONFIG_SYS_I2C_MXC_I2C3 |
| #define CONFIG_SYS_I2C_MXC_I2C4 |
| |
| /* PCIe */ |
| #define CONFIG_PCI /* Enable PCI/PCIE */ |
| #define CONFIG_PCIE1 /* PCIE controller 1 */ |
| #define CONFIG_PCIE2 /* PCIE controller 2 */ |
| #define CONFIG_PCIE3 /* PCIE controller 3 */ |
| #define CONFIG_PCIE_LAYERSCAPE /* Use common FSL Layerscape PCIe code */ |
| #define FSL_PCIE_COMPAT "fsl,ls1043a-pcie" |
| |
| #define CONFIG_SYS_PCI_64BIT |
| |
| #define CONFIG_SYS_PCIE_CFG0_PHYS_OFF 0x00000000 |
| #define CONFIG_SYS_PCIE_CFG0_SIZE 0x00001000 /* 4k */ |
| #define CONFIG_SYS_PCIE_CFG1_PHYS_OFF 0x00001000 |
| #define CONFIG_SYS_PCIE_CFG1_SIZE 0x00001000 /* 4k */ |
| |
| #define CONFIG_SYS_PCIE_IO_BUS 0x00000000 |
| #define CONFIG_SYS_PCIE_IO_PHYS_OFF 0x00010000 |
| #define CONFIG_SYS_PCIE_IO_SIZE 0x00010000 /* 64k */ |
| |
| #define CONFIG_SYS_PCIE_MEM_BUS 0x40000000 |
| #define CONFIG_SYS_PCIE_MEM_PHYS_OFF 0x40000000 |
| #define CONFIG_SYS_PCIE_MEM_SIZE 0x40000000 /* 1G */ |
| |
| #ifdef CONFIG_PCI |
| #define CONFIG_NET_MULTI |
| #define CONFIG_PCI_PNP |
| #define CONFIG_E1000 |
| #define CONFIG_PCI_SCAN_SHOW |
| #define CONFIG_CMD_PCI |
| #endif |
| |
| /* Command line configuration */ |
| #define CONFIG_CMD_CACHE |
| #define CONFIG_CMD_DHCP |
| #define CONFIG_CMD_ENV |
| #define CONFIG_CMD_PING |
| |
| /* MMC */ |
| #define CONFIG_MMC |
| #ifdef CONFIG_MMC |
| #define CONFIG_CMD_MMC |
| #define CONFIG_CMD_FAT |
| #define CONFIG_FSL_ESDHC |
| #define CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33 |
| #define CONFIG_GENERIC_MMC |
| #define CONFIG_DOS_PARTITION |
| #endif |
| |
| /* FMan ucode */ |
| #define CONFIG_SYS_DPAA_FMAN |
| #ifdef CONFIG_SYS_DPAA_FMAN |
| #define CONFIG_SYS_FM_MURAM_SIZE 0x60000 |
| |
| #define CONFIG_SYS_QE_FMAN_FW_IN_NOR |
| /* FMan fireware Pre-load address */ |
| #define CONFIG_SYS_FMAN_FW_ADDR 0x60300000 |
| #define CONFIG_SYS_QE_FMAN_FW_LENGTH 0x10000 |
| #define CONFIG_SYS_FDT_PAD (0x3000 + CONFIG_SYS_QE_FMAN_FW_LENGTH) |
| #endif |
| |
| /* Miscellaneous configurable options */ |
| #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000) |
| #define CONFIG_ARCH_EARLY_INIT_R |
| #define CONFIG_BOARD_LATE_INIT |
| |
| #define CONFIG_HWCONFIG |
| #define HWCONFIG_BUFFER_SIZE 128 |
| |
| /* Initial environment variables */ |
| #define CONFIG_EXTRA_ENV_SETTINGS \ |
| "hwconfig=fsl_ddr:bank_intlv=auto\0" \ |
| "loadaddr=0x80100000\0" \ |
| "kernel_addr=0x100000\0" \ |
| "ramdisk_addr=0x800000\0" \ |
| "ramdisk_size=0x2000000\0" \ |
| "fdt_high=0xffffffffffffffff\0" \ |
| "initrd_high=0xffffffffffffffff\0" \ |
| "kernel_start=0x61200000\0" \ |
| "kernel_load=0x807f0000\0" \ |
| "kernel_size=0x1000000\0" \ |
| "console=ttyAMA0,38400n8\0" |
| |
| #define CONFIG_BOOTARGS "console=ttyS0,115200 root=/dev/ram0 " \ |
| "earlycon=uart8250,0x21c0500,115200" |
| #define CONFIG_BOOTCOMMAND "cp.b $kernel_start $kernel_load " \ |
| "$kernel_size && bootm $kernel_load" |
| #define CONFIG_BOOTDELAY 10 |
| |
| /* Monitor Command Prompt */ |
| #define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */ |
| #define CONFIG_SYS_PROMPT "=> " |
| #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \ |
| sizeof(CONFIG_SYS_PROMPT) + 16) |
| #define CONFIG_SYS_HUSH_PARSER |
| #define CONFIG_SYS_PROMPT_HUSH_PS2 "> " |
| #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot args buffer */ |
| #define CONFIG_SYS_LONGHELP |
| #define CONFIG_CMDLINE_EDITING 1 |
| #define CONFIG_AUTO_COMPLETE |
| #define CONFIG_SYS_MAXARGS 64 /* max command args */ |
| |
| #define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */ |
| |
| #endif /* __LS1043A_COMMON_H */ |