blob: 80194d824c19d2e49d6ad1cc35d178eb8bd884e0 [file] [log] [blame]
John Rigby6895d452010-01-25 23:12:58 -07001/*
2 * (C) Copyright 2009 DENX Software Engineering
3 * Author: John Rigby <jrigby@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of
8 * the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
18 * MA 02111-1307 USA
19 */
20
21#ifndef __CONFIG_H
22#define __CONFIG_H
23
24
25/*
26 * KARO TX25 board - SoC Configuration
27 */
John Rigby6895d452010-01-25 23:12:58 -070028#define CONFIG_MX25
John Rigby6895d452010-01-25 23:12:58 -070029#define CONFIG_MX25_CLK32 32000 /* OSC32K frequency */
30#define CONFIG_SYS_HZ 1000
31
32#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* 256 kB for U-Boot */
33
34/* NAND BOOT is the only boot method */
35#define CONFIG_NAND_U_BOOT
36
Stefano Babic0e0a5362011-10-28 10:23:02 +020037#ifndef MACH_TYPE_TX25
38#define MACH_TYPE_TX25 2177
39#endif
40
41#define CONFIG_MACH_TYPE MACH_TYPE_TX25
42
John Rigby6895d452010-01-25 23:12:58 -070043#ifdef CONFIG_NAND_SPL
44/* Start copying real U-boot from the second page */
45#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x800
46#define CONFIG_SYS_NAND_U_BOOT_SIZE 0x30000
Heiko Schocherab86f722010-09-17 13:10:42 +020047
Heiko Schocher97105042010-10-11 14:08:14 +020048#define CONFIG_SYS_NAND_U_BOOT_DST (0x81200000)
Heiko Schocherab86f722010-09-17 13:10:42 +020049#define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_NAND_U_BOOT_DST
John Rigby6895d452010-01-25 23:12:58 -070050
51#define CONFIG_SYS_NAND_PAGE_SIZE 2048
52#define CONFIG_SYS_NAND_SPARE_SIZE 64
53#define CONFIG_SYS_NAND_BLOCK_SIZE (128 * 1024)
54#define CONFIG_SYS_NAND_PAGE_COUNT 64
55#define CONFIG_SYS_NAND_SIZE (128 * 1024 * 1024)
56#define CONFIG_SYS_NAND_BAD_BLOCK_POS 0
57#else
58#define CONFIG_SKIP_LOWLEVEL_INIT
John Rigby6895d452010-01-25 23:12:58 -070059#endif
60
61#define CONFIG_DISPLAY_CPUINFO
62
Fabio Estevam043cfcf2011-08-30 05:44:15 +000063#define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */
64#define CONFIG_SETUP_MEMORY_TAGS
65#define CONFIG_INITRD_TAG
John Rigby6895d452010-01-25 23:12:58 -070066
67/*
68 * Memory Info
69 */
70/* malloc() len */
71#define CONFIG_SYS_MALLOC_LEN (1 << 20) /* 1 MiB */
John Rigby6895d452010-01-25 23:12:58 -070072/*
73 * Board has 2 32MB banks of DRAM but there is a bug when using
74 * both so only the first is configured
75 */
76#define CONFIG_NR_DRAM_BANKS 1
77
78#define PHYS_SDRAM_1 0x80000000
79#define PHYS_SDRAM_1_SIZE 0x02000000
80#if (CONFIG_NR_DRAM_BANKS == 2)
81#define PHYS_SDRAM_2 0x90000000
82#define PHYS_SDRAM_2_SIZE 0x02000000
83#endif
84/* 8MB DRAM test */
85#define CONFIG_SYS_MEMTEST_START PHYS_SDRAM_1
86#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1+0x0800000)
John Rigby6895d452010-01-25 23:12:58 -070087
88/*
89 * Serial Info
90 */
Fabio Estevam043cfcf2011-08-30 05:44:15 +000091#define CONFIG_MXC_UART
Stefano Babic40f6fff2011-11-22 15:22:39 +010092#define CONFIG_MXC_UART_BASE UART1_BASE
John Rigby6895d452010-01-25 23:12:58 -070093#define CONFIG_CONS_INDEX 1 /* use UART0 for console */
94#define CONFIG_BAUDRATE 115200 /* Default baud rate */
John Rigby6895d452010-01-25 23:12:58 -070095
Fabio Estevamc2205f42011-08-29 04:27:06 +000096#define CONFIG_MXC_GPIO
97
John Rigby6895d452010-01-25 23:12:58 -070098/*
99 * Flash & Environment
100 */
101/* No NOR flash present */
Fabio Estevam043cfcf2011-08-30 05:44:15 +0000102#define CONFIG_SYS_NO_FLASH
John Rigby6895d452010-01-25 23:12:58 -0700103#define CONFIG_ENV_IS_IN_NAND
104#define CONFIG_ENV_OFFSET CONFIG_SYS_MONITOR_LEN
105#define CONFIG_ENV_SIZE (128 * 1024) /* 128 kB NAND block size */
106#define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
107
108/* NAND */
109#define CONFIG_NAND_MXC
John Rigby6895d452010-01-25 23:12:58 -0700110#define CONFIG_MXC_NAND_REGS_BASE (0xBB000000)
111#define CONFIG_SYS_MAX_NAND_DEVICE 1
112#define CONFIG_SYS_NAND_BASE (0xBB000000)
113#define CONFIG_JFFS2_NAND
114#define CONFIG_MXC_NAND_HWECC
115#define CONFIG_SYS_NAND_LARGEPAGE
116
John Rigby6895d452010-01-25 23:12:58 -0700117/* U-Boot general configuration */
118#define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
119#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
120/* Print buffer sz */
121#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
122 sizeof(CONFIG_SYS_PROMPT) + 16)
123#define CONFIG_SYS_MAXARGS 32 /* max number of command args */
124/* Boot Argument Buffer Size */
125#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
126#define CONFIG_CMDLINE_EDITING
127#define CONFIG_SYS_LONGHELP
128
129/* U-Boot commands */
130#include <config_cmd_default.h>
131#define CONFIG_CMD_NAND
Heiko Schocherc3330e92010-09-17 13:10:30 +0200132#define CONFIG_CMD_CACHE
John Rigby6895d452010-01-25 23:12:58 -0700133
134/*
135 * Ethernet
136 */
137#define CONFIG_FEC_MXC
138#define CONFIG_FEC_MXC_PHYADDR 0x1f
139#define CONFIG_MII
140#define CONFIG_CMD_NET
Helmut Raiger9660e442011-10-20 04:19:47 +0000141#define CONFIG_BOARD_LATE_INIT
John Rigby6895d452010-01-25 23:12:58 -0700142#define CONFIG_ENV_OVERWRITE
143
144#define CONFIG_BOOTDELAY 5
145
146#define CONFIG_LOADADDR 0x81000000 /* loadaddr env var */
147#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
148
John Rigby6895d452010-01-25 23:12:58 -0700149#define CONFIG_EXTRA_ENV_SETTINGS \
150 "netdev=eth0\0" \
151 "nfsargs=setenv bootargs root=/dev/nfs rw " \
152 "nfsroot=${serverip}:${rootpath}\0" \
153 "ramargs=setenv bootargs root=/dev/ram rw\0" \
154 "addip=setenv bootargs ${bootargs} " \
155 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
156 ":${hostname}:${netdev}:off panic=1\0" \
157 "addtty=setenv bootargs ${bootargs}" \
158 " console=ttymxc0,${baudrate}\0" \
159 "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
160 "addmisc=setenv bootargs ${bootargs}\0" \
161 "u-boot=tx25/u-boot.bin\0" \
Marek Vasut93ea89f2012-09-23 17:41:23 +0200162 "kernel_addr_r=" __stringify(CONFIG_LOADADDR) "\0" \
John Rigby6895d452010-01-25 23:12:58 -0700163 "hostname=tx25\0" \
164 "bootfile=tx25/uImage\0" \
165 "rootpath=/opt/eldk/arm\0" \
166 "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \
167 "run nfsargs addip addtty addmtd addmisc;" \
168 "bootm\0" \
169 "bootcmd=run net_nfs\0" \
170 "load=tftp ${loadaddr} ${u-boot}\0" \
171 "update=nand erase 0 40000;nand write ${loadaddr} 0 40000\0" \
172 "upd=run load update\0" \
173
Heiko Schochera784c012010-09-22 14:06:33 +0200174/* additions for new relocation code, must be added to all boards */
Heiko Schocherab86f722010-09-17 13:10:42 +0200175#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
176#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x1000 - /* Fix this */ \
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200177 GENERATED_GBL_DATA_SIZE)
Heiko Schocherab86f722010-09-17 13:10:42 +0200178
John Rigby6895d452010-01-25 23:12:58 -0700179#endif /* __CONFIG_H */