xref: /openbmc/u-boot/include/configs/vinco.h (revision b254c529)
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 #include "at91-sama5_common.h"
17 
18 /* The value in the common file is too far away for the VInCo platform */
19 
20 /* serial console */
21 #define CONFIG_ATMEL_USART
22 #define CONFIG_USART_BASE		0xfc00c000
23 #define CONFIG_USART_ID			30
24 
25 /* Timer */
26 #define CONFIG_SYS_TIMER_COUNTER	0xfc06863c
27 
28 /* SDRAM */
29 #define CONFIG_NR_DRAM_BANKS		1
30 #define CONFIG_SYS_SDRAM_BASE           0x20000000
31 #define CONFIG_SYS_SDRAM_SIZE		0x4000000
32 
33 #define CONFIG_SYS_INIT_SP_ADDR \
34 	(CONFIG_SYS_SDRAM_BASE + 4 * 1024 - GENERATED_GBL_DATA_SIZE)
35 
36 #define CONFIG_SYS_LOAD_ADDR		0x22000000 /* load address */
37 
38 /* SerialFlash */
39 
40 #ifdef CONFIG_CMD_SF
41 #define CONFIG_ATMEL_SPI
42 #define CONFIG_ATMEL_SPI0
43 #define CONFIG_SPI_FLASH_STMICRO
44 #define CONFIG_SF_DEFAULT_BUS		0
45 #define CONFIG_SF_DEFAULT_CS		0
46 #define CONFIG_SF_DEFAULT_SPEED		50000000
47 #define CONFIG_ENV_SPI_MAX_HZ		50000000
48 #define CONFIG_SF_DEFAULT_MODE		(SPI_MODE_0)
49 #define CONFIG_ENV_SPI_MODE		(SPI_MODE_0)
50 #endif
51 
52 /* MMC */
53 
54 #ifdef CONFIG_CMD_MMC
55 #define CONFIG_SUPPORT_EMMC_BOOT
56 #define CONFIG_GENERIC_ATMEL_MCI
57 #define ATMEL_BASE_MMCI			0xfc000000
58 #define CONFIG_SYS_MMC_CLK_OD		500000
59 
60 /* For generating MMC partitions */
61 
62 #endif
63 
64 /* USB device */
65 
66 /* Ethernet Hardware */
67 #define CONFIG_PHY_SMSC
68 #define CONFIG_MACB
69 #define CONFIG_RMII
70 #define CONFIG_NET_RETRY_COUNT		20
71 #define CONFIG_MACB_SEARCH_PHY
72 
73 #ifdef CONFIG_SPI_BOOT
74 /* bootstrap + u-boot + env + linux in serial flash */
75 #define CONFIG_ENV_SPI_BUS	CONFIG_SF_DEFAULT_BUS
76 #define CONFIG_ENV_SPI_CS	CONFIG_SF_DEFAULT_CS
77 /* Use our own mapping for the VInCo platform */
78 #undef CONFIG_ENV_OFFSET
79 #undef CONFIG_ENV_SIZE
80 
81 #define CONFIG_ENV_OFFSET       0x10000
82 #define CONFIG_ENV_SIZE         0x10000
83 
84 /* Update the bootcommand according to our mapping for the VInCo platform */
85 #undef CONFIG_BOOTCOMMAND
86 #define CONFIG_BOOTCOMMAND  "mmc dev 0 0;" \
87 			    "mmc read ${loadaddr} ${k_offset} ${k_blksize};" \
88 			    "mmc read ${oftaddr} ${dtb_offset} ${dtb_blksize};" \
89 			    "bootz ${loadaddr} -  ${oftaddr}"
90 
91 #define CONFIG_EXTRA_ENV_SETTINGS \
92 	"kernel_start=0x20000\0" \
93 	"kernel_size=0x800000\0" \
94 	"mmcblksize=0x200\0" \
95 	"oftaddr=0x21000000\0" \
96 	"loadaddr=0x22000000\0" \
97 	"update_uboot=tftp ${loadaddr} u-boot.bin;sf probe 0;" \
98 	"sf erase 0x20000 0x4B000; sf write ${loadaddr} 0x20000 0x4B000\0" \
99 	"create_partition=setexpr dtb_start ${kernel_start} + 0x400000;" \
100 	"setexpr rootfs_start ${kernel_start} + ${kernel_size};" \
101 	"setenv partitions 'name=kernel,size=${kernel_size}," \
102 	"start=${kernel_start};name=rootfs,size=-';" \
103 	"gpt write mmc 0 ${partitions} \0"\
104 	"f2blk_size=setexpr fileblksize ${filesize} / ${mmcblksize};" \
105 	"setexpr fileblksize ${fileblksize} + 1\0" \
106 	"store_kernel=tftp ${loadaddr} zImage; run f2blk_size;" \
107 	"setexpr k_blksize ${fileblksize};" \
108 	"setexpr k_offset ${kernel_start} / ${mmcblksize};" \
109 	"mmc write ${fileaddr} ${k_offset} ${fileblksize}\0" \
110 	"store_dtb=tftp ${loadaddr} at91-vinco.dtb; run f2blk_size;" \
111 	"setexpr dtb_blksize ${fileblksize};" \
112 	"setexpr dtb_offset ${dtb_start} / ${mmcblksize};" \
113 	"mmc write ${fileaddr} ${dtb_offset} ${fileblksize}\0" \
114 	"store_rootfs=tftp ${loadaddr} vinco-gateway-image-vinco.ext4;" \
115 	"setexpr rootfs_offset ${rootfs_start} / ${mmcblksize};" \
116 	"mmc write ${fileaddr} ${rootfs_offset} ${fileblksize}\0" \
117 	"bootdelay=0\0"
118 
119 #endif
120 
121 #endif
122