blob: a709502d43735724a4dcebfdf157b0ccb6410bbc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +01002/*
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
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010010 */
11
12#ifndef __CONFIG_H
13#define __CONFIG_H
14
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010015#include "at91-sama5_common.h"
16
17/* The value in the common file is too far away for the VInCo platform */
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010018
19/* serial console */
20#define CONFIG_ATMEL_USART
Wenyou Yange61ed482017-09-14 11:07:42 +080021#define CONFIG_USART_BASE 0xfc00c000
22#define CONFIG_USART_ID 30
23
24/* Timer */
25#define CONFIG_SYS_TIMER_COUNTER 0xfc06863c
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010026
27/* SDRAM */
Wenyou Yange61ed482017-09-14 11:07:42 +080028#define CONFIG_SYS_SDRAM_BASE 0x20000000
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010029#define CONFIG_SYS_SDRAM_SIZE 0x4000000
30
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010031#define CONFIG_SYS_INIT_SP_ADDR \
32 (CONFIG_SYS_SDRAM_BASE + 4 * 1024 - GENERATED_GBL_DATA_SIZE)
33
34#define CONFIG_SYS_LOAD_ADDR 0x22000000 /* load address */
35
36/* SerialFlash */
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010037
38#ifdef CONFIG_CMD_SF
Tom Rinie80fa2c2018-04-07 09:15:50 -040039#define CONFIG_ATMEL_SPI0
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010040#define CONFIG_SPI_FLASH_STMICRO
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010041#endif
42
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010043/* MMC */
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010044
45#ifdef CONFIG_CMD_MMC
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010046#define CONFIG_GENERIC_ATMEL_MCI
Wenyou Yange61ed482017-09-14 11:07:42 +080047#define ATMEL_BASE_MMCI 0xfc000000
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010048#define CONFIG_SYS_MMC_CLK_OD 500000
49
50/* For generating MMC partitions */
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010051
52#endif
53
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010054/* USB device */
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010055
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010056/* Ethernet Hardware */
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010057#define CONFIG_PHY_SMSC
58#define CONFIG_MACB
59#define CONFIG_RMII
60#define CONFIG_NET_RETRY_COUNT 20
61#define CONFIG_MACB_SEARCH_PHY
62
Wenyou Yang55415432017-09-14 11:07:44 +080063#ifdef CONFIG_SPI_BOOT
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010064/* bootstrap + u-boot + env + linux in serial flash */
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010065/* Use our own mapping for the VInCo platform */
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010066
67/* Update the bootcommand according to our mapping for the VInCo platform */
68#undef CONFIG_BOOTCOMMAND
69#define CONFIG_BOOTCOMMAND "mmc dev 0 0;" \
70 "mmc read ${loadaddr} ${k_offset} ${k_blksize};" \
71 "mmc read ${oftaddr} ${dtb_offset} ${dtb_blksize};" \
72 "bootz ${loadaddr} - ${oftaddr}"
73
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +010074#define CONFIG_EXTRA_ENV_SETTINGS \
75 "kernel_start=0x20000\0" \
76 "kernel_size=0x800000\0" \
77 "mmcblksize=0x200\0" \
78 "oftaddr=0x21000000\0" \
79 "loadaddr=0x22000000\0" \
80 "update_uboot=tftp ${loadaddr} u-boot.bin;sf probe 0;" \
81 "sf erase 0x20000 0x4B000; sf write ${loadaddr} 0x20000 0x4B000\0" \
82 "create_partition=setexpr dtb_start ${kernel_start} + 0x400000;" \
83 "setexpr rootfs_start ${kernel_start} + ${kernel_size};" \
84 "setenv partitions 'name=kernel,size=${kernel_size}," \
85 "start=${kernel_start};name=rootfs,size=-';" \
86 "gpt write mmc 0 ${partitions} \0"\
87 "f2blk_size=setexpr fileblksize ${filesize} / ${mmcblksize};" \
88 "setexpr fileblksize ${fileblksize} + 1\0" \
89 "store_kernel=tftp ${loadaddr} zImage; run f2blk_size;" \
90 "setexpr k_blksize ${fileblksize};" \
91 "setexpr k_offset ${kernel_start} / ${mmcblksize};" \
92 "mmc write ${fileaddr} ${k_offset} ${fileblksize}\0" \
93 "store_dtb=tftp ${loadaddr} at91-vinco.dtb; run f2blk_size;" \
94 "setexpr dtb_blksize ${fileblksize};" \
95 "setexpr dtb_offset ${dtb_start} / ${mmcblksize};" \
96 "mmc write ${fileaddr} ${dtb_offset} ${fileblksize}\0" \
97 "store_rootfs=tftp ${loadaddr} vinco-gateway-image-vinco.ext4;" \
98 "setexpr rootfs_offset ${rootfs_start} / ${mmcblksize};" \
99 "mmc write ${fileaddr} ${rootfs_offset} ${fileblksize}\0" \
100 "bootdelay=0\0"
101
102#endif
Gregory CLEMENT522e4fb2015-12-16 17:01:44 +0100103
104#endif