]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/configs/imx27lite-common.h
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / include / configs / imx27lite-common.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
bbe31092
HS
2/*
3 * Copyright (C) 2010 Heiko Schocher <hs@denx.de>
4 *
5 * based on:
6 * Copyright (C) 2009 Ilya Yanok <yanok@emcraft.com>
bbe31092
HS
7 */
8
9#ifndef __IMX27LITE_COMMON_CONFIG_H
10#define __IMX27LITE_COMMON_CONFIG_H
11
12/*
13 * SoC Configuration
14 */
bbe31092
HS
15#define CONFIG_MX27
16#define CONFIG_MX27_CLK32 32768 /* OSC32K frequency */
bbe31092 17
bbe31092
HS
18#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
19#define CONFIG_SETUP_MEMORY_TAGS 1
20#define CONFIG_INITRD_TAG 1
21
22/*
23 * Lowlevel configuration
24 */
25#define SDRAM_ESDCFG_REGISTER_VAL(cas) \
26 (ESDCFG_TRC(10) | \
27 ESDCFG_TRCD(3) | \
28 ESDCFG_TCAS(cas) | \
29 ESDCFG_TRRD(1) | \
30 ESDCFG_TRAS(5) | \
31 ESDCFG_TWR | \
32 ESDCFG_TMRD(2) | \
33 ESDCFG_TRP(2) | \
34 ESDCFG_TXP(3))
35
36#define SDRAM_ESDCTL_REGISTER_VAL \
37 (ESDCTL_PRCT(0) | \
38 ESDCTL_BL | \
39 ESDCTL_PWDT(0) | \
40 ESDCTL_SREFR(3) | \
41 ESDCTL_DSIZ_32 | \
42 ESDCTL_COL10 | \
43 ESDCTL_ROW13 | \
44 ESDCTL_SDE)
45
46#define SDRAM_ALL_VAL 0xf00
47
48#define SDRAM_MODE_REGISTER_VAL 0x33 /* BL: 8, CAS: 3 */
49#define SDRAM_EXT_MODE_REGISTER_VAL 0x1000000
50
51#define MPCTL0_VAL 0x1ef15d5
52
53#define SPCTL0_VAL 0x043a1c09
54
55#define CSCR_VAL 0x33f08107
56
57#define PCDR0_VAL 0x120470c3
58#define PCDR1_VAL 0x03030303
59#define PCCR0_VAL 0xffffffff
60#define PCCR1_VAL 0xfffffffc
61
62#define AIPI1_PSR0_VAL 0x20040304
63#define AIPI1_PSR1_VAL 0xdffbfcfb
64#define AIPI2_PSR0_VAL 0x07ffc200
65#define AIPI2_PSR1_VAL 0xffffffff
66
67/*
68 * Memory Info
69 */
70/* malloc() len */
71#define CONFIG_SYS_MALLOC_LEN (0x10000 + 512 * 1024)
bbe31092
HS
72/* memtest start address */
73#define CONFIG_SYS_MEMTEST_START 0xA0000000
74#define CONFIG_SYS_MEMTEST_END 0xA1000000 /* 16MB RAM test */
75#define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
bbe31092
HS
76#define PHYS_SDRAM_1 0xA0000000 /* DDR Start */
77#define PHYS_SDRAM_1_SIZE 0x08000000 /* DDR size 128MB */
78
79/*
80 * Serial Driver info
81 */
82#define CONFIG_MXC_UART
40f6fffe 83#define CONFIG_MXC_UART_BASE UART1_BASE
bbe31092
HS
84
85/*
86 * Flash & Environment
87 */
bbe31092
HS
88#define CONFIG_FLASH_CFI_DRIVER
89#define CONFIG_SYS_FLASH_CFI
90/* Use buffered writes (~10x faster) */
91#define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1
92/* Use hardware sector protection */
93#define CONFIG_SYS_FLASH_PROTECTION 1
94#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of flash banks */
95/* CS2 Base address */
96#define PHYS_FLASH_1 0xc0000000
97/* Flash Base for U-Boot */
98#define CONFIG_SYS_FLASH_BASE PHYS_FLASH_1
99#define CONFIG_SYS_MAX_FLASH_SECT (PHYS_FLASH_SIZE / \
100 CONFIG_SYS_FLASH_SECT_SZ)
101#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
102#define CONFIG_SYS_MONITOR_LEN 0x40000 /* Reserve 256KiB */
103#define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
104/* Address and size of Redundant Environment Sector */
105#define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
106#define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
107
108/*
109 * Ethernet
110 */
111#define CONFIG_FEC_MXC
112#define CONFIG_FEC_MXC_PHYADDR 0x1f
113#define CONFIG_MII
bbe31092
HS
114
115/*
116 * MTD
117 */
118#define CONFIG_FLASH_CFI_MTD
119#define CONFIG_MTD_DEVICE
120
121/*
122 * NAND
123 */
bbe31092
HS
124#define CONFIG_MXC_NAND_REGS_BASE 0xd8000000
125#define CONFIG_SYS_MAX_NAND_DEVICE 1
126#define CONFIG_SYS_NAND_BASE 0xd8000000
127#define CONFIG_JFFS2_NAND
128#define CONFIG_MXC_NAND_HWECC
bbe31092 129
bbe31092
HS
130/*
131 * U-Boot general configuration
132 */
bbe31092 133#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
bbe31092
HS
134/* Boot Argument Buffer Size */
135#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
bbe31092 136
bbe31092
HS
137#define CONFIG_LOADADDR 0xa0800000 /* loadaddr env var */
138#define CONFIG_SYS_LOAD_ADDR CONFIG_LOADADDR
139
bbe31092
HS
140#define CONFIG_EXTRA_ENV_SETTINGS \
141 "netdev=eth0\0" \
142 "nfsargs=setenv bootargs root=/dev/nfs rw " \
143 "nfsroot=${serverip}:${rootpath}\0" \
144 "ramargs=setenv bootargs root=/dev/ram rw\0" \
145 "addip=setenv bootargs ${bootargs} " \
146 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
147 ":${hostname}:${netdev}:off panic=1\0" \
148 "addtty=setenv bootargs ${bootargs}" \
149 " console=ttymxc0,${baudrate}\0" \
150 "addmtd=setenv bootargs ${bootargs} ${mtdparts}\0" \
151 "addmisc=setenv bootargs ${bootargs}\0" \
5bc0543d 152 "u-boot=" CONFIG_HOSTNAME "/u-boot.bin\0" \
bbe31092 153 "kernel_addr_r=a0800000\0" \
5bc0543d 154 "bootfile=" CONFIG_HOSTNAME "/uImage\0" \
bbe31092
HS
155 "rootpath=/opt/eldk-4.2-arm/arm\0" \
156 "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \
157 "run nfsargs addip addtty addmtd addmisc;" \
158 "bootm\0" \
93ea89f0 159 "bootcmd=run net_nfs\0" \
bbe31092 160 "load=tftp ${loadaddr} ${u-boot}\0" \
93ea89f0
MV
161 "update=protect off " __stringify(CONFIG_SYS_MONITOR_BASE) \
162 " +${filesize};era " __stringify(CONFIG_SYS_MONITOR_BASE)\
bbe31092 163 " +${filesize};cp.b ${fileaddr} " \
93ea89f0 164 __stringify(CONFIG_SYS_MONITOR_BASE) " ${filesize}\0" \
bbe31092 165 "upd=run load update\0" \
43ede0bc
TR
166 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
167 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
bbe31092 168
a784c01a 169/* additions for new relocation code, must be added to all boards */
ab86f72c
HS
170#define CONFIG_SYS_SDRAM_BASE PHYS_SDRAM_1
171#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_SDRAM_BASE + 0x1000 - /* Fix this */ \
25ddd1fb 172 GENERATED_GBL_DATA_SIZE)
bbe31092 173#endif /* __IMX27LITE_COMMON_CONFIG_H */