49679312e4c1df2b74b01a1bb3e30147f2a4ac4e
[platform/kernel/u-boot.git] / include / configs / vinco.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Configuration settings for the VInCo platform.
4  *
5  * Based on the settings for the SAMA5-EK board
6  * Copyright (C) 2014 Atmel
7  *                    Bo Shen <voice.shen@atmel.com>
8  * Copyright (C) 2015 Free Electrons
9  *                    Gregory CLEMENT gregory.clement@free-electrons.com
10  */
11
12 #ifndef __CONFIG_H
13 #define __CONFIG_H
14
15 #include "at91-sama5_common.h"
16
17 /* The value in the common file is too far away for the VInCo platform */
18
19 /* serial console */
20 #define CONFIG_USART_BASE               0xfc00c000
21 #define CONFIG_USART_ID                 30
22
23 /* Timer */
24 #define CONFIG_SYS_TIMER_COUNTER        0xfc06863c
25
26 /* SDRAM */
27 #define CONFIG_SYS_SDRAM_BASE           0x20000000
28 #define CONFIG_SYS_SDRAM_SIZE           0x4000000
29
30 #define CONFIG_SYS_INIT_SP_ADDR \
31         (CONFIG_SYS_SDRAM_BASE + 4 * 1024 - GENERATED_GBL_DATA_SIZE)
32
33 /* SerialFlash */
34
35 #ifdef CONFIG_CMD_SF
36 #define CONFIG_ATMEL_SPI0
37 #define CONFIG_SPI_FLASH_STMICRO
38 #endif
39
40 /* MMC */
41
42 #ifdef CONFIG_CMD_MMC
43 #define CONFIG_GENERIC_ATMEL_MCI
44 #define ATMEL_BASE_MMCI                 0xfc000000
45 #define CONFIG_SYS_MMC_CLK_OD           500000
46
47 /* For generating MMC partitions */
48
49 #endif
50
51 /* USB device */
52
53 /* Ethernet Hardware */
54 #define CONFIG_RMII
55 #define CONFIG_NET_RETRY_COUNT          20
56 #define CONFIG_MACB_SEARCH_PHY
57
58 #ifdef CONFIG_SPI_BOOT
59 /* bootstrap + u-boot + env + linux in serial flash */
60 /* Use our own mapping for the VInCo platform */
61
62 /* Update the bootcommand according to our mapping for the VInCo platform */
63
64 #define CONFIG_EXTRA_ENV_SETTINGS \
65         "kernel_start=0x20000\0" \
66         "kernel_size=0x800000\0" \
67         "mmcblksize=0x200\0" \
68         "oftaddr=0x21000000\0" \
69         "loadaddr=0x22000000\0" \
70         "update_uboot=tftp ${loadaddr} u-boot.bin;sf probe 0;" \
71         "sf erase 0x20000 0x4B000; sf write ${loadaddr} 0x20000 0x4B000\0" \
72         "create_partition=setexpr dtb_start ${kernel_start} + 0x400000;" \
73         "setexpr rootfs_start ${kernel_start} + ${kernel_size};" \
74         "setenv partitions 'name=kernel,size=${kernel_size}," \
75         "start=${kernel_start};name=rootfs,size=-';" \
76         "gpt write mmc 0 ${partitions} \0"\
77         "f2blk_size=setexpr fileblksize ${filesize} / ${mmcblksize};" \
78         "setexpr fileblksize ${fileblksize} + 1\0" \
79         "store_kernel=tftp ${loadaddr} zImage; run f2blk_size;" \
80         "setexpr k_blksize ${fileblksize};" \
81         "setexpr k_offset ${kernel_start} / ${mmcblksize};" \
82         "mmc write ${fileaddr} ${k_offset} ${fileblksize}\0" \
83         "store_dtb=tftp ${loadaddr} at91-vinco.dtb; run f2blk_size;" \
84         "setexpr dtb_blksize ${fileblksize};" \
85         "setexpr dtb_offset ${dtb_start} / ${mmcblksize};" \
86         "mmc write ${fileaddr} ${dtb_offset} ${fileblksize}\0" \
87         "store_rootfs=tftp ${loadaddr} vinco-gateway-image-vinco.ext4;" \
88         "setexpr rootfs_offset ${rootfs_start} / ${mmcblksize};" \
89         "mmc write ${fileaddr} ${rootfs_offset} ${fileblksize}\0" \
90         "bootdelay=0\0"
91
92 #endif
93
94 #endif