1*f1df81c4SGerald Kerma /* 2*f1df81c4SGerald Kerma * Copyright (C) 2015 3*f1df81c4SGerald Kerma * Gerald Kerma <dreagle@doukki.net> 4*f1df81c4SGerald Kerma * Tony Dinh <mibodhi@gmail.com> 5*f1df81c4SGerald Kerma * Luka Perkov <luka.perkov@sartura.hr> 6*f1df81c4SGerald Kerma * 7*f1df81c4SGerald Kerma * SPDX-License-Identifier: GPL-2.0+ 8*f1df81c4SGerald Kerma */ 9*f1df81c4SGerald Kerma 10*f1df81c4SGerald Kerma #ifndef _CONFIG_NSA310S_H 11*f1df81c4SGerald Kerma #define _CONFIG_NSA310S_H 12*f1df81c4SGerald Kerma 13*f1df81c4SGerald Kerma /* high level configuration options */ 14*f1df81c4SGerald Kerma #define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */ 15*f1df81c4SGerald Kerma #define CONFIG_KW88F6192 1 /* SOC Name */ 16*f1df81c4SGerald Kerma #define CONFIG_KW88F6702 1 /* SOC Name */ 17*f1df81c4SGerald Kerma #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 18*f1df81c4SGerald Kerma 19*f1df81c4SGerald Kerma /* add target to build it automatically upon "make" */ 20*f1df81c4SGerald Kerma #define CONFIG_BUILD_TARGET "u-boot.kwb" 21*f1df81c4SGerald Kerma 22*f1df81c4SGerald Kerma /* compression configuration */ 23*f1df81c4SGerald Kerma #define CONFIG_BZIP2 24*f1df81c4SGerald Kerma #define CONFIG_LZMA 25*f1df81c4SGerald Kerma 26*f1df81c4SGerald Kerma /* commands configuration */ 27*f1df81c4SGerald Kerma #define CONFIG_SYS_NO_FLASH /* declare no flash (NOR/SPI) */ 28*f1df81c4SGerald Kerma #define CONFIG_SYS_MVFS 29*f1df81c4SGerald Kerma #define CONFIG_CMD_BOOTZ 30*f1df81c4SGerald Kerma #define CONFIG_CMD_IDE 31*f1df81c4SGerald Kerma #define CONFIG_CMD_MII 32*f1df81c4SGerald Kerma 33*f1df81c4SGerald Kerma /* 34*f1df81c4SGerald Kerma * mv-common.h should be defined after CMD configs since it used them 35*f1df81c4SGerald Kerma * to enable certain macros 36*f1df81c4SGerald Kerma */ 37*f1df81c4SGerald Kerma #include "mv-common.h" 38*f1df81c4SGerald Kerma 39*f1df81c4SGerald Kerma /* environment variables configuration */ 40*f1df81c4SGerald Kerma #ifdef CONFIG_CMD_NAND 41*f1df81c4SGerald Kerma #define CONFIG_ENV_IS_IN_NAND 42*f1df81c4SGerald Kerma #define CONFIG_ENV_SECT_SIZE 0x20000 43*f1df81c4SGerald Kerma #else 44*f1df81c4SGerald Kerma #define CONFIG_ENV_IS_NOWHERE 45*f1df81c4SGerald Kerma #endif 46*f1df81c4SGerald Kerma #define CONFIG_ENV_SIZE 0x20000 47*f1df81c4SGerald Kerma #define CONFIG_ENV_OFFSET 0xe0000 48*f1df81c4SGerald Kerma 49*f1df81c4SGerald Kerma /* default environment variables */ 50*f1df81c4SGerald Kerma #define CONFIG_BOOTCOMMAND \ 51*f1df81c4SGerald Kerma "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \ 52*f1df81c4SGerald Kerma "ubi part root; " \ 53*f1df81c4SGerald Kerma "ubifsmount ubi:rootfs; " \ 54*f1df81c4SGerald Kerma "ubifsload 0x800000 ${kernel}; " \ 55*f1df81c4SGerald Kerma "ubifsload 0x700000 ${fdt}; " \ 56*f1df81c4SGerald Kerma "ubifsumount; " \ 57*f1df81c4SGerald Kerma "fdt addr 0x700000; fdt resize; fdt chosen; " \ 58*f1df81c4SGerald Kerma "bootz 0x800000 - 0x700000" 59*f1df81c4SGerald Kerma 60*f1df81c4SGerald Kerma #define CONFIG_MTDPARTS \ 61*f1df81c4SGerald Kerma "mtdparts=orion_nand:" \ 62*f1df81c4SGerald Kerma "0xe0000@0x0(uboot)," \ 63*f1df81c4SGerald Kerma "0x20000@0xe0000(uboot_env)," \ 64*f1df81c4SGerald Kerma "0x100000@0x100000(second_stage_uboot)," \ 65*f1df81c4SGerald Kerma "-@0x200000(root)\0" 66*f1df81c4SGerald Kerma 67*f1df81c4SGerald Kerma #define CONFIG_EXTRA_ENV_SETTINGS \ 68*f1df81c4SGerald Kerma "console=console=ttyS0,115200\0" \ 69*f1df81c4SGerald Kerma "mtdids=nand0=orion_nand\0" \ 70*f1df81c4SGerald Kerma "mtdparts="CONFIG_MTDPARTS \ 71*f1df81c4SGerald Kerma "kernel=/boot/zImage\0" \ 72*f1df81c4SGerald Kerma "fdt=/boot/nsa310s.dtb\0" \ 73*f1df81c4SGerald Kerma "bootargs_root=ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs rw\0" 74*f1df81c4SGerald Kerma 75*f1df81c4SGerald Kerma /* Ethernet driver configuration */ 76*f1df81c4SGerald Kerma #ifdef CONFIG_CMD_NET 77*f1df81c4SGerald Kerma #define CONFIG_NETCONSOLE 78*f1df81c4SGerald Kerma #define CONFIG_NET_MULTI 79*f1df81c4SGerald Kerma #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ 80*f1df81c4SGerald Kerma #define CONFIG_PHY_BASE_ADR 1 81*f1df81c4SGerald Kerma #define CONFIG_PHY_GIGE 82*f1df81c4SGerald Kerma #define CONFIG_RESET_PHY_R 83*f1df81c4SGerald Kerma #endif /* CONFIG_CMD_NET */ 84*f1df81c4SGerald Kerma 85*f1df81c4SGerald Kerma /* SATA driver configuration */ 86*f1df81c4SGerald Kerma #ifdef CONFIG_CMD_IDE 87*f1df81c4SGerald Kerma #define __io 88*f1df81c4SGerald Kerma #define CONFIG_IDE_PREINIT 89*f1df81c4SGerald Kerma #define CONFIG_DOS_PARTITION 90*f1df81c4SGerald Kerma #define CONFIG_MVSATA_IDE_USE_PORT0 91*f1df81c4SGerald Kerma #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET 92*f1df81c4SGerald Kerma #endif /* CONFIG_CMD_IDE */ 93*f1df81c4SGerald Kerma 94*f1df81c4SGerald Kerma /* RTC driver configuration */ 95*f1df81c4SGerald Kerma #ifdef CONFIG_CMD_DATE 96*f1df81c4SGerald Kerma #define CONFIG_RTC_MV 97*f1df81c4SGerald Kerma #endif /* CONFIG_CMD_DATE */ 98*f1df81c4SGerald Kerma 99*f1df81c4SGerald Kerma #endif /* _CONFIG_NSA310S_H */ 100