blob: 9565f7c2226633f57eac438ad91912195a74f094 [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 Lechnera67f16f2016-02-26 00:46:07 -060025
David Lechnera67f16f2016-02-26 00:46:07 -060026/*
27 * Memory Info
28 */
David Lechnera67f16f2016-02-26 00:46:07 -060029#define PHYS_SDRAM_1 DAVINCI_DDR_EMIF_DATA_BASE /* DDR Start */
30#define PHYS_SDRAM_1_SIZE (64 << 20) /* SDRAM size 64MB */
31#define CONFIG_MAX_RAM_BANK_SIZE (512 << 20) /* max size from SPRS586*/
32
33/* memtest start addr */
David Lechnera67f16f2016-02-26 00:46:07 -060034
35/* memtest will be run on 16MB */
David Lechnera67f16f2016-02-26 00:46:07 -060036
David Lechnera67f16f2016-02-26 00:46:07 -060037/*
38 * Serial Driver info
39 */
40#define CONFIG_SYS_NS16550_SERIAL
David Lechnera67f16f2016-02-26 00:46:07 -060041#define CONFIG_SYS_NS16550_CLK clk_get(DAVINCI_UART2_CLKID)
David Lechnera67f16f2016-02-26 00:46:07 -060042
David Lechnera67f16f2016-02-26 00:46:07 -060043#define CONFIG_SYS_SPI_CLK clk_get(DAVINCI_SPI0_CLKID)
David Lechnera67f16f2016-02-26 00:46:07 -060044
45/*
46 * I2C Configuration
47 */
David Lechnera67f16f2016-02-26 00:46:07 -060048#define CONFIG_SYS_DAVINCI_I2C_SPEED 400000
49#define CONFIG_SYS_DAVINCI_I2C_SLAVE 10 /* Bogus, master-only in U-Boot */
50
51/*
52 * U-Boot general configuration
53 */
David Lechnera67f16f2016-02-26 00:46:07 -060054#define CONFIG_BOOTFILE "uImage" /* Boot file name */
55#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
David Lechnera67f16f2016-02-26 00:46:07 -060056#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Args Buffer Size */
David Lechnera67f16f2016-02-26 00:46:07 -060057
58/*
59 * Linux Information
60 */
61#define LINUX_BOOT_PARAM_ADDR (PHYS_SDRAM_1 + 0x100)
62#define CONFIG_HWCONFIG /* enable hwconfig */
63#define CONFIG_CMDLINE_TAG
David Lechnera67f16f2016-02-26 00:46:07 -060064#define CONFIG_SETUP_MEMORY_TAGS
65#define CONFIG_SETUP_INITRD_TAG
David Lechnera67f16f2016-02-26 00:46:07 -060066#define CONFIG_BOOTCOMMAND \
67 "if mmc rescan; then " \
68 "if run loadbootscr; then " \
69 "run bootscript; " \
70 "else " \
David Lechner34530772018-05-19 23:25:07 -050071 "if run loadbootenv; then " \
72 "echo Loaded env from ${bootenvfile};" \
73 "run importbootenv;" \
74 "fi;" \
75 "if test -n $uenvcmd; then " \
76 "echo Running uenvcmd...;" \
77 "run uenvcmd;" \
78 "fi;" \
David Lechnera67f16f2016-02-26 00:46:07 -060079 "if run loadimage; then " \
80 "run mmcargs; " \
David Lechner34530772018-05-19 23:25:07 -050081 "if run loadfdt; then " \
82 "echo Using ${fdtfile}...;" \
83 "run fdtfixup; " \
84 "run fdtboot; "\
85 "fi; " \
David Lechnera67f16f2016-02-26 00:46:07 -060086 "run mmcboot; " \
David Lechnera67f16f2016-02-26 00:46:07 -060087 "fi; " \
88 "fi; " \
David Lechner34530772018-05-19 23:25:07 -050089 "fi; "\
90 "run flashargs; " \
91 "run flashboot"
David Lechnera67f16f2016-02-26 00:46:07 -060092#define CONFIG_EXTRA_ENV_SETTINGS \
David Lechner34530772018-05-19 23:25:07 -050093 "bootenvfile=uEnv.txt\0" \
94 "fdtfile=da850-lego-ev3.dtb\0" \
David Lechnera67f16f2016-02-26 00:46:07 -060095 "memsize=64M\0" \
96 "filesyssize=10M\0" \
97 "verify=n\0" \
98 "console=ttyS1,115200n8\0" \
99 "bootscraddr=0xC0600000\0" \
David Lechner34530772018-05-19 23:25:07 -0500100 "fdtaddr=0xC0600000\0" \
David Lechnera67f16f2016-02-26 00:46:07 -0600101 "loadaddr=0xC0007FC0\0" \
102 "filesysaddr=0xC1180000\0" \
103 "fwupdateboot=mw 0xFFFF1FFC 0x5555AAAA; reset\0" \
David Lechner34530772018-05-19 23:25:07 -0500104 "importbootenv=echo Importing environment...; " \
105 "env import -t ${loadaddr} ${filesize}\0" \
106 "loadbootenv=fatload mmc 0 ${loadaddr} ${bootenvfile}\0" \
107 "mmcargs=setenv bootargs console=${console} root=/dev/mmcblk0p2 rw " \
108 "rootwait ${optargs}\0" \
David Lechnera67f16f2016-02-26 00:46:07 -0600109 "mmcboot=bootm ${loadaddr}\0" \
David Lechner34530772018-05-19 23:25:07 -0500110 "flashargs=setenv bootargs initrd=${filesysaddr},${filesyssize} " \
111 "root=/dev/ram0 rw rootfstype=squashfs console=${console} " \
112 "${optargs}\0" \
113 "flashboot=sf probe 0; " \
114 "sf read ${fdtaddr} 0x40000 0x10000; " \
115 "sf read ${loadaddr} 0x50000 0x400000; " \
116 "sf read ${filesysaddr} 0x450000 0xA00000; " \
117 "run fdtfixup; " \
118 "run fdtboot\0" \
David Lechnera67f16f2016-02-26 00:46:07 -0600119 "loadimage=fatload mmc 0 ${loadaddr} uImage\0" \
David Lechner34530772018-05-19 23:25:07 -0500120 "loadfdt=fatload mmc 0 ${fdtaddr} ${fdtfile}\0" \
121 "fdtfixup=fdt addr ${fdtaddr}; fdt resize; fdt chosen\0" \
122 "fdtboot=bootm ${loadaddr} - ${fdtaddr}\0" \
David Lechnera67f16f2016-02-26 00:46:07 -0600123 "loadbootscr=fatload mmc 0 ${bootscraddr} boot.scr\0" \
David Lechner34530772018-05-19 23:25:07 -0500124 "bootscript=source ${bootscraddr}\0"
David Lechnera67f16f2016-02-26 00:46:07 -0600125
David Lechnera67f16f2016-02-26 00:46:07 -0600126#ifdef CONFIG_CMD_BDI
127#define CONFIG_CLOCKS
128#endif
129
David Lechnera67f16f2016-02-26 00:46:07 -0600130/* additions for new relocation code, must added to all boards */
131#define CONFIG_SYS_SDRAM_BASE 0xc0000000
132
133#define CONFIG_SYS_INIT_SP_ADDR 0x80010000
134
Simon Glassce3574f2017-05-17 08:23:09 -0600135#include <asm/arch/hardware.h>
136
David Lechnera67f16f2016-02-26 00:46:07 -0600137#endif /* __CONFIG_H */