blob: 894e01540d1be4d8fea4643b990dcb91f8b66d64 [file] [log] [blame]
Heiko Schocheraf895e42011-02-22 08:58:19 +01001/*
2 * (C) Copyright 2007-2010
3 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#ifndef __KM82XX_COMMON
25#define __KM82XX_COMMON
26
27/*
28 * Select serial console configuration
29 *
30 * If either CONFIG_CONS_ON_SMC or CONFIG_CONS_ON_SCC is selected, then
31 * CONFIG_CONS_INDEX must be set to the channel number (1-2 for SMC, 1-4
32 * for SCC).
33 */
34#define CONFIG_CONS_ON_SMC /* Console is on SMC */
35#undef CONFIG_CONS_ON_SCC /* It's not on SCC */
36#undef CONFIG_CONS_NONE /* It's not on external UART */
37#define CONFIG_CONS_INDEX 2 /* SMC2 is used for console */
38#define CONFIG_SYS_SMC_RXBUFLEN 128
39#define CONFIG_SYS_MAXIDLE 10
40
41/*
42 * Select ethernet configuration
43 *
44 * If either CONFIG_ETHER_ON_SCC or CONFIG_ETHER_ON_FCC is selected,
45 * then CONFIG_ETHER_INDEX must be set to the channel number (1-4 for
46 * SCC, 1-3 for FCC)
47 *
48 * If CONFIG_ETHER_NONE is defined, then either the ethernet routines
49 * must be defined elsewhere (as for the console), or CONFIG_CMD_NET
50 * must be unset.
51 */
52#define CONFIG_ETHER_ON_SCC /* Ethernet is on SCC */
53#undef CONFIG_ETHER_ON_FCC /* Ethernet is not on FCC */
54#undef CONFIG_ETHER_NONE /* No external Ethernet */
55#define CONFIG_NET_MULTI
56
57#define CONFIG_ETHER_INDEX 4
58#define CONFIG_HAS_ETH0
59#define CONFIG_SYS_SCC_TOUT_LOOP 10000000
60
61#define CONFIG_SYS_CMXSCR_VALUE (CMXSCR_RS4CS_CLK7 | CMXSCR_TS4CS_CLK8)
62
63#ifndef CONFIG_8260_CLKIN
64#define CONFIG_8260_CLKIN 66000000 /* in Hz */
65#endif
66
67#define BOOTFLASH_START 0xFE000000
68
69#define CONFIG_KM_CONSOLE_TTY "ttyCPM0"
70
71#define MTDPARTS_DEFAULT "mtdparts=" \
72 "app:" \
73 "768k(u-boot)," \
74 "128k(env)," \
75 "128k(envred)," \
76 "3072k(free)," \
77 "-(" CONFIG_KM_UBI_PARTITION_NAME ")"
78
79/*
80 * Default environment settings
81 */
82#define CONFIG_EXTRA_ENV_SETTINGS \
83 CONFIG_KM_DEF_ENV \
84 "EEprom_ivm=pca9544a:70:4 \0" \
85 "unlock=yes\0" \
86 "newenv=" \
87 "prot off 0xFE0C0000 +0x40000 && " \
88 "era 0xFE0C0000 +0x40000\0" \
89 "rootpath=/opt/eldk/ppc_82xx\0" \
90 ""
91
92#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
93#if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
94#define CONFIG_SYS_RAMBOOT
95#endif
96
97#define CONFIG_SYS_MONITOR_LEN (768 << 10)
98
99#define CONFIG_ENV_IS_IN_FLASH
100
101#ifdef CONFIG_ENV_IS_IN_FLASH
102#define CONFIG_ENV_SECT_SIZE 0x20000
103#define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + \
104 CONFIG_SYS_MONITOR_LEN)
105#define CONFIG_ENV_OFFSET CONFIG_SYS_MONITOR_LEN
106
107/* Address and size of Redundant Environment Sector */
108#define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + \
109 CONFIG_ENV_SECT_SIZE)
110#define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SIZE)
111#endif /* CONFIG_ENV_IS_IN_FLASH */
112
113/* enable I2C and select the hardware/software driver */
114#undef CONFIG_HARD_I2C /* I2C with hardware support */
115#define CONFIG_SOFT_I2C /* I2C bit-banged */
116#define CONFIG_SYS_I2C_SPEED 50000 /* I2C speed */
117#define CONFIG_SYS_I2C_SLAVE 0x7F /* I2C slave address */
118
119/*
120 * Software (bit-bang) I2C driver configuration
121 */
122
123#define I2C_PORT 3 /* Port A=0, B=1, C=2, D=3 */
124#define I2C_ACTIVE (iop->pdir |= 0x00010000)
125#define I2C_TRISTATE (iop->pdir &= ~0x00010000)
126#define I2C_READ ((iop->pdat & 0x00010000) != 0)
127#define I2C_SDA(bit) do { \
128 if (bit) \
129 iop->pdat |= 0x00010000; \
130 else \
131 iop->pdat &= ~0x00010000; \
132 } while (0)
133#define I2C_SCL(bit) do { \
134 if (bit) \
135 iop->pdat |= 0x00020000; \
136 else \
137 iop->pdat &= ~0x00020000; \
138 } while (0)
139#define I2C_DELAY udelay(5) /* 1/4 I2C clock duration */
140
141/* I2C SYSMON (LM75, AD7414 is almost compatible) */
142#define CONFIG_DTT_LM75 /* ON Semi's LM75 */
143#define CONFIG_DTT_SENSORS {0} /* Sensor addresses */
144#define CONFIG_SYS_DTT_MAX_TEMP 70
145#define CONFIG_SYS_DTT_LOW_TEMP -30
146#define CONFIG_SYS_DTT_HYSTERESIS 3
147#define CONFIG_SYS_DTT_BUS_NUM (CONFIG_SYS_MAX_I2C_BUS)
148
149#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
150
151#define CONFIG_SYS_IMMR 0xF0000000
152
153#define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_IMMR
154#define CONFIG_SYS_INIT_RAM_SIZE 0x2000 /* used size in DPRAM */
155#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - \
156 GENERATED_GBL_DATA_SIZE)
157#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
158
159/* Hard reset configuration word */
160#define CONFIG_SYS_HRCW_MASTER 0x0604b211
161
162/* No slaves */
163#define CONFIG_SYS_HRCW_SLAVE1 0
164#define CONFIG_SYS_HRCW_SLAVE2 0
165#define CONFIG_SYS_HRCW_SLAVE3 0
166#define CONFIG_SYS_HRCW_SLAVE4 0
167#define CONFIG_SYS_HRCW_SLAVE5 0
168#define CONFIG_SYS_HRCW_SLAVE6 0
169#define CONFIG_SYS_HRCW_SLAVE7 0
170
171/* Initial Memory map for Linux */
172#define CONFIG_SYS_BOOTMAPSZ (8 << 20)
173
174#define CONFIG_SYS_CACHELINE_SIZE 32 /* For MPC8260 CPUs */
175#if defined(CONFIG_CMD_KGDB)
176# define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */
177#endif
178
179#define CONFIG_SYS_HID0_INIT 0
180#define CONFIG_SYS_HID0_FINAL (HID0_ICE | HID0_IFEM | HID0_ABE)
181
182#define CONFIG_SYS_HID2 0
183
184#define CONFIG_SYS_SIUMCR 0x4020c200
Holger Brunckba12cd52011-04-08 02:47:28 +0000185#define CONFIG_SYS_SYPCR 0xFFFFFF83
Heiko Schocheraf895e42011-02-22 08:58:19 +0100186#define CONFIG_SYS_BCR 0x10000000
187#define CONFIG_SYS_SCCR (SCCR_PCI_MODE | SCCR_PCI_MODCK)
188
189/*
190 *-----------------------------------------------------------------------
191 * RMR - Reset Mode Register 5-5
192 *-----------------------------------------------------------------------
193 * turn on Checkstop Reset Enable
194 */
195#define CONFIG_SYS_RMR 0
196
197/*
198 *-----------------------------------------------------------------------
199 * TMCNTSC - Time Counter Status and Control 4-40
200 *-----------------------------------------------------------------------
201 * Clear once per Second and Alarm Interrupt Status, Set 32KHz timersclk,
202 * and enable Time Counter
203 */
204#define CONFIG_SYS_TMCNTSC (TMCNTSC_SEC|TMCNTSC_ALR|TMCNTSC_TCF|TMCNTSC_TCE)
205
206/*
207 *-----------------------------------------------------------------------
208 * PISCR - Periodic Interrupt Status and Control 4-42
209 *-----------------------------------------------------------------------
210 * Clear Periodic Interrupt Status, Set 32KHz timersclk, and enable
211 * Periodic timer
212 */
213#define CONFIG_SYS_PISCR (PISCR_PS|PISCR_PTF|PISCR_PTE)
214
215/*
216 *-----------------------------------------------------------------------
217 * RCCR - RISC Controller Configuration 13-7
218 *-----------------------------------------------------------------------
219 */
220#define CONFIG_SYS_RCCR 0
221
222/*
223 * Init Memory Controller:
224 *
225 * Bank Bus Machine PortSz Device
226 * ---- --- ------- ------ ------
227 * 0 60x GPCM 8 bit FLASH
228 * 1 60x SDRAM 32 bit SDRAM
229 * 3 60x GPCM 8 bit GPIO/PIGGY
230 * 5 60x GPCM 16 bit CFG-Flash
231 *
232 */
233/* Bank 0 - FLASH
234 */
235#define CONFIG_SYS_BR0_PRELIM ((CONFIG_SYS_FLASH_BASE & BRx_BA_MSK) |\
236 BRx_PS_8 |\
237 BRx_MS_GPCM_P |\
238 BRx_V)
239
240#define CONFIG_SYS_OR0_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) |\
241 ORxG_CSNT |\
242 ORxG_ACS_DIV2 |\
243 ORxG_SCY_5_CLK |\
244 ORxG_TRLX)
245
Heiko Schocheraf895e42011-02-22 08:58:19 +0100246#define CONFIG_SYS_MPTPR 0x1800
247
248/*
249 *-----------------------------------------------------------------------------
250 * Address for Mode Register Set (MRS) command
251 *-----------------------------------------------------------------------------
252 */
253#define CONFIG_SYS_MRS_OFFS 0x00000110
254#define CONFIG_SYS_PSRT 0x0e
255
256#define CONFIG_SYS_BR1_PRELIM ((CONFIG_SYS_SDRAM_BASE & BRx_BA_MSK) |\
257 BRx_PS_64 |\
258 BRx_MS_SDRAM_P |\
259 BRx_V)
260
261#define CONFIG_SYS_OR1_PRELIM CONFIG_SYS_OR1
262
263/*
Heiko Schocher8ed74342011-03-08 10:47:39 +0100264 * UPIO FPGA (GPIO/PIGGY) on CS3 initialization values
Heiko Schocheraf895e42011-02-22 08:58:19 +0100265 */
Heiko Schocher8ed74342011-03-08 10:47:39 +0100266#define CONFIG_SYS_KMBEC_FPGA_BASE 0x30000000
267#define CONFIG_SYS_KMBEC_FPGA_SIZE 128
Heiko Schocheraf895e42011-02-22 08:58:19 +0100268
Heiko Schocher8ed74342011-03-08 10:47:39 +0100269#define CONFIG_SYS_BR3_PRELIM ((CONFIG_SYS_KMBEC_FPGA_BASE & BRx_BA_MSK) |\
Heiko Schocheraf895e42011-02-22 08:58:19 +0100270 BRx_PS_8 | BRx_MS_GPCM_P | BRx_V)
271
Heiko Schocher8ed74342011-03-08 10:47:39 +0100272#define CONFIG_SYS_OR3_PRELIM (MEG_TO_AM(CONFIG_SYS_KMBEC_FPGA_SIZE) |\
Heiko Schocheraf895e42011-02-22 08:58:19 +0100273 ORxG_CSNT | ORxG_ACS_DIV2 |\
274 ORxG_SCY_3_CLK | ORxG_TRLX)
275
276/*
Heiko Schocher8ed74342011-03-08 10:47:39 +0100277 * BFTICU board FPGA on CS4 initialization values
Heiko Schocheraf895e42011-02-22 08:58:19 +0100278 */
279#define CONFIG_SYS_FPGA_BASE 0x40000000
280#define CONFIG_SYS_FPGA_SIZE 1 /*1KB*/
281
282#define CONFIG_SYS_BR4_PRELIM ((CONFIG_SYS_FPGA_BASE & BRx_BA_MSK) |\
283 BRx_PS_8 | BRx_MS_GPCM_P | BRx_V)
284
285#define CONFIG_SYS_OR4_PRELIM (P2SZ_TO_AM(CONFIG_SYS_FPGA_SIZE << 10) |\
286 ORxG_CSNT | ORxG_ACS_DIV2 |\
287 ORxG_SCY_3_CLK | ORxG_TRLX)
288
289/*
290 * CFG-Flash on CS5 initialization values
291 */
292#define CONFIG_SYS_BR5_PRELIM ((CONFIG_SYS_FLASH_BASE_1 & BRx_BA_MSK) |\
293 BRx_PS_16 | BRx_MS_GPCM_P | BRx_V)
294
295#define CONFIG_SYS_OR5_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE_1 + \
296 CONFIG_SYS_FLASH_SIZE_2) |\
297 ORxG_CSNT | ORxG_ACS_DIV2 |\
298 ORxG_SCY_5_CLK | ORxG_TRLX)
299
300#define CONFIG_SYS_RESET_ADDRESS 0xFDFFFFFC /* "bad" address */
301
302/* pass open firmware flat tree */
303#define CONFIG_FIT 1
304#define CONFIG_OF_LIBFDT 1
305#define CONFIG_OF_BOARD_SETUP 1
306
307#define OF_TBCLK (bd->bi_busfreq / 4)
308#define OF_STDOUT_PATH "/soc/cpm/serial@11a90"
309
310#endif /* __KM82XX_COMMON */