blob: 7397d3e8b3e723709b7b1e9ebd5fee1a6a95bbd4 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Gregory CLEMENT02b49b52015-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 CLEMENT02b49b52015-12-16 17:01:44 +010010 */
11
12#ifndef __CONFIG_H
13#define __CONFIG_H
14
Gregory CLEMENT02b49b52015-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 CLEMENT02b49b52015-12-16 17:01:44 +010018
19/* serial console */
Wenyou Yangd19b9012017-09-14 11:07:42 +080020#define CONFIG_USART_BASE 0xfc00c000
21#define CONFIG_USART_ID 30
22
23/* Timer */
24#define CONFIG_SYS_TIMER_COUNTER 0xfc06863c
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010025
26/* SDRAM */
Wenyou Yangd19b9012017-09-14 11:07:42 +080027#define CONFIG_SYS_SDRAM_BASE 0x20000000
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010028#define CONFIG_SYS_SDRAM_SIZE 0x4000000
29
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010030#define CONFIG_SYS_INIT_SP_ADDR \
31 (CONFIG_SYS_SDRAM_BASE + 4 * 1024 - GENERATED_GBL_DATA_SIZE)
32
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010033/* SerialFlash */
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010034
35#ifdef CONFIG_CMD_SF
Tom Rinib02a3cc2018-04-07 09:15:50 -040036#define CONFIG_ATMEL_SPI0
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010037#define CONFIG_SPI_FLASH_STMICRO
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010038#endif
39
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010040/* MMC */
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010041
42#ifdef CONFIG_CMD_MMC
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010043#define CONFIG_GENERIC_ATMEL_MCI
Wenyou Yangd19b9012017-09-14 11:07:42 +080044#define ATMEL_BASE_MMCI 0xfc000000
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010045#define CONFIG_SYS_MMC_CLK_OD 500000
46
47/* For generating MMC partitions */
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010048
49#endif
50
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010051/* USB device */
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010052
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010053/* Ethernet Hardware */
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010054#define CONFIG_MACB
55#define CONFIG_RMII
56#define CONFIG_NET_RETRY_COUNT 20
57#define CONFIG_MACB_SEARCH_PHY
58
Wenyou Yange035ea72017-09-14 11:07:44 +080059#ifdef CONFIG_SPI_BOOT
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010060/* bootstrap + u-boot + env + linux in serial flash */
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010061/* Use our own mapping for the VInCo platform */
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010062
63/* Update the bootcommand according to our mapping for the VInCo platform */
64#undef CONFIG_BOOTCOMMAND
65#define CONFIG_BOOTCOMMAND "mmc dev 0 0;" \
66 "mmc read ${loadaddr} ${k_offset} ${k_blksize};" \
67 "mmc read ${oftaddr} ${dtb_offset} ${dtb_blksize};" \
68 "bootz ${loadaddr} - ${oftaddr}"
69
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010070#define CONFIG_EXTRA_ENV_SETTINGS \
71 "kernel_start=0x20000\0" \
72 "kernel_size=0x800000\0" \
73 "mmcblksize=0x200\0" \
74 "oftaddr=0x21000000\0" \
75 "loadaddr=0x22000000\0" \
76 "update_uboot=tftp ${loadaddr} u-boot.bin;sf probe 0;" \
77 "sf erase 0x20000 0x4B000; sf write ${loadaddr} 0x20000 0x4B000\0" \
78 "create_partition=setexpr dtb_start ${kernel_start} + 0x400000;" \
79 "setexpr rootfs_start ${kernel_start} + ${kernel_size};" \
80 "setenv partitions 'name=kernel,size=${kernel_size}," \
81 "start=${kernel_start};name=rootfs,size=-';" \
82 "gpt write mmc 0 ${partitions} \0"\
83 "f2blk_size=setexpr fileblksize ${filesize} / ${mmcblksize};" \
84 "setexpr fileblksize ${fileblksize} + 1\0" \
85 "store_kernel=tftp ${loadaddr} zImage; run f2blk_size;" \
86 "setexpr k_blksize ${fileblksize};" \
87 "setexpr k_offset ${kernel_start} / ${mmcblksize};" \
88 "mmc write ${fileaddr} ${k_offset} ${fileblksize}\0" \
89 "store_dtb=tftp ${loadaddr} at91-vinco.dtb; run f2blk_size;" \
90 "setexpr dtb_blksize ${fileblksize};" \
91 "setexpr dtb_offset ${dtb_start} / ${mmcblksize};" \
92 "mmc write ${fileaddr} ${dtb_offset} ${fileblksize}\0" \
93 "store_rootfs=tftp ${loadaddr} vinco-gateway-image-vinco.ext4;" \
94 "setexpr rootfs_offset ${rootfs_start} / ${mmcblksize};" \
95 "mmc write ${fileaddr} ${rootfs_offset} ${fileblksize}\0" \
96 "bootdelay=0\0"
97
98#endif
Gregory CLEMENT02b49b52015-12-16 17:01:44 +010099
100#endif