1 /* 2 * Configuration settings for the VInCo platform. 3 * 4 * Based on the settings for the SAMA5-EK board 5 * Copyright (C) 2014 Atmel 6 * Bo Shen <voice.shen@atmel.com> 7 * Copyright (C) 2015 Free Electrons 8 * Gregory CLEMENT gregory.clement@free-electrons.com 9 * 10 * SPDX-License-Identifier: GPL-2.0+ 11 */ 12 13 #ifndef __CONFIG_H 14 #define __CONFIG_H 15 16 /* No NOR flash, this definition should be put before common header */ 17 #define CONFIG_SYS_NO_FLASH 18 19 #include "at91-sama5_common.h" 20 21 /* The value in the common file is too far away for the VInCo platform */ 22 #ifdef CONFIG_SYS_TEXT_BASE 23 #undef CONFIG_SYS_TEXT_BASE 24 #endif 25 #define CONFIG_SYS_TEXT_BASE 0x20f00000 26 27 /* serial console */ 28 #define CONFIG_ATMEL_USART 29 #define CONFIG_USART_BASE ATMEL_BASE_USART3 30 #define CONFIG_USART_ID ATMEL_ID_USART3 31 32 /* SDRAM */ 33 #define CONFIG_NR_DRAM_BANKS 1 34 #define CONFIG_SYS_SDRAM_BASE ATMEL_BASE_DDRCS 35 #define CONFIG_SYS_SDRAM_SIZE 0x4000000 36 37 38 #define CONFIG_SYS_INIT_SP_ADDR \ 39 (CONFIG_SYS_SDRAM_BASE + 4 * 1024 - GENERATED_GBL_DATA_SIZE) 40 41 #define CONFIG_SYS_LOAD_ADDR 0x22000000 /* load address */ 42 43 /* SerialFlash */ 44 #define CONFIG_CMD_SF 45 46 #ifdef CONFIG_CMD_SF 47 #define CONFIG_ATMEL_SPI 48 #define CONFIG_ATMEL_SPI0 49 #define CONFIG_SPI_FLASH_STMICRO 50 #define CONFIG_SF_DEFAULT_BUS 0 51 #define CONFIG_SF_DEFAULT_CS 0 52 #define CONFIG_SF_DEFAULT_SPEED 50000000 53 #define CONFIG_ENV_SPI_MAX_HZ 50000000 54 #define CONFIG_SF_DEFAULT_MODE (SPI_MODE_0) 55 #define CONFIG_ENV_SPI_MODE (SPI_MODE_0) 56 #endif 57 58 59 /* MMC */ 60 #define CONFIG_CMD_MMC 61 62 #ifdef CONFIG_CMD_MMC 63 #define CONFIG_SUPPORT_EMMC_BOOT 64 #define CONFIG_MMC 65 #define CONFIG_GENERIC_MMC 66 #define CONFIG_GENERIC_ATMEL_MCI 67 #define ATMEL_BASE_MMCI ATMEL_BASE_MCI1 68 #define CONFIG_SYS_MMC_CLK_OD 500000 69 70 /* For generating MMC partitions */ 71 #define CONFIG_PARTITION_UUIDS 72 #define CONFIG_RANDOM_UUID 73 #define CONFIG_EFI_PARTITION 74 #define CONFIG_CMD_GPT 75 76 #endif 77 78 /* USB */ 79 #define CONFIG_CMD_USB 80 81 #ifdef CONFIG_CMD_USB 82 #define CONFIG_USB_EHCI 83 #define CONFIG_USB_EHCI_ATMEL 84 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3 85 #define CONFIG_USB_STORAGE 86 #endif 87 88 /* USB device */ 89 #define CONFIG_USB_GADGET 90 #define CONFIG_USB_GADGET_DUALSPEED 91 #define CONFIG_USB_GADGET_ATMEL_USBA 92 #define CONFIG_USB_ETHER 93 #define CONFIG_USB_ETH_RNDIS 94 #define CONFIG_USBNET_MANUFACTURER "L+G VInCo" 95 96 #if defined(CONFIG_CMD_USB) || defined(CONFIG_CMD_MMC) 97 #define CONFIG_CMD_FAT 98 #define CONFIG_DOS_PARTITION 99 #endif 100 101 /* Ethernet Hardware */ 102 #define CONFIG_CMD_MII 103 #define CONFIG_PHY_SMSC 104 #define CONFIG_MACB 105 #define CONFIG_RMII 106 #define CONFIG_NET_RETRY_COUNT 20 107 #define CONFIG_MACB_SEARCH_PHY 108 109 110 #define CONFIG_USB_HOST_ETHER 111 #define CONFIG_USB_ETHER_SMSC95XX 112 #define CONFIG_USB_ETHER_RNDIS 113 114 115 #ifdef CONFIG_SYS_USE_SERIALFLASH 116 /* bootstrap + u-boot + env + linux in serial flash */ 117 #define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS 118 #define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS 119 /* Use our own mapping for the VInCo platform */ 120 #undef CONFIG_ENV_OFFSET 121 #undef CONFIG_ENV_SIZE 122 123 #define CONFIG_ENV_OFFSET 0x10000 124 #define CONFIG_ENV_SIZE 0x10000 125 126 /* Update the bootcommand according to our mapping for the VInCo platform */ 127 #undef CONFIG_BOOTCOMMAND 128 #define CONFIG_BOOTCOMMAND "mmc dev 0 0;" \ 129 "mmc read ${loadaddr} ${k_offset} ${k_blksize};" \ 130 "mmc read ${oftaddr} ${dtb_offset} ${dtb_blksize};" \ 131 "bootz ${loadaddr} - ${oftaddr}" 132 133 #undef CONFIG_BOOTARGS 134 #define CONFIG_BOOTARGS "console=ttyS0,115200 earlyprintk rw root=/dev/mmcblk0p2 rootfstype=ext4 rootwait quiet lpj=1990656" 135 136 #define CONFIG_EXTRA_ENV_SETTINGS \ 137 "kernel_start=0x20000\0" \ 138 "kernel_size=0x800000\0" \ 139 "mmcblksize=0x200\0" \ 140 "oftaddr=0x21000000\0" \ 141 "loadaddr=0x22000000\0" \ 142 "update_uboot=tftp ${loadaddr} u-boot.bin;sf probe 0;" \ 143 "sf erase 0x20000 0x4B000; sf write ${loadaddr} 0x20000 0x4B000\0" \ 144 "create_partition=setexpr dtb_start ${kernel_start} + 0x400000;" \ 145 "setexpr rootfs_start ${kernel_start} + ${kernel_size};" \ 146 "setenv partitions 'name=kernel,size=${kernel_size}," \ 147 "start=${kernel_start};name=rootfs,size=-';" \ 148 "gpt write mmc 0 ${partitions} \0"\ 149 "f2blk_size=setexpr fileblksize ${filesize} / ${mmcblksize};" \ 150 "setexpr fileblksize ${fileblksize} + 1\0" \ 151 "store_kernel=tftp ${loadaddr} zImage; run f2blk_size;" \ 152 "setexpr k_blksize ${fileblksize};" \ 153 "setexpr k_offset ${kernel_start} / ${mmcblksize};" \ 154 "mmc write ${fileaddr} ${k_offset} ${fileblksize}\0" \ 155 "store_dtb=tftp ${loadaddr} at91-vinco.dtb; run f2blk_size;" \ 156 "setexpr dtb_blksize ${fileblksize};" \ 157 "setexpr dtb_offset ${dtb_start} / ${mmcblksize};" \ 158 "mmc write ${fileaddr} ${dtb_offset} ${fileblksize}\0" \ 159 "store_rootfs=tftp ${loadaddr} vinco-gateway-image-vinco.ext4;" \ 160 "setexpr rootfs_offset ${rootfs_start} / ${mmcblksize};" \ 161 "mmc write ${fileaddr} ${rootfs_offset} ${fileblksize}\0" \ 162 "bootdelay=0\0" 163 164 #endif 165 #define CONFIG_ZERO_BOOTDELAY_CHECK 166 167 #endif 168