blob: 3059bc0ad231eca9a5d62a78162b135470cf7e38 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Frederik Kriewitz99396502009-08-23 12:56:42 +02002/*
3 * (C) Copyright 2006-2008
4 * Texas Instruments.
5 * Richard Woodruff <r-woodruff2@ti.com>
6 * Syed Mohammed Khasim <x0khasim@ti.com>
7 *
8 * (C) Copyright 2009
9 * Frederik Kriewitz <frederik@kriewitz.eu>
10 *
11 * Configuration settings for the DevKit8000 board.
Frederik Kriewitz99396502009-08-23 12:56:42 +020012 */
13
14#ifndef __CONFIG_H
15#define __CONFIG_H
Frederik Kriewitz99396502009-08-23 12:56:42 +020016
17/* High Level Configuration Options */
Marek Vasutaede1882012-07-21 05:02:23 +000018
Simon Schwarz9ec03022011-12-05 23:16:28 +000019/*
20 * 1MB into the SDRAM to allow for SPL's bss at the beginning of SDRAM
21 * 64 bytes before this address should be set aside for u-boot.img's
22 * header. That is 0x800FFFC0--0x80100000 should not be used for any
23 * other needs.
24 */
Thomas Weber1211d142010-10-18 15:38:15 +020025
Anthoine Bourgeoise70198f2015-01-02 00:35:42 +010026#define CONFIG_SPL_BSS_START_ADDR 0x80000500 /* leave space for bootargs*/
27#define CONFIG_SPL_BSS_MAX_SIZE 0x80000
28
29#define CONFIG_SYS_SPL_MALLOC_START 0x80208000
30#define CONFIG_SYS_SPL_MALLOC_SIZE 0x100000 /* 1 MB */
Vaibhav Hiremath558d23d2010-06-07 15:20:34 -040031
Anthoine Bourgeoise70198f2015-01-02 00:35:42 +010032/* Physical Memory Map */
Anthoine Bourgeoise70198f2015-01-02 00:35:42 +010033
Anthoine Bourgeoiscf84a822015-01-02 00:35:43 +010034#include <configs/ti_omap3_common.h>
Anthoine Bourgeoise70198f2015-01-02 00:35:42 +010035
Frederik Kriewitz99396502009-08-23 12:56:42 +020036/* Hardware drivers */
Frederik Kriewitz99396502009-08-23 12:56:42 +020037/* DM9000 */
Frederik Kriewitz99396502009-08-23 12:56:42 +020038#define CONFIG_NET_RETRY_COUNT 20
39#define CONFIG_DRIVER_DM9000 1
40#define CONFIG_DM9000_BASE 0x2c000000
41#define DM9000_IO CONFIG_DM9000_BASE
42#define DM9000_DATA (CONFIG_DM9000_BASE + 0x400)
43#define CONFIG_DM9000_USE_16BIT 1
44#define CONFIG_DM9000_NO_SROM 1
45#undef CONFIG_DM9000_DEBUG
46
Frederik Kriewitz99396502009-08-23 12:56:42 +020047/* TWL4030 */
Frederik Kriewitz99396502009-08-23 12:56:42 +020048
Frederik Kriewitz99396502009-08-23 12:56:42 +020049/* BOOTP/DHCP options */
Frederik Kriewitz99396502009-08-23 12:56:42 +020050#define CONFIG_BOOTP_NISDOMAIN
Frederik Kriewitz99396502009-08-23 12:56:42 +020051#define CONFIG_BOOTP_BOOTFILESIZE
Frederik Kriewitz99396502009-08-23 12:56:42 +020052#define CONFIG_BOOTP_TIMEOFFSET
53#undef CONFIG_BOOTP_VENDOREX
54
55/* Environment information */
Frederik Kriewitz99396502009-08-23 12:56:42 +020056#define CONFIG_EXTRA_ENV_SETTINGS \
57 "loadaddr=0x82000000\0" \
Thomas Weberf1f72f52011-09-18 22:43:58 +000058 "console=ttyO2,115200n8\0" \
Tom Rinibde8eea2011-09-03 21:52:45 -040059 "mmcdev=0\0" \
Frederik Kriewitz99396502009-08-23 12:56:42 +020060 "vram=12M\0" \
61 "dvimode=1024x768MR-16@60\0" \
62 "defaultdisplay=dvi\0" \
63 "nfsopts=hard,tcp,rsize=65536,wsize=65536\0" \
64 "kernelopts=rw\0" \
65 "commonargs=" \
66 "setenv bootargs console=${console} " \
67 "vram=${vram} " \
68 "omapfb.mode=dvi:${dvimode} " \
69 "omapdss.def_disp=${defaultdisplay}\0" \
70 "mmcargs=" \
71 "run commonargs; " \
72 "setenv bootargs ${bootargs} " \
73 "root=/dev/mmcblk0p2 " \
Andreas Bießmann3b88bcf2012-08-30 23:53:32 +000074 "rootwait " \
Frederik Kriewitz99396502009-08-23 12:56:42 +020075 "${kernelopts}\0" \
76 "nandargs=" \
77 "run commonargs; " \
78 "setenv bootargs ${bootargs} " \
79 "omapfb.mode=dvi:${dvimode} " \
80 "omapdss.def_disp=${defaultdisplay} " \
81 "root=/dev/mtdblock4 " \
82 "rootfstype=jffs2 " \
83 "${kernelopts}\0" \
84 "netargs=" \
85 "run commonargs; " \
86 "setenv bootargs ${bootargs} " \
87 "root=/dev/nfs " \
88 "nfsroot=${serverip}:${rootpath},${nfsopts} " \
89 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off " \
90 "${kernelopts} " \
91 "dnsip1=${dnsip} " \
92 "dnsip2=${dnsip2}\0" \
Tom Rinibde8eea2011-09-03 21:52:45 -040093 "loadbootscript=fatload mmc ${mmcdev} ${loadaddr} boot.scr\0" \
Frederik Kriewitz99396502009-08-23 12:56:42 +020094 "bootscript=echo Running bootscript from mmc ...; " \
95 "source ${loadaddr}\0" \
Tom Rinibde8eea2011-09-03 21:52:45 -040096 "loaduimage=fatload mmc ${mmcdev} ${loadaddr} uImage\0" \
Frederik Kriewitz99396502009-08-23 12:56:42 +020097 "eraseenv=nand unlock 0x260000 0x20000; nand erase 0x260000 0x20000\0" \
98 "mmcboot=echo Booting from mmc ...; " \
99 "run mmcargs; " \
100 "bootm ${loadaddr}\0" \
101 "nandboot=echo Booting from nand ...; " \
102 "run nandargs; " \
103 "nand read ${loadaddr} 280000 400000; " \
104 "bootm ${loadaddr}\0" \
105 "netboot=echo Booting from network ...; " \
106 "dhcp ${loadaddr}; " \
107 "run netargs; " \
108 "bootm ${loadaddr}\0" \
Andrew Bradforde1c7c8a2012-10-01 05:06:52 +0000109 "autoboot=mmc dev ${mmcdev}; if mmc rescan; then " \
Frederik Kriewitz99396502009-08-23 12:56:42 +0200110 "if run loadbootscript; then " \
111 "run bootscript; " \
112 "else " \
113 "if run loaduimage; then " \
114 "run mmcboot; " \
115 "else run nandboot; " \
116 "fi; " \
117 "fi; " \
118 "else run nandboot; fi\0"
119
Frederik Kriewitz99396502009-08-23 12:56:42 +0200120/* Boot Argument Buffer Size */
Frederik Kriewitz99396502009-08-23 12:56:42 +0200121
Simon Schwarz7ae359c2011-09-14 15:32:17 -0400122/* Defines for SPL */
Simon Schwarz7ae359c2011-09-14 15:32:17 -0400123
Simon Schwarz7ae359c2011-09-14 15:32:17 -0400124/* NAND boot config */
Simon Schwarz7ae359c2011-09-14 15:32:17 -0400125#define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9,\
126 10, 11, 12, 13}
127
128#define CONFIG_SYS_NAND_ECCSIZE 512
129#define CONFIG_SYS_NAND_ECCBYTES 3
130
Simon Schwarz7ae359c2011-09-14 15:32:17 -0400131#define CONFIG_SYS_NAND_U_BOOT_SIZE 0x200000
132
Simon Schwarz2128f222012-03-15 04:01:35 +0000133/* SPL OS boot options */
Simon Schwarz2128f222012-03-15 04:01:35 +0000134#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x280000
Tom Rinid8064542013-06-07 14:16:43 -0400135
Anthoine Bourgeoise70198f2015-01-02 00:35:42 +0100136#undef CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR
137#undef CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS
Tom Rinid8064542013-06-07 14:16:43 -0400138#define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0x8 /* address 0x1000 */
139#define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 8 /* 4KB */
140
Anthoine Bourgeoiscf84a822015-01-02 00:35:43 +0100141#undef CONFIG_SYS_SPL_ARGS_ADDR
Simon Schwarz2128f222012-03-15 04:01:35 +0000142#define CONFIG_SYS_SPL_ARGS_ADDR (PHYS_SDRAM_1 + 0x100)
143
Frederik Kriewitz99396502009-08-23 12:56:42 +0200144#endif /* __CONFIG_H */