]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/km82xx-common.h
ppc: add support for ppc based board mgcoge2ne
[karo-tx-uboot.git] / include / configs / km82xx-common.h
1 /*
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
185 #define CONFIG_SYS_SYPCR                0xFFFFFFC3
186 #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
246
247 /*
248  * Bank 1 - 60x bus SDRAM
249  */
250 #define SDRAM_MAX_SIZE  0x08000000      /* max. 128 MB          */
251 #define CONFIG_SYS_GLOBAL_SDRAM_LIMIT   (256 << 20)     /* less than 256 MB */
252
253 #define CONFIG_SYS_MPTPR       0x1800
254
255 /*
256  *-----------------------------------------------------------------------------
257  * Address for Mode Register Set (MRS) command
258  *-----------------------------------------------------------------------------
259  */
260 #define CONFIG_SYS_MRS_OFFS     0x00000110
261 #define CONFIG_SYS_PSRT        0x0e
262
263 #define CONFIG_SYS_BR1_PRELIM ((CONFIG_SYS_SDRAM_BASE & BRx_BA_MSK) |\
264                          BRx_PS_64              |\
265                          BRx_MS_SDRAM_P         |\
266                          BRx_V)
267
268 #define CONFIG_SYS_OR1_PRELIM   CONFIG_SYS_OR1
269
270 /*
271  *  SDRAM initialization values
272  */
273
274 #define CONFIG_SYS_OR1 ((~(CONFIG_SYS_GLOBAL_SDRAM_LIMIT-1) & ORxS_SDAM_MSK) |\
275                          ORxS_BPD_8                     |\
276                          ORxS_ROWST_PBI0_A7             |\
277                          ORxS_NUMR_13)
278
279 #define CONFIG_SYS_PSDMR (PSDMR_SDAM_A14_IS_A5  |\
280                          PSDMR_BSMA_A14_A16     |\
281                          PSDMR_SDA10_PBI0_A9    |\
282                          PSDMR_RFRC_5_CLK       |\
283                          PSDMR_PRETOACT_2W      |\
284                          PSDMR_ACTTORW_2W       |\
285                          PSDMR_LDOTOPRE_1C      |\
286                          PSDMR_WRC_1C           |\
287                          PSDMR_CL_2)
288
289 /*
290  * GPIO/PIGGY on CS3 initialization values
291  */
292 #define CONFIG_SYS_PIGGY_BASE   0x30000000
293 #define CONFIG_SYS_PIGGY_SIZE   128
294
295 #define CONFIG_SYS_BR3_PRELIM   ((CONFIG_SYS_PIGGY_BASE & BRx_BA_MSK) |\
296                          BRx_PS_8 | BRx_MS_GPCM_P | BRx_V)
297
298 #define CONFIG_SYS_OR3_PRELIM   (MEG_TO_AM(CONFIG_SYS_PIGGY_SIZE) |\
299                          ORxG_CSNT | ORxG_ACS_DIV2 |\
300                          ORxG_SCY_3_CLK | ORxG_TRLX)
301
302 /*
303  * Board FPGA on CS4 initialization values
304  */
305 #define CONFIG_SYS_FPGA_BASE    0x40000000
306 #define CONFIG_SYS_FPGA_SIZE    1 /*1KB*/
307
308 #define CONFIG_SYS_BR4_PRELIM ((CONFIG_SYS_FPGA_BASE & BRx_BA_MSK) |\
309                         BRx_PS_8 | BRx_MS_GPCM_P | BRx_V)
310
311 #define CONFIG_SYS_OR4_PRELIM (P2SZ_TO_AM(CONFIG_SYS_FPGA_SIZE << 10) |\
312                          ORxG_CSNT | ORxG_ACS_DIV2 |\
313                          ORxG_SCY_3_CLK | ORxG_TRLX)
314
315 /*
316  * CFG-Flash on CS5 initialization values
317  */
318 #define CONFIG_SYS_BR5_PRELIM   ((CONFIG_SYS_FLASH_BASE_1 & BRx_BA_MSK) |\
319                          BRx_PS_16 | BRx_MS_GPCM_P | BRx_V)
320
321 #define CONFIG_SYS_OR5_PRELIM   (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE_1 + \
322                                  CONFIG_SYS_FLASH_SIZE_2) |\
323                                  ORxG_CSNT | ORxG_ACS_DIV2 |\
324                                  ORxG_SCY_5_CLK | ORxG_TRLX)
325
326 #define CONFIG_SYS_RESET_ADDRESS 0xFDFFFFFC     /* "bad" address */
327
328 /* pass open firmware flat tree */
329 #define CONFIG_FIT              1
330 #define CONFIG_OF_LIBFDT        1
331 #define CONFIG_OF_BOARD_SETUP   1
332
333 #define OF_TBCLK                (bd->bi_busfreq / 4)
334 #define OF_STDOUT_PATH          "/soc/cpm/serial@11a90"
335
336 #endif /* __KM82XX_COMMON */