blob: ca96683a3a6c7eec1d2a0ee7dd6ec5dd346f8dc6 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
David Lechner2ac07f72016-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 Lechner2ac07f72016-02-26 00:46:07 -060012 */
13
14#ifndef __CONFIG_H
15#define __CONFIG_H
16
17/*
18 * SoC Configuration
19 */
David Lechner2ac07f72016-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 Lechner18517ab2019-05-29 10:01:59 +020025#define CONFIG_SKIP_LOWLEVEL_INIT
David Lechner2ac07f72016-02-26 00:46:07 -060026
David Lechner2ac07f72016-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 */
David Lechner2ac07f72016-02-26 00:46:07 -060036
37/* memtest will be run on 16MB */
David Lechner2ac07f72016-02-26 00:46:07 -060038
David Lechner2ac07f72016-02-26 00:46:07 -060039/*
40 * Serial Driver info
41 */
42#define CONFIG_SYS_NS16550_SERIAL
David Lechner2ac07f72016-02-26 00:46:07 -060043#define CONFIG_SYS_NS16550_CLK clk_get(DAVINCI_UART2_CLKID)
David Lechner2ac07f72016-02-26 00:46:07 -060044
David Lechner2ac07f72016-02-26 00:46:07 -060045#define CONFIG_SYS_SPI_CLK clk_get(DAVINCI_SPI0_CLKID)
David Lechner2ac07f72016-02-26 00:46:07 -060046
47/*
48 * I2C Configuration
49 */
50#define CONFIG_SYS_I2C
David Lechner2ac07f72016-02-26 00:46:07 -060051#define CONFIG_SYS_DAVINCI_I2C_SPEED 400000
52#define CONFIG_SYS_DAVINCI_I2C_SLAVE 10 /* Bogus, master-only in U-Boot */
53
54/*
55 * U-Boot general configuration
56 */
David Lechner2ac07f72016-02-26 00:46:07 -060057#define CONFIG_BOOTFILE "uImage" /* Boot file name */
58#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
David Lechner2ac07f72016-02-26 00:46:07 -060059#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Args Buffer Size */
60#define CONFIG_SYS_LOAD_ADDR (PHYS_SDRAM_1 + 0x700000)
David Lechner2ac07f72016-02-26 00:46:07 -060061
62/*
63 * Linux Information
64 */
65#define LINUX_BOOT_PARAM_ADDR (PHYS_SDRAM_1 + 0x100)
66#define CONFIG_HWCONFIG /* enable hwconfig */
67#define CONFIG_CMDLINE_TAG
David Lechner2ac07f72016-02-26 00:46:07 -060068#define CONFIG_SETUP_MEMORY_TAGS
69#define CONFIG_SETUP_INITRD_TAG
David Lechner2ac07f72016-02-26 00:46:07 -060070#define CONFIG_BOOTCOMMAND \
71 "if mmc rescan; then " \
72 "if run loadbootscr; then " \
73 "run bootscript; " \
74 "else " \
David Lechnerf203a472018-05-19 23:25:07 -050075 "if run loadbootenv; then " \
76 "echo Loaded env from ${bootenvfile};" \
77 "run importbootenv;" \
78 "fi;" \
79 "if test -n $uenvcmd; then " \
80 "echo Running uenvcmd...;" \
81 "run uenvcmd;" \
82 "fi;" \
David Lechner2ac07f72016-02-26 00:46:07 -060083 "if run loadimage; then " \
84 "run mmcargs; " \
David Lechnerf203a472018-05-19 23:25:07 -050085 "if run loadfdt; then " \
86 "echo Using ${fdtfile}...;" \
87 "run fdtfixup; " \
88 "run fdtboot; "\
89 "fi; " \
David Lechner2ac07f72016-02-26 00:46:07 -060090 "run mmcboot; " \
David Lechner2ac07f72016-02-26 00:46:07 -060091 "fi; " \
92 "fi; " \
David Lechnerf203a472018-05-19 23:25:07 -050093 "fi; "\
94 "run flashargs; " \
95 "run flashboot"
David Lechner2ac07f72016-02-26 00:46:07 -060096#define CONFIG_EXTRA_ENV_SETTINGS \
David Lechnerf203a472018-05-19 23:25:07 -050097 "bootenvfile=uEnv.txt\0" \
98 "fdtfile=da850-lego-ev3.dtb\0" \
David Lechner2ac07f72016-02-26 00:46:07 -060099 "memsize=64M\0" \
100 "filesyssize=10M\0" \
101 "verify=n\0" \
102 "console=ttyS1,115200n8\0" \
103 "bootscraddr=0xC0600000\0" \
David Lechnerf203a472018-05-19 23:25:07 -0500104 "fdtaddr=0xC0600000\0" \
David Lechner2ac07f72016-02-26 00:46:07 -0600105 "loadaddr=0xC0007FC0\0" \
106 "filesysaddr=0xC1180000\0" \
107 "fwupdateboot=mw 0xFFFF1FFC 0x5555AAAA; reset\0" \
David Lechnerf203a472018-05-19 23:25:07 -0500108 "importbootenv=echo Importing environment...; " \
109 "env import -t ${loadaddr} ${filesize}\0" \
110 "loadbootenv=fatload mmc 0 ${loadaddr} ${bootenvfile}\0" \
111 "mmcargs=setenv bootargs console=${console} root=/dev/mmcblk0p2 rw " \
112 "rootwait ${optargs}\0" \
David Lechner2ac07f72016-02-26 00:46:07 -0600113 "mmcboot=bootm ${loadaddr}\0" \
David Lechnerf203a472018-05-19 23:25:07 -0500114 "flashargs=setenv bootargs initrd=${filesysaddr},${filesyssize} " \
115 "root=/dev/ram0 rw rootfstype=squashfs console=${console} " \
116 "${optargs}\0" \
117 "flashboot=sf probe 0; " \
118 "sf read ${fdtaddr} 0x40000 0x10000; " \
119 "sf read ${loadaddr} 0x50000 0x400000; " \
120 "sf read ${filesysaddr} 0x450000 0xA00000; " \
121 "run fdtfixup; " \
122 "run fdtboot\0" \
David Lechner2ac07f72016-02-26 00:46:07 -0600123 "loadimage=fatload mmc 0 ${loadaddr} uImage\0" \
David Lechnerf203a472018-05-19 23:25:07 -0500124 "loadfdt=fatload mmc 0 ${fdtaddr} ${fdtfile}\0" \
125 "fdtfixup=fdt addr ${fdtaddr}; fdt resize; fdt chosen\0" \
126 "fdtboot=bootm ${loadaddr} - ${fdtaddr}\0" \
David Lechner2ac07f72016-02-26 00:46:07 -0600127 "loadbootscr=fatload mmc 0 ${bootscraddr} boot.scr\0" \
David Lechnerf203a472018-05-19 23:25:07 -0500128 "bootscript=source ${bootscraddr}\0"
David Lechner2ac07f72016-02-26 00:46:07 -0600129
David Lechner2ac07f72016-02-26 00:46:07 -0600130#ifdef CONFIG_CMD_BDI
131#define CONFIG_CLOCKS
132#endif
133
David Lechner2ac07f72016-02-26 00:46:07 -0600134/* additions for new relocation code, must added to all boards */
135#define CONFIG_SYS_SDRAM_BASE 0xc0000000
136
137#define CONFIG_SYS_INIT_SP_ADDR 0x80010000
138
Simon Glass89f5eaa2017-05-17 08:23:09 -0600139#include <asm/arch/hardware.h>
140
David Lechner2ac07f72016-02-26 00:46:07 -0600141#endif /* __CONFIG_H */