]>
Commit | Line | Data |
---|---|---|
e2211743 | 1 | /* |
8993e54b | 2 | * (C) Copyright 2000-2007 |
e2211743 WD |
3 | * Wolfgang Denk, DENX Software Engineering, [email protected]. |
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 | |
180d3f74 | 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
e2211743 WD |
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 __COMMON_H_ | |
25 | #define __COMMON_H_ 1 | |
26 | ||
27 | #undef _LINUX_CONFIG_H | |
28 | #define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */ | |
29 | ||
30 | typedef unsigned char uchar; | |
31 | typedef volatile unsigned long vu_long; | |
180d3f74 | 32 | typedef volatile unsigned short vu_short; |
e2211743 WD |
33 | typedef volatile unsigned char vu_char; |
34 | ||
35 | #include <config.h> | |
36 | #include <linux/bitops.h> | |
37 | #include <linux/types.h> | |
38 | #include <linux/string.h> | |
39 | #include <asm/ptrace.h> | |
40 | #include <stdarg.h> | |
466fff1a | 41 | #if defined(CONFIG_PCI) && (defined(CONFIG_4xx) && !defined(CONFIG_AP1000)) |
e2211743 WD |
42 | #include <pci.h> |
43 | #endif | |
180d3f74 | 44 | #if defined(CONFIG_8xx) |
e2211743 | 45 | #include <asm/8xx_immap.h> |
d4ca31c4 WD |
46 | #if defined(CONFIG_MPC852) || defined(CONFIG_MPC852T) || \ |
47 | defined(CONFIG_MPC859) || defined(CONFIG_MPC859T) || \ | |
48 | defined(CONFIG_MPC859DSL) || \ | |
49 | defined(CONFIG_MPC866) || defined(CONFIG_MPC866T) || \ | |
50 | defined(CONFIG_MPC866P) | |
1114257c | 51 | # define CONFIG_MPC866_FAMILY 1 |
180d3f74 WD |
52 | #elif defined(CONFIG_MPC870) \ |
53 | || defined(CONFIG_MPC875) \ | |
54 | || defined(CONFIG_MPC880) \ | |
55 | || defined(CONFIG_MPC885) | |
1114257c | 56 | # define CONFIG_MPC885_FAMILY 1 |
180d3f74 WD |
57 | #endif |
58 | #if defined(CONFIG_MPC860) \ | |
59 | || defined(CONFIG_MPC860T) \ | |
1114257c WD |
60 | || defined(CONFIG_MPC866_FAMILY) \ |
61 | || defined(CONFIG_MPC885_FAMILY) | |
180d3f74 | 62 | # define CONFIG_MPC86x 1 |
2535d602 | 63 | #endif |
0db5bca8 WD |
64 | #elif defined(CONFIG_5xx) |
65 | #include <asm/5xx_immap.h> | |
7e6bf358 WD |
66 | #elif defined(CONFIG_MPC5xxx) |
67 | #include <mpc5xxx.h> | |
8993e54b RJ |
68 | #elif defined(CONFIG_MPC512X) |
69 | #include <mpc512x.h> | |
70 | #include <asm/immap_512x.h> | |
983fda83 WD |
71 | #elif defined(CONFIG_MPC8220) |
72 | #include <asm/immap_8220.h> | |
e2211743 | 73 | #elif defined(CONFIG_8260) |
04a85b3b WD |
74 | #if defined(CONFIG_MPC8247) \ |
75 | || defined(CONFIG_MPC8248) \ | |
76 | || defined(CONFIG_MPC8271) \ | |
77 | || defined(CONFIG_MPC8272) | |
78 | #define CONFIG_MPC8272_FAMILY 1 | |
79 | #endif | |
80 | #if defined(CONFIG_MPC8272_FAMILY) | |
81 | #define CONFIG_MPC8260 1 | |
82 | #endif | |
e2211743 WD |
83 | #include <asm/immap_8260.h> |
84 | #endif | |
debb7354 JL |
85 | #ifdef CONFIG_MPC86xx |
86 | #include <mpc86xx.h> | |
87 | #include <asm/immap_86xx.h> | |
88 | #endif | |
42d1f039 WD |
89 | #ifdef CONFIG_MPC85xx |
90 | #include <mpc85xx.h> | |
91 | #include <asm/immap_85xx.h> | |
92 | #endif | |
f046ccd1 EL |
93 | #ifdef CONFIG_MPC83XX |
94 | #include <mpc83xx.h> | |
95 | #include <asm/immap_83xx.h> | |
96 | #endif | |
e2211743 WD |
97 | #ifdef CONFIG_4xx |
98 | #include <ppc4xx.h> | |
99 | #endif | |
100 | #ifdef CONFIG_HYMOD | |
6dd652fa | 101 | #include <board/hymod/hymod.h> |
e2211743 WD |
102 | #endif |
103 | #ifdef CONFIG_ARM | |
104 | #define asmlinkage /* nothing */ | |
105 | #endif | |
6cfcce67 MF |
106 | #ifdef CONFIG_BLACKFIN |
107 | #include <asm/blackfin.h> | |
108 | #endif | |
e2211743 WD |
109 | |
110 | #include <part.h> | |
111 | #include <flash.h> | |
112 | #include <image.h> | |
113 | ||
114 | #ifdef DEBUG | |
115 | #define debug(fmt,args...) printf (fmt ,##args) | |
52f52c14 | 116 | #define debugX(level,fmt,args...) if (DEBUG>=level) printf(fmt,##args); |
e2211743 WD |
117 | #else |
118 | #define debug(fmt,args...) | |
52f52c14 | 119 | #define debugX(level,fmt,args...) |
e2211743 WD |
120 | #endif /* DEBUG */ |
121 | ||
cfa460ad | 122 | #ifndef BUG |
43835aac | 123 | #define BUG() do { \ |
511d0c72 | 124 | printf("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __FUNCTION__); \ |
43835aac DZ |
125 | panic("BUG!"); \ |
126 | } while (0) | |
127 | #define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0) | |
cfa460ad | 128 | #endif /* BUG */ |
43835aac | 129 | |
c83bf6a2 | 130 | typedef void (interrupt_handler_t)(void *); |
e2211743 | 131 | |
c83bf6a2 | 132 | #include <asm/u-boot.h> /* boot information for Linux kernel */ |
e2211743 WD |
133 | #include <asm/global_data.h> /* global data used for startup functions */ |
134 | ||
71f95118 WD |
135 | /* |
136 | * enable common handling for all TQM8xxL/M boards: | |
11d9eec4 | 137 | * - CONFIG_TQM8xxM will be defined for all TQM8xxM boards |
71f95118 | 138 | * - CONFIG_TQM8xxL will be defined for all TQM8xxL _and_ TQM8xxM boards |
11d9eec4 | 139 | * and for the TQM885D board |
71f95118 WD |
140 | */ |
141 | #if defined(CONFIG_TQM823M) || defined(CONFIG_TQM850M) || \ | |
142 | defined(CONFIG_TQM855M) || defined(CONFIG_TQM860M) || \ | |
11d9eec4 | 143 | defined(CONFIG_TQM862M) || defined(CONFIG_TQM866M) |
71f95118 WD |
144 | # ifndef CONFIG_TQM8xxM |
145 | # define CONFIG_TQM8xxM | |
146 | # endif | |
147 | #endif | |
e2211743 | 148 | #if defined(CONFIG_TQM823L) || defined(CONFIG_TQM850L) || \ |
d126bfbd | 149 | defined(CONFIG_TQM855L) || defined(CONFIG_TQM860L) || \ |
11d9eec4 MK |
150 | defined(CONFIG_TQM862L) || defined(CONFIG_TQM8xxM) || \ |
151 | defined(CONFIG_TQM885D) | |
e2211743 WD |
152 | # ifndef CONFIG_TQM8xxL |
153 | # define CONFIG_TQM8xxL | |
154 | # endif | |
155 | #endif | |
156 | ||
281e00a3 WD |
157 | #ifndef CONFIG_SERIAL_MULTI |
158 | ||
159 | #if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2) \ | |
160 | || defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) \ | |
161 | || defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4) | |
162 | ||
163 | #define CONFIG_SERIAL_MULTI 1 | |
164 | ||
165 | #endif | |
166 | ||
167 | #endif /* CONFIG_SERIAL_MULTI */ | |
e2211743 | 168 | |
c7de829c WD |
169 | /* |
170 | * General Purpose Utilities | |
171 | */ | |
172 | #define min(X, Y) \ | |
173 | ({ typeof (X) __x = (X), __y = (Y); \ | |
174 | (__x < __y) ? __x : __y; }) | |
175 | ||
176 | #define max(X, Y) \ | |
177 | ({ typeof (X) __x = (X), __y = (Y); \ | |
178 | (__x > __y) ? __x : __y; }) | |
179 | ||
180 | ||
28901120 HS |
181 | /** |
182 | * container_of - cast a member of a structure out to the containing structure | |
183 | * @ptr: the pointer to the member. | |
184 | * @type: the type of the container struct this is embedded in. | |
185 | * @member: the name of the member within the struct. | |
186 | * | |
187 | */ | |
188 | #define container_of(ptr, type, member) ({ \ | |
189 | const typeof( ((type *)0)->member ) *__mptr = (ptr); \ | |
190 | (type *)( (char *)__mptr - offsetof(type,member) );}) | |
191 | ||
e2211743 WD |
192 | /* |
193 | * Function Prototypes | |
194 | */ | |
195 | ||
42dfe7a1 | 196 | #ifdef CONFIG_SERIAL_SOFTWARE_FIFO |
e2211743 WD |
197 | void serial_buffered_init (void); |
198 | void serial_buffered_putc (const char); | |
199 | void serial_buffered_puts (const char *); | |
200 | int serial_buffered_getc (void); | |
201 | int serial_buffered_tstc (void); | |
202 | #endif /* CONFIG_SERIAL_SOFTWARE_FIFO */ | |
203 | ||
c83bf6a2 | 204 | void hang (void) __attribute__ ((noreturn)); |
e2211743 WD |
205 | |
206 | /* */ | |
9973e3c6 | 207 | phys_size_t initdram (int); |
c83bf6a2 | 208 | int display_options (void); |
61b09fc2 | 209 | void print_size (phys_size_t, const char *); |
74357114 | 210 | int print_buffer (ulong addr, void* data, uint width, uint count, uint linelen); |
e2211743 WD |
211 | |
212 | /* common/main.c */ | |
213 | void main_loop (void); | |
214 | int run_command (const char *cmd, int flag); | |
215 | int readline (const char *const prompt); | |
6636b62a JY |
216 | int readline_into_buffer (const char *const prompt, char * buffer); |
217 | int parse_line (char *, char *[]); | |
6dd652fa | 218 | void init_cmd_timeout(void); |
e2211743 WD |
219 | void reset_cmd_timeout(void); |
220 | ||
15647dc7 | 221 | /* lib_$(ARCH)/board.c */ |
6d1b6f9f MF |
222 | void board_init_f (ulong) __attribute__ ((noreturn)); |
223 | void board_init_r (gd_t *, ulong) __attribute__ ((noreturn)); | |
e2211743 WD |
224 | int checkboard (void); |
225 | int checkflash (void); | |
226 | int checkdram (void); | |
e2211743 | 227 | int last_stage_init(void); |
3b57fe0a | 228 | extern ulong monitor_flash_len; |
bea3f28d | 229 | int mac_read_from_eeprom(void); |
e2211743 WD |
230 | |
231 | /* common/flash.c */ | |
232 | void flash_perror (int); | |
233 | ||
b0fce99b | 234 | /* common/cmd_autoscript.c */ |
424c4abd | 235 | int autoscript (ulong addr, const char *fit_uname); |
e2211743 | 236 | |
c83bf6a2 | 237 | extern ulong load_addr; /* Default Load Address */ |
e2211743 | 238 | |
4394f9a8 WD |
239 | /* common/cmd_doc.c */ |
240 | void doc_probe(unsigned long physadr); | |
241 | ||
e2211743 WD |
242 | /* common/cmd_nvedit.c */ |
243 | int env_init (void); | |
244 | void env_relocate (void); | |
26a41790 | 245 | int envmatch (uchar *, int); |
77ddac94 WD |
246 | char *getenv (char *); |
247 | int getenv_r (char *name, char *buf, unsigned len); | |
c83bf6a2 | 248 | int saveenv (void); |
e2211743 | 249 | #ifdef CONFIG_PPC /* ARM version to be fixed! */ |
75678c80 | 250 | int inline setenv (char *, char *); |
2262cfee | 251 | #else |
75678c80 | 252 | int setenv (char *, char *); |
c74b2108 SK |
253 | #ifdef CONFIG_HAS_UID |
254 | void forceenv (char *, char *); | |
255 | #endif | |
e2211743 WD |
256 | #endif /* CONFIG_PPC */ |
257 | #ifdef CONFIG_ARM | |
96085e34 | 258 | # include <asm/mach-types.h> |
b6e4c403 | 259 | # include <asm/setup.h> |
e2211743 WD |
260 | # include <asm/u-boot-arm.h> /* ARM version to be fixed! */ |
261 | #endif /* CONFIG_ARM */ | |
2262cfee | 262 | #ifdef CONFIG_I386 /* x86 version to be fixed! */ |
8bde7f77 | 263 | # include <asm/u-boot-i386.h> |
2262cfee | 264 | #endif /* CONFIG_I386 */ |
e2211743 | 265 | |
04a85b3b WD |
266 | #ifdef CONFIG_AUTO_COMPLETE |
267 | int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf); | |
268 | #endif | |
269 | ||
c83bf6a2 WD |
270 | void pci_init (void); |
271 | void pci_init_board(void); | |
272 | void pciinfo (int, int); | |
e2211743 | 273 | |
466fff1a | 274 | #if defined(CONFIG_PCI) && (defined(CONFIG_4xx) && !defined(CONFIG_AP1000)) |
c83bf6a2 | 275 | int pci_pre_init (struct pci_controller * ); |
466fff1a SR |
276 | #endif |
277 | ||
dbbd1257 | 278 | #if defined(CONFIG_PCI) && (defined(CONFIG_440) || defined(CONFIG_405EX)) |
6d0f6bcf | 279 | # if defined(CONFIG_SYS_PCI_TARGET_INIT) |
c83bf6a2 | 280 | void pci_target_init (struct pci_controller *); |
e2211743 | 281 | # endif |
6d0f6bcf | 282 | # if defined(CONFIG_SYS_PCI_MASTER_INIT) |
c83bf6a2 | 283 | void pci_master_init (struct pci_controller *); |
e2211743 | 284 | # endif |
c83bf6a2 | 285 | int is_pci_host (struct pci_controller *); |
6f2eb3f3 SR |
286 | #if defined(CONFIG_440SPE) || \ |
287 | defined(CONFIG_460EX) || defined(CONFIG_460GT) || \ | |
288 | defined(CONFIG_405EX) | |
7f191393 | 289 | void pcie_setup_hoses(int busno); |
692519b1 | 290 | #endif |
e2211743 WD |
291 | #endif |
292 | ||
293 | int misc_init_f (void); | |
294 | int misc_init_r (void); | |
295 | ||
27b207fd WD |
296 | /* common/exports.c */ |
297 | void jumptable_init(void); | |
298 | ||
500856eb RJ |
299 | /* api/api.c */ |
300 | void api_init (void); | |
301 | ||
c83bf6a2 | 302 | /* common/memsize.c */ |
91650b3e | 303 | long get_ram_size (volatile long *, long); |
c83bf6a2 | 304 | |
e2211743 WD |
305 | /* $(BOARD)/$(BOARD).c */ |
306 | void reset_phy (void); | |
c83bf6a2 | 307 | void fdc_hw_init (void); |
e2211743 WD |
308 | |
309 | /* $(BOARD)/eeprom.c */ | |
310 | void eeprom_init (void); | |
6dd652fa WD |
311 | #ifndef CONFIG_SPI |
312 | int eeprom_probe (unsigned dev_addr, unsigned offset); | |
313 | #endif | |
e2211743 WD |
314 | int eeprom_read (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt); |
315 | int eeprom_write (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt); | |
316 | #ifdef CONFIG_LWMON | |
317 | extern uchar pic_read (uchar reg); | |
318 | extern void pic_write (uchar reg, uchar val); | |
319 | #endif | |
320 | ||
321 | /* | |
322 | * Set this up regardless of board | |
323 | * type, to prevent errors. | |
324 | */ | |
6d0f6bcf JCPV |
325 | #if defined(CONFIG_SPI) || !defined(CONFIG_SYS_I2C_EEPROM_ADDR) |
326 | # define CONFIG_SYS_DEF_EEPROM_ADDR 0 | |
e2211743 | 327 | #else |
6d0f6bcf JCPV |
328 | # define CONFIG_SYS_DEF_EEPROM_ADDR CONFIG_SYS_I2C_EEPROM_ADDR |
329 | #endif /* CONFIG_SPI || !defined(CONFIG_SYS_I2C_EEPROM_ADDR) */ | |
e2211743 | 330 | |
bdccc4fe | 331 | #if defined(CONFIG_SPI) |
e2211743 WD |
332 | extern void spi_init_f (void); |
333 | extern void spi_init_r (void); | |
c83bf6a2 | 334 | extern ssize_t spi_read (uchar *, int, uchar *, int); |
e2211743 WD |
335 | extern ssize_t spi_write (uchar *, int, uchar *, int); |
336 | #endif | |
337 | ||
338 | #ifdef CONFIG_RPXCLASSIC | |
339 | void rpxclassic_init (void); | |
340 | #endif | |
341 | ||
e63c8ee3 WD |
342 | void rpxlite_init (void); |
343 | ||
e2211743 WD |
344 | #ifdef CONFIG_MBX |
345 | /* $(BOARD)/mbx8xx.c */ | |
346 | void mbx_init (void); | |
347 | void board_serial_init (void); | |
348 | void board_ether_init (void); | |
349 | #endif | |
350 | ||
ba56f625 | 351 | #if defined(CONFIG_RPXCLASSIC) || defined(CONFIG_MBX) || \ |
b79316f2 | 352 | defined(CONFIG_IAD210) || defined(CONFIG_XPEDITE1K) || \ |
4707fb50 BS |
353 | defined(CONFIG_METROBOX) || defined(CONFIG_KAREF) || \ |
354 | defined(CONFIG_V38B) | |
e2211743 WD |
355 | void board_get_enetaddr (uchar *addr); |
356 | #endif | |
357 | ||
358 | #ifdef CONFIG_HERMES | |
359 | /* $(BOARD)/hermes.c */ | |
360 | void hermes_start_lxt980 (int speed); | |
361 | #endif | |
362 | ||
363 | #ifdef CONFIG_EVB64260 | |
364 | void evb64260_init(void); | |
365 | void debug_led(int, int); | |
366 | void display_mem_map(void); | |
367 | void perform_soft_reset(void); | |
368 | #endif | |
369 | ||
370 | void load_sernum_ethaddr (void); | |
371 | ||
372 | /* $(BOARD)/$(BOARD).c */ | |
c837dcb1 WD |
373 | int board_early_init_f (void); |
374 | int board_late_init (void); | |
e2211743 | 375 | int board_postclk_init (void); /* after clocks/timebase, before env/serial */ |
c837dcb1 | 376 | int board_early_init_r (void); |
e2211743 WD |
377 | void board_poweroff (void); |
378 | ||
6d0f6bcf | 379 | #if defined(CONFIG_SYS_DRAM_TEST) |
e2211743 | 380 | int testdram(void); |
6d0f6bcf | 381 | #endif /* CONFIG_SYS_DRAM_TEST */ |
e2211743 WD |
382 | |
383 | /* $(CPU)/start.S */ | |
c83bf6a2 | 384 | #if defined(CONFIG_5xx) || \ |
0db5bca8 | 385 | defined(CONFIG_8xx) |
e2211743 WD |
386 | uint get_immr (uint); |
387 | #endif | |
c83bf6a2 | 388 | uint get_pir (void); |
36c72877 WD |
389 | #if defined(CONFIG_MPC5xxx) |
390 | uint get_svr (void); | |
391 | #endif | |
e2211743 | 392 | uint get_pvr (void); |
547b4cb2 | 393 | uint get_svr (void); |
e2211743 WD |
394 | uint rd_ic_cst (void); |
395 | void wr_ic_cst (uint); | |
396 | void wr_ic_adr (uint); | |
397 | uint rd_dc_cst (void); | |
398 | void wr_dc_cst (uint); | |
399 | void wr_dc_adr (uint); | |
400 | int icache_status (void); | |
401 | void icache_enable (void); | |
402 | void icache_disable(void); | |
403 | int dcache_status (void); | |
404 | void dcache_enable (void); | |
405 | void dcache_disable(void); | |
f33e9653 | 406 | void relocate_code (ulong, gd_t *, ulong) __attribute__ ((noreturn)); |
e2211743 WD |
407 | ulong get_endaddr (void); |
408 | void trap_init (ulong); | |
409 | #if defined (CONFIG_4xx) || \ | |
eeb1b77b | 410 | defined (CONFIG_MPC5xxx) || \ |
e2211743 WD |
411 | defined (CONFIG_74xx_7xx) || \ |
412 | defined (CONFIG_74x) || \ | |
413 | defined (CONFIG_75x) || \ | |
0ac6f8b7 | 414 | defined (CONFIG_74xx) || \ |
983fda83 | 415 | defined (CONFIG_MPC8220) || \ |
cd94ba39 | 416 | defined (CONFIG_MPC85xx) || \ |
debb7354 | 417 | defined (CONFIG_MPC86xx) || \ |
cd94ba39 | 418 | defined (CONFIG_MPC83XX) |
c83bf6a2 WD |
419 | unsigned char in8(unsigned int); |
420 | void out8(unsigned int, unsigned char); | |
421 | unsigned short in16(unsigned int); | |
422 | unsigned short in16r(unsigned int); | |
423 | void out16(unsigned int, unsigned short value); | |
424 | void out16r(unsigned int, unsigned short value); | |
425 | unsigned long in32(unsigned int); | |
426 | unsigned long in32r(unsigned int); | |
427 | void out32(unsigned int, unsigned long value); | |
428 | void out32r(unsigned int, unsigned long value); | |
429 | void ppcDcbf(unsigned long value); | |
430 | void ppcDcbi(unsigned long value); | |
431 | void ppcSync(void); | |
0ac6f8b7 | 432 | void ppcDcbz(unsigned long value); |
e2211743 | 433 | #endif |
0643631a MS |
434 | #if defined (CONFIG_MICROBLAZE) |
435 | unsigned short in16(unsigned int); | |
436 | void out16(unsigned int, unsigned short value); | |
437 | #endif | |
e2211743 | 438 | |
90f30a71 DL |
439 | #if defined (CONFIG_MPC83XX) |
440 | void ppcDWload(unsigned int *addr, unsigned int *ret); | |
441 | void ppcDWstore(unsigned int *addr, unsigned int *value); | |
442 | #endif | |
443 | ||
e2211743 WD |
444 | /* $(CPU)/cpu.c */ |
445 | int checkcpu (void); | |
446 | int checkicache (void); | |
447 | int checkdcache (void); | |
448 | void upmconfig (unsigned int, unsigned int *, unsigned int); | |
449 | ulong get_tbclk (void); | |
3ec924a3 | 450 | void reset_cpu (ulong addr); |
6a16e0df KP |
451 | #if defined (CONFIG_OF_LIBFDT) && defined (CONFIG_OF_BOARD_SETUP) |
452 | void ft_cpu_setup(void *blob, bd_t *bd); | |
453 | #ifdef CONFIG_PCI | |
454 | void ft_pci_setup(void *blob, bd_t *bd); | |
455 | #endif | |
456 | #endif | |
457 | ||
e2211743 WD |
458 | |
459 | /* $(CPU)/serial.c */ | |
460 | int serial_init (void); | |
756f586a | 461 | void serial_addr (unsigned int); |
e2211743 WD |
462 | void serial_setbrg (void); |
463 | void serial_putc (const char); | |
756f586a | 464 | void serial_putc_raw(const char); |
e2211743 | 465 | void serial_puts (const char *); |
e2211743 WD |
466 | int serial_getc (void); |
467 | int serial_tstc (void); | |
468 | ||
756f586a WD |
469 | void _serial_setbrg (const int); |
470 | void _serial_putc (const char, const int); | |
471 | void _serial_putc_raw(const char, const int); | |
472 | void _serial_puts (const char *, const int); | |
473 | int _serial_getc (const int); | |
474 | int _serial_tstc (const int); | |
475 | ||
e2211743 WD |
476 | /* $(CPU)/speed.c */ |
477 | int get_clocks (void); | |
c178d3da WD |
478 | int get_clocks_866 (void); |
479 | int sdram_adjust_866 (void); | |
e9132ea9 | 480 | int adjust_sdram_tbs_8xx (void); |
e2211743 WD |
481 | #if defined(CONFIG_8260) |
482 | int prt_8260_clks (void); | |
f046ccd1 | 483 | #elif defined(CONFIG_MPC5xxx) |
945af8d7 WD |
484 | int prt_mpc5xxx_clks (void); |
485 | #endif | |
66a9455b | 486 | #if defined(CONFIG_MPC512X) |
8993e54b RJ |
487 | int prt_mpc512xxx_clks (void); |
488 | #endif | |
983fda83 WD |
489 | #if defined(CONFIG_MPC8220) |
490 | int prt_mpc8220_clks (void); | |
491 | #endif | |
e2211743 WD |
492 | #ifdef CONFIG_4xx |
493 | ulong get_OPB_freq (void); | |
494 | ulong get_PCI_freq (void); | |
495 | #endif | |
9b07773f GL |
496 | #if defined(CONFIG_S3C2400) || defined(CONFIG_S3C2410) || \ |
497 | defined(CONFIG_LH7A40X) || defined(CONFIG_S3C6400) | |
be19bd5c HW |
498 | void s3c2410_irq(void); |
499 | #define ARM920_IRQ_CALLBACK s3c2410_irq | |
e2211743 WD |
500 | ulong get_FCLK (void); |
501 | ulong get_HCLK (void); | |
502 | ulong get_PCLK (void); | |
503 | ulong get_UCLK (void); | |
504 | #endif | |
f39748ae WD |
505 | #if defined(CONFIG_LH7A40X) |
506 | ulong get_PLLCLK (void); | |
507 | #endif | |
7cb22f97 | 508 | #if defined CONFIG_INCA_IP |
c83bf6a2 | 509 | uint incaip_get_cpuclk (void); |
7cb22f97 | 510 | #endif |
281e00a3 WD |
511 | #if defined(CONFIG_IMX) |
512 | ulong get_systemPLLCLK(void); | |
513 | ulong get_FCLK(void); | |
514 | ulong get_HCLK(void); | |
515 | ulong get_BCLK(void); | |
516 | ulong get_PERCLK1(void); | |
517 | ulong get_PERCLK2(void); | |
518 | ulong get_PERCLK3(void); | |
519 | #endif | |
e2211743 WD |
520 | ulong get_bus_freq (ulong); |
521 | ||
42d1f039 WD |
522 | #if defined(CONFIG_MPC85xx) |
523 | typedef MPC85xx_SYS_INFO sys_info_t; | |
c83bf6a2 | 524 | void get_sys_info ( sys_info_t * ); |
d4357932 | 525 | ulong get_ddr_freq (ulong); |
42d1f039 | 526 | #endif |
debb7354 JL |
527 | #if defined(CONFIG_MPC86xx) |
528 | typedef MPC86xx_SYS_INFO sys_info_t; | |
529 | void get_sys_info ( sys_info_t * ); | |
530 | #endif | |
42d1f039 | 531 | |
e2211743 WD |
532 | #if defined(CONFIG_4xx) || defined(CONFIG_IOP480) |
533 | # if defined(CONFIG_440) | |
6c5879f3 MB |
534 | # if defined(CONFIG_440SPE) |
535 | unsigned long determine_sysper(void); | |
536 | unsigned long determine_pci_clock_per(void); | |
537 | # endif | |
e2211743 | 538 | # endif |
087dfdb7 | 539 | typedef PPC4xx_SYS_INFO sys_info_t; |
f31d38b9 | 540 | int ppc440spe_revB(void); |
c83bf6a2 | 541 | void get_sys_info ( sys_info_t * ); |
e2211743 WD |
542 | #endif |
543 | ||
544 | /* $(CPU)/cpu_init.c */ | |
545 | #if defined(CONFIG_8xx) || defined(CONFIG_8260) | |
546 | void cpu_init_f (volatile immap_t *immr); | |
547 | #endif | |
debb7354 | 548 | #if defined(CONFIG_4xx) || defined(CONFIG_MPC85xx) || defined(CONFIG_MCF52x2) ||defined(CONFIG_MPC86xx) |
e2211743 WD |
549 | void cpu_init_f (void); |
550 | #endif | |
bf9e3b38 | 551 | |
e2211743 WD |
552 | int cpu_init_r (void); |
553 | #if defined(CONFIG_8260) | |
554 | int prt_8260_rsr (void); | |
9be39a67 DL |
555 | #elif defined(CONFIG_MPC83XX) |
556 | int prt_83xx_rsr (void); | |
e2211743 WD |
557 | #endif |
558 | ||
559 | /* $(CPU)/interrupts.c */ | |
c83bf6a2 WD |
560 | int interrupt_init (void); |
561 | void timer_interrupt (struct pt_regs *); | |
e2211743 WD |
562 | void external_interrupt (struct pt_regs *); |
563 | void irq_install_handler(int, interrupt_handler_t *, void *); | |
564 | void irq_free_handler (int); | |
565 | void reset_timer (void); | |
566 | ulong get_timer (ulong base); | |
567 | void set_timer (ulong t); | |
568 | void enable_interrupts (void); | |
569 | int disable_interrupts (void); | |
570 | ||
571 | /* $(CPU)/.../commproc.c */ | |
572 | int dpram_init (void); | |
573 | uint dpram_base(void); | |
574 | uint dpram_base_align(uint align); | |
575 | uint dpram_alloc(uint size); | |
576 | uint dpram_alloc_align(uint size,uint align); | |
577 | void post_word_store (ulong); | |
578 | ulong post_word_load (void); | |
bdccc4fe WD |
579 | void bootcount_store (ulong); |
580 | ulong bootcount_load (void); | |
581 | #define BOOTCOUNT_MAGIC 0xB001C041 | |
e2211743 WD |
582 | |
583 | /* $(CPU)/.../<eth> */ | |
c5bded3c | 584 | void mii_init (void); |
e2211743 WD |
585 | |
586 | /* $(CPU)/.../lcd.c */ | |
587 | ulong lcd_setmem (ulong); | |
588 | ||
589 | /* $(CPU)/.../vfd.c */ | |
590 | ulong vfd_setmem (ulong); | |
591 | ||
592 | /* $(CPU)/.../video.c */ | |
593 | ulong video_setmem (ulong); | |
594 | ||
fabd46ac | 595 | /* lib_$(ARCH)/cache.c */ |
e2211743 WD |
596 | void flush_cache (unsigned long, unsigned long); |
597 | ||
0db5bca8 | 598 | |
15647dc7 | 599 | /* lib_$(ARCH)/ticks.S */ |
e2211743 WD |
600 | unsigned long long get_ticks(void); |
601 | void wait_ticks (unsigned long); | |
602 | ||
15647dc7 | 603 | /* lib_$(ARCH)/time.c */ |
e2211743 WD |
604 | void udelay (unsigned long); |
605 | ulong usec2ticks (unsigned long usec); | |
606 | ulong ticks2usec (unsigned long ticks); | |
607 | int init_timebase (void); | |
608 | ||
15647dc7 | 609 | /* lib_generic/vsprintf.c */ |
e2211743 | 610 | ulong simple_strtoul(const char *cp,char **endp,unsigned int base); |
6d0f6bcf | 611 | #ifdef CONFIG_SYS_64BIT_VSPRINTF |
c40b2956 WD |
612 | unsigned long long simple_strtoull(const char *cp,char **endp,unsigned int base); |
613 | #endif | |
e2211743 | 614 | long simple_strtol(const char *cp,char **endp,unsigned int base); |
dc4b0b38 AK |
615 | void panic(const char *fmt, ...) |
616 | __attribute__ ((format (__printf__, 1, 2))); | |
617 | int sprintf(char * buf, const char *fmt, ...) | |
618 | __attribute__ ((format (__printf__, 2, 3))); | |
c83bf6a2 | 619 | int vsprintf(char *buf, const char *fmt, va_list args); |
e2211743 | 620 | |
0768b7a8 HS |
621 | /* lib_generic/strmhz.c */ |
622 | char * strmhz(char *buf, long hz); | |
623 | ||
15647dc7 | 624 | /* lib_generic/crc32.c */ |
89cdab78 | 625 | uint32_t crc32 (uint32_t, const unsigned char *, uint); |
215b01bb | 626 | uint32_t crc32_wd (uint32_t, const unsigned char *, uint, uint); |
89cdab78 | 627 | uint32_t crc32_no_comp (uint32_t, const unsigned char *, uint); |
e2211743 WD |
628 | |
629 | /* common/console.c */ | |
e2211743 WD |
630 | int console_init_f(void); /* Before relocation; uses the serial stuff */ |
631 | int console_init_r(void); /* After relocation; uses the console stuff */ | |
632 | int console_assign (int file, char *devname); /* Assign the console */ | |
633 | int ctrlc (void); | |
634 | int had_ctrlc (void); /* have we had a Control-C since last clear? */ | |
635 | void clear_ctrlc (void); /* clear the Control-C condition */ | |
636 | int disable_ctrlc (int); /* 1 to disable, 0 to enable Control-C detect */ | |
637 | ||
638 | /* | |
639 | * STDIO based functions (can always be used) | |
640 | */ | |
641 | ||
642 | /* serial stuff */ | |
dc4b0b38 AK |
643 | void serial_printf (const char *fmt, ...) |
644 | __attribute__ ((format (__printf__, 1, 2))); | |
e2211743 WD |
645 | |
646 | /* stdin */ | |
647 | int getc(void); | |
648 | int tstc(void); | |
649 | ||
650 | /* stdout */ | |
651 | void putc(const char c); | |
652 | void puts(const char *s); | |
dc4b0b38 AK |
653 | void printf(const char *fmt, ...) |
654 | __attribute__ ((format (__printf__, 1, 2))); | |
6dd652fa | 655 | void vprintf(const char *fmt, va_list args); |
e2211743 WD |
656 | |
657 | /* stderr */ | |
658 | #define eputc(c) fputc(stderr, c) | |
659 | #define eputs(s) fputs(stderr, s) | |
660 | #define eprintf(fmt,args...) fprintf(stderr,fmt ,##args) | |
661 | ||
662 | /* | |
663 | * FILE based functions (can only be used AFTER relocation!) | |
664 | */ | |
665 | ||
666 | #define stdin 0 | |
667 | #define stdout 1 | |
668 | #define stderr 2 | |
669 | #define MAX_FILES 3 | |
670 | ||
dc4b0b38 AK |
671 | void fprintf(int file, const char *fmt, ...) |
672 | __attribute__ ((format (__printf__, 2, 3))); | |
e2211743 WD |
673 | void fputs(int file, const char *s); |
674 | void fputc(int file, const char c); | |
675 | int ftstc(int file); | |
676 | int fgetc(int file); | |
677 | ||
678 | int pcmcia_init (void); | |
679 | ||
fad63407 HS |
680 | #ifdef CONFIG_STATUS_LED |
681 | # include <status_led.h> | |
e2211743 | 682 | #endif |
fad63407 HS |
683 | /* |
684 | * Board-specific Platform code can reimplement show_boot_progress () if needed | |
685 | */ | |
2ef1d9b6 | 686 | void __attribute__((weak)) show_boot_progress (int val); |
e2211743 | 687 | |
8aa1a2d1 | 688 | #ifdef CONFIG_INIT_CRITICAL |
2f6fa46d | 689 | #error CONFIG_INIT_CRITICAL is deprecated! |
8aa1a2d1 WD |
690 | #error Read section CONFIG_SKIP_LOWLEVEL_INIT in README. |
691 | #endif | |
692 | ||
3cfb0c51 KG |
693 | #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) |
694 | ||
d50c7d4b WD |
695 | #define DIV_ROUND(n,d) (((n) + ((d)/2)) / (d)) |
696 | #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d)) | |
697 | #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y)) | |
022f1216 | 698 | |
4b03ac8b AF |
699 | #define ALIGN(x,a) __ALIGN_MASK((x),(typeof(x))(a)-1) |
700 | #define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask)) | |
701 | ||
ec2b74ff KG |
702 | /* Multicore arch functions */ |
703 | #ifdef CONFIG_MP | |
704 | int cpu_status(int nr); | |
705 | int cpu_reset(int nr); | |
79679d80 | 706 | int cpu_release(int nr, int argc, char *argv[]); |
ec2b74ff KG |
707 | #endif |
708 | ||
2d2b994a YT |
709 | #ifdef CONFIG_POST |
710 | #define CONFIG_HAS_POST | |
711 | #endif | |
712 | ||
e2211743 | 713 | #endif /* __COMMON_H_ */ |