blob: 36ca3b201edf0dbcf6144aab462f82d0d9922deb [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
David Lechnera67f16f2016-02-26 00:46:07 -06002/*
3 * Copyright (C) 2016 David Lechner <david@lechnology.com>
4 *
5 * Based on da850evm.h
6 *
7 * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
8 *
9 * Based on davinci_dvevm.h. Original Copyrights follow:
10 *
11 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
David Lechnera67f16f2016-02-26 00:46:07 -060012 */
13
14#ifndef __CONFIG_H
15#define __CONFIG_H
16
17/*
18 * SoC Configuration
19 */
David Lechnera67f16f2016-02-26 00:46:07 -060020#define CONFIG_SYS_EXCEPTION_VECTORS_HIGH
21#define CONFIG_SYS_CLK_FREQ clk_get(DAVINCI_ARM_CLKID)
22#define CONFIG_SYS_OSCIN_FREQ 24000000
23#define CONFIG_SYS_TIMERBASE DAVINCI_TIMER0_BASE
24#define CONFIG_SYS_HZ_CLOCK clk_get(DAVINCI_AUXCLK_CLKID)
David Lechner79ddd412019-05-29 10:01:59 +020025#define CONFIG_SKIP_LOWLEVEL_INIT
David Lechnera67f16f2016-02-26 00:46:07 -060026
David Lechnera67f16f2016-02-26 00:46:07 -060027/*
28 * Memory Info
29 */
30#define CONFIG_SYS_MALLOC_LEN (0x10000 + 1*1024*1024) /* malloc() len */
31#define PHYS_SDRAM_1 DAVINCI_DDR_EMIF_DATA_BASE /* DDR Start */
32#define PHYS_SDRAM_1_SIZE (64 << 20) /* SDRAM size 64MB */
33#define CONFIG_MAX_RAM_BANK_SIZE (512 << 20) /* max size from SPRS586*/
34
35/* memtest start addr */
36#define CONFIG_SYS_MEMTEST_START (PHYS_SDRAM_1 + 0x2000000)
37
38/* memtest will be run on 16MB */
39#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1 + 0x2000000 + 16*1024*1024)
40
David Lechnera67f16f2016-02-26 00:46:07 -060041/*
42 * Serial Driver info
43 */
44#define CONFIG_SYS_NS16550_SERIAL
45#define CONFIG_SYS_NS16550_REG_SIZE -4 /* NS16550 register size */
46#define CONFIG_SYS_NS16550_COM1 DAVINCI_UART1_BASE /* Base address of UART1 */
47#define CONFIG_SYS_NS16550_CLK clk_get(DAVINCI_UART2_CLKID)
David Lechnera67f16f2016-02-26 00:46:07 -060048
David Lechnera67f16f2016-02-26 00:46:07 -060049#define CONFIG_SYS_SPI_BASE DAVINCI_SPI0_BASE
50#define CONFIG_SYS_SPI_CLK clk_get(DAVINCI_SPI0_CLKID)
David Lechnera67f16f2016-02-26 00:46:07 -060051
52/*
53 * I2C Configuration
54 */
55#define CONFIG_SYS_I2C
David Lechnera67f16f2016-02-26 00:46:07 -060056#define CONFIG_SYS_DAVINCI_I2C_SPEED 400000
57#define CONFIG_SYS_DAVINCI_I2C_SLAVE 10 /* Bogus, master-only in U-Boot */
58
59/*
60 * U-Boot general configuration
61 */
David Lechnera67f16f2016-02-26 00:46:07 -060062#define CONFIG_BOOTFILE "uImage" /* Boot file name */
63#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
David Lechnera67f16f2016-02-26 00:46:07 -060064#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Args Buffer Size */
65#define CONFIG_SYS_LOAD_ADDR (PHYS_SDRAM_1 + 0x700000)
David Lechnera67f16f2016-02-26 00:46:07 -060066#define CONFIG_MX_CYCLIC
David Lechnera67f16f2016-02-26 00:46:07 -060067
68/*
69 * Linux Information
70 */
71#define LINUX_BOOT_PARAM_ADDR (PHYS_SDRAM_1 + 0x100)
72#define CONFIG_HWCONFIG /* enable hwconfig */
73#define CONFIG_CMDLINE_TAG
74#define CONFIG_REVISION_TAG
75#define CONFIG_SERIAL_TAG
76#define CONFIG_SETUP_MEMORY_TAGS
77#define CONFIG_SETUP_INITRD_TAG
David Lechnera67f16f2016-02-26 00:46:07 -060078#define CONFIG_BOOTCOMMAND \
79 "if mmc rescan; then " \
80 "if run loadbootscr; then " \
81 "run bootscript; " \
82 "else " \
David Lechner34530772018-05-19 23:25:07 -050083 "if run loadbootenv; then " \
84 "echo Loaded env from ${bootenvfile};" \
85 "run importbootenv;" \
86 "fi;" \
87 "if test -n $uenvcmd; then " \
88 "echo Running uenvcmd...;" \
89 "run uenvcmd;" \
90 "fi;" \
David Lechnera67f16f2016-02-26 00:46:07 -060091 "if run loadimage; then " \
92 "run mmcargs; " \
David Lechner34530772018-05-19 23:25:07 -050093 "if run loadfdt; then " \
94 "echo Using ${fdtfile}...;" \
95 "run fdtfixup; " \
96 "run fdtboot; "\
97 "fi; " \
David Lechnera67f16f2016-02-26 00:46:07 -060098 "run mmcboot; " \
David Lechnera67f16f2016-02-26 00:46:07 -060099 "fi; " \
100 "fi; " \
David Lechner34530772018-05-19 23:25:07 -0500101 "fi; "\
102 "run flashargs; " \
103 "run flashboot"
David Lechnera67f16f2016-02-26 00:46:07 -0600104#define CONFIG_EXTRA_ENV_SETTINGS \
David Lechner34530772018-05-19 23:25:07 -0500105 "bootenvfile=uEnv.txt\0" \
106 "fdtfile=da850-lego-ev3.dtb\0" \
David Lechnera67f16f2016-02-26 00:46:07 -0600107 "memsize=64M\0" \
108 "filesyssize=10M\0" \
109 "verify=n\0" \
110 "console=ttyS1,115200n8\0" \
111 "bootscraddr=0xC0600000\0" \
David Lechner34530772018-05-19 23:25:07 -0500112 "fdtaddr=0xC0600000\0" \
David Lechnera67f16f2016-02-26 00:46:07 -0600113 "loadaddr=0xC0007FC0\0" \
114 "filesysaddr=0xC1180000\0" \
115 "fwupdateboot=mw 0xFFFF1FFC 0x5555AAAA; reset\0" \
David Lechner34530772018-05-19 23:25:07 -0500116 "importbootenv=echo Importing environment...; " \
117 "env import -t ${loadaddr} ${filesize}\0" \
118 "loadbootenv=fatload mmc 0 ${loadaddr} ${bootenvfile}\0" \
119 "mmcargs=setenv bootargs console=${console} root=/dev/mmcblk0p2 rw " \
120 "rootwait ${optargs}\0" \
David Lechnera67f16f2016-02-26 00:46:07 -0600121 "mmcboot=bootm ${loadaddr}\0" \
David Lechner34530772018-05-19 23:25:07 -0500122 "flashargs=setenv bootargs initrd=${filesysaddr},${filesyssize} " \
123 "root=/dev/ram0 rw rootfstype=squashfs console=${console} " \
124 "${optargs}\0" \
125 "flashboot=sf probe 0; " \
126 "sf read ${fdtaddr} 0x40000 0x10000; " \
127 "sf read ${loadaddr} 0x50000 0x400000; " \
128 "sf read ${filesysaddr} 0x450000 0xA00000; " \
129 "run fdtfixup; " \
130 "run fdtboot\0" \
David Lechnera67f16f2016-02-26 00:46:07 -0600131 "loadimage=fatload mmc 0 ${loadaddr} uImage\0" \
David Lechner34530772018-05-19 23:25:07 -0500132 "loadfdt=fatload mmc 0 ${fdtaddr} ${fdtfile}\0" \
133 "fdtfixup=fdt addr ${fdtaddr}; fdt resize; fdt chosen\0" \
134 "fdtboot=bootm ${loadaddr} - ${fdtaddr}\0" \
David Lechnera67f16f2016-02-26 00:46:07 -0600135 "loadbootscr=fatload mmc 0 ${bootscraddr} boot.scr\0" \
David Lechner34530772018-05-19 23:25:07 -0500136 "bootscript=source ${bootscraddr}\0"
David Lechnera67f16f2016-02-26 00:46:07 -0600137
David Lechnera67f16f2016-02-26 00:46:07 -0600138#ifdef CONFIG_CMD_BDI
139#define CONFIG_CLOCKS
140#endif
141
David Lechnera67f16f2016-02-26 00:46:07 -0600142#define CONFIG_ENV_SIZE (16 << 10)
143
David Lechnera67f16f2016-02-26 00:46:07 -0600144/* additions for new relocation code, must added to all boards */
145#define CONFIG_SYS_SDRAM_BASE 0xc0000000
146
147#define CONFIG_SYS_INIT_SP_ADDR 0x80010000
148
Simon Glassce3574f2017-05-17 08:23:09 -0600149#include <asm/arch/hardware.h>
150
David Lechnera67f16f2016-02-26 00:46:07 -0600151#endif /* __CONFIG_H */