1 /* 2 * Copyright (c) 2012 Michael Walle 3 * Michael Walle <michael@walle.cc> 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 #ifndef _CONFIG_LSXL_H 9 #define _CONFIG_LSXL_H 10 11 /* 12 * Version number information 13 */ 14 #if defined(CONFIG_LSCHLV2) 15 #define CONFIG_IDENT_STRING " LS-CHLv2" 16 #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lschl.cfg 17 #define CONFIG_MACH_TYPE 3006 18 #define CONFIG_SYS_TCLK 166666667 /* 166 MHz */ 19 #elif defined(CONFIG_LSXHL) 20 #define CONFIG_IDENT_STRING " LS-XHL" 21 #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-lsxhl.cfg 22 #define CONFIG_MACH_TYPE 2663 23 /* CONFIG_SYS_TCLK is 200000000 by default */ 24 #else 25 #error "unknown board" 26 #endif 27 28 /* 29 * General configuration options 30 */ 31 #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */ 32 #define CONFIG_KIRKWOOD /* SOC Family Name */ 33 #define CONFIG_KW88F6281 /* SOC Name */ 34 35 #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ 36 #define CONFIG_MISC_INIT_R 37 #define CONFIG_SHOW_BOOT_PROGRESS 38 39 #define CONFIG_RANDOM_MACADDR 40 #define CONFIG_LIB_RAND 41 #define CONFIG_KIRKWOOD_GPIO 42 #define CONFIG_OF_LIBFDT 43 44 #define CONFIG_SYS_NO_FLASH 45 #define CONFIG_SYS_HUSH_PARSER 46 #define CONFIG_SYS_CONSOLE_IS_IN_ENV 47 #define CONFIG_SYS_CONSOLE_INFO_QUIET 48 49 /* 50 * Enable u-boot API for standalone programs. 51 */ 52 #define CONFIG_API 53 54 /* 55 * Commands configuration 56 */ 57 #include <config_cmd_default.h> 58 #define CONFIG_CMD_DHCP 59 #define CONFIG_CMD_ELF 60 #define CONFIG_CMD_ENV 61 #define CONFIG_CMD_EXT2 62 #define CONFIG_CMD_FAT 63 #define CONFIG_CMD_IDE 64 #define CONFIG_CMD_PING 65 #define CONFIG_CMD_PING 66 #define CONFIG_CMD_SF 67 #define CONFIG_CMD_SPI 68 #define CONFIG_CMD_USB 69 #define CONFIG_CMD_FS_GENERIC 70 71 #define CONFIG_DOS_PARTITION 72 #define CONFIG_EFI_PARTITION 73 74 /* 75 * mv-common.h should be defined after CMD configs since it used them 76 * to enable certain macros 77 */ 78 #include "mv-common.h" 79 80 /* ST M25P40 */ 81 #undef CONFIG_SPI_FLASH_MACRONIX 82 #define CONFIG_SPI_FLASH_STMICRO 83 #undef CONFIG_ENV_SPI_MAX_HZ 84 #define CONFIG_ENV_SPI_MAX_HZ 25000000 85 #undef CONFIG_SF_DEFAULT_SPEED 86 #define CONFIG_SF_DEFAULT_SPEED 25000000 87 88 89 #undef CONFIG_SYS_PROMPT 90 #define CONFIG_SYS_PROMPT_HUSH_PS2 "> " 91 92 /* 93 * Environment variables configurations 94 */ 95 #ifdef CONFIG_SPI_FLASH 96 #define CONFIG_SYS_MAX_FLASH_BANKS 1 97 #define CONFIG_SYS_MAX_FLASH_SECT 8 98 #define CONFIG_ENV_IS_IN_SPI_FLASH 1 99 #define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K */ 100 #else 101 #define CONFIG_ENV_IS_NOWHERE 102 #endif 103 104 #define CONFIG_ENV_SIZE 0x10000 /* 64k */ 105 #define CONFIG_ENV_OFFSET 0x70000 /* env starts here */ 106 107 /* 108 * Default environment variables 109 */ 110 #define CONFIG_LOADADDR 0x00800000 111 #define CONFIG_BOOTCOMMAND "run bootcmd_${bootsource}" 112 #define CONFIG_BOOTARGS "console=ttyS0,115200 root=/dev/sda2" 113 114 #if defined(CONFIG_LSXHL) 115 #define CONFIG_FDTFILE "kirkwood-lsxhl.dtb" 116 #elif defined(CONFIG_LSCHLV2) 117 #define CONFIG_FDTFILE "kirkwood-lschlv2.dtb" 118 #else 119 #error "Unsupported board" 120 #endif 121 122 #define CONFIG_EXTRA_ENV_SETTINGS \ 123 "bootsource=legacy\0" \ 124 "hdpart=0:1\0" \ 125 "kernel_addr=0x00800000\0" \ 126 "ramdisk_addr=0x01000000\0" \ 127 "fdt_addr=0x01ff0000\0" \ 128 "bootcmd_legacy=ide reset " \ 129 "&& load ide ${hdpart} 0x00100000 /uImage.buffalo " \ 130 "&& load ide ${hdpart} 0x00800000 /initrd.buffalo " \ 131 "&& bootm 0x00100000 0x00800000\0" \ 132 "bootcmd_net=bootp ${kernel_addr} uImage " \ 133 "&& tftpboot ${ramdisk_addr} uInitrd " \ 134 "&& tftpboot ${fdt_addr} " CONFIG_FDTFILE " " \ 135 "&& bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \ 136 "bootcmd_hdd=ide reset " \ 137 "&& load ide ${hdpart} ${kernel_addr} /uImage " \ 138 "&& load ide ${hdpart} ${ramdisk_addr} /uInitrd " \ 139 "&& load ide ${hdpart} ${fdt_addr} " \ 140 "/" CONFIG_FDTFILE " " \ 141 "&& bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \ 142 "bootcmd_usb=usb start " \ 143 "&& load usb 0:1 ${kernel_addr} /uImage " \ 144 "&& load usb 0:1 ${ramdisk_addr} /uInitrd " \ 145 "&& load usb 0:1 ${fdt_addr} " \ 146 "/" CONFIG_FDTFILE " " \ 147 "&& bootm ${kernel_addr} ${ramdisk_addr} ${fdt_addr}\0" \ 148 "bootcmd_rescue=run config_nc_dhcp; run nc\0" \ 149 "eraseenv=sf probe 0 " \ 150 "&& sf erase " __stringify(CONFIG_ENV_OFFSET) \ 151 " +" __stringify(CONFIG_ENV_SIZE) "\0" \ 152 "config_nc_dhcp=setenv autoload_old ${autoload}; " \ 153 "setenv autoload no " \ 154 "&& bootp " \ 155 "&& setenv ncip " \ 156 "&& setenv autoload ${autoload_old}; " \ 157 "setenv autoload_old\0" \ 158 "standard_env=setenv ipaddr; setenv netmask; setenv serverip; " \ 159 "setenv ncip; setenv gatewayip; setenv ethact; " \ 160 "setenv bootfile; setenv dnsip; " \ 161 "setenv bootsource hdd; run ser\0" \ 162 "restore_env=run standard_env; saveenv; reset\0" \ 163 "ser=setenv stdin serial; setenv stdout serial; " \ 164 "setenv stderr serial\0" \ 165 "nc=setenv stdin nc; setenv stdout nc; setenv stderr nc\0" \ 166 "stdin=serial\0" \ 167 "stdout=serial\0" \ 168 "stderr=serial\0" 169 170 /* 171 * Ethernet Driver configuration 172 */ 173 #ifdef CONFIG_CMD_NET 174 #define CONFIG_MVGBE_PORTS {0, 1} /* enable port 1 only */ 175 #define CONFIG_PHY_BASE_ADR 7 176 #undef CONFIG_RESET_PHY_R 177 #endif /* CONFIG_CMD_NET */ 178 179 #ifdef CONFIG_CMD_IDE 180 #undef CONFIG_IDE_LED 181 #undef CONFIG_SYS_IDE_MAXBUS 182 #define CONFIG_SYS_IDE_MAXBUS 1 183 #undef CONFIG_SYS_IDE_MAXDEVICE 184 #define CONFIG_SYS_IDE_MAXDEVICE 1 185 #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET 186 #define CONFIG_SYS_64BIT_LBA 187 #endif 188 189 #endif /* _CONFIG_LSXL_H */ 190