2 * (C) Copyright 2000-2009
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
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.
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.
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,
27 #undef _LINUX_CONFIG_H
28 #define _LINUX_CONFIG_H 1 /* avoid reading Linux autoconf.h file */
30 #ifndef __ASSEMBLY__ /* put C only stuff in this section */
32 typedef unsigned char uchar;
33 typedef volatile unsigned long vu_long;
34 typedef volatile unsigned short vu_short;
35 typedef volatile unsigned char vu_char;
38 #include <linux/bitops.h>
39 #include <linux/types.h>
40 #include <linux/string.h>
41 #include <asm/ptrace.h>
43 #if defined(CONFIG_PCI) && (defined(CONFIG_4xx) && !defined(CONFIG_AP1000))
46 #if defined(CONFIG_8xx)
47 #include <asm/8xx_immap.h>
48 #if defined(CONFIG_MPC852) || defined(CONFIG_MPC852T) || \
49 defined(CONFIG_MPC859) || defined(CONFIG_MPC859T) || \
50 defined(CONFIG_MPC859DSL) || \
51 defined(CONFIG_MPC866) || defined(CONFIG_MPC866T) || \
52 defined(CONFIG_MPC866P)
53 # define CONFIG_MPC866_FAMILY 1
54 #elif defined(CONFIG_MPC870) \
55 || defined(CONFIG_MPC875) \
56 || defined(CONFIG_MPC880) \
57 || defined(CONFIG_MPC885)
58 # define CONFIG_MPC885_FAMILY 1
60 #if defined(CONFIG_MPC860) \
61 || defined(CONFIG_MPC860T) \
62 || defined(CONFIG_MPC866_FAMILY) \
63 || defined(CONFIG_MPC885_FAMILY)
64 # define CONFIG_MPC86x 1
66 #elif defined(CONFIG_5xx)
67 #include <asm/5xx_immap.h>
68 #elif defined(CONFIG_MPC5xxx)
70 #elif defined(CONFIG_MPC512X)
71 #include <asm/immap_512x.h>
72 #elif defined(CONFIG_MPC8220)
73 #include <asm/immap_8220.h>
74 #elif defined(CONFIG_8260)
75 #if defined(CONFIG_MPC8247) \
76 || defined(CONFIG_MPC8248) \
77 || defined(CONFIG_MPC8271) \
78 || defined(CONFIG_MPC8272)
79 #define CONFIG_MPC8272_FAMILY 1
81 #if defined(CONFIG_MPC8272_FAMILY)
82 #define CONFIG_MPC8260 1
84 #include <asm/immap_8260.h>
88 #include <asm/immap_86xx.h>
92 #include <asm/immap_85xx.h>
96 #include <asm/immap_83xx.h>
102 #include <board/hymod/hymod.h>
105 #define asmlinkage /* nothing */
107 #ifdef CONFIG_BLACKFIN
108 #include <asm/blackfin.h>
110 #ifdef CONFIG_SOC_DA8XX
111 #include <asm/arch/hardware.h>
119 #define debug(fmt,args...) printf (fmt ,##args)
120 #define debugX(level,fmt,args...) if (DEBUG>=level) printf(fmt,##args);
122 #define debug(fmt,args...)
123 #define debugX(level,fmt,args...)
126 #define error(fmt, args...) do { \
127 printf("ERROR: " fmt "\nat %s:%d/%s()\n", \
128 ##args, __FILE__, __LINE__, __func__); \
133 printf("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __FUNCTION__); \
136 #define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0)
139 typedef void (interrupt_handler_t)(void *);
141 #include <asm/u-boot.h> /* boot information for Linux kernel */
142 #include <asm/global_data.h> /* global data used for startup functions */
145 * enable common handling for all TQM8xxL/M boards:
146 * - CONFIG_TQM8xxM will be defined for all TQM8xxM boards
147 * - CONFIG_TQM8xxL will be defined for all TQM8xxL _and_ TQM8xxM boards
148 * and for the TQM885D board
150 #if defined(CONFIG_TQM823M) || defined(CONFIG_TQM850M) || \
151 defined(CONFIG_TQM855M) || defined(CONFIG_TQM860M) || \
152 defined(CONFIG_TQM862M) || defined(CONFIG_TQM866M)
153 # ifndef CONFIG_TQM8xxM
154 # define CONFIG_TQM8xxM
157 #if defined(CONFIG_TQM823L) || defined(CONFIG_TQM850L) || \
158 defined(CONFIG_TQM855L) || defined(CONFIG_TQM860L) || \
159 defined(CONFIG_TQM862L) || defined(CONFIG_TQM8xxM) || \
160 defined(CONFIG_TQM885D)
161 # ifndef CONFIG_TQM8xxL
162 # define CONFIG_TQM8xxL
166 #ifndef CONFIG_SERIAL_MULTI
168 #if defined(CONFIG_8xx_CONS_SMC1) || defined(CONFIG_8xx_CONS_SMC2) \
169 || defined(CONFIG_8xx_CONS_SCC1) || defined(CONFIG_8xx_CONS_SCC2) \
170 || defined(CONFIG_8xx_CONS_SCC3) || defined(CONFIG_8xx_CONS_SCC4)
172 #define CONFIG_SERIAL_MULTI 1
176 #endif /* CONFIG_SERIAL_MULTI */
179 * General Purpose Utilities
182 ({ typeof (X) __x = (X), __y = (Y); \
183 (__x < __y) ? __x : __y; })
186 ({ typeof (X) __x = (X), __y = (Y); \
187 (__x > __y) ? __x : __y; })
189 #define MIN(x, y) min(x, y)
190 #define MAX(x, y) max(x, y)
194 * container_of - cast a member of a structure out to the containing structure
195 * @ptr: the pointer to the member.
196 * @type: the type of the container struct this is embedded in.
197 * @member: the name of the member within the struct.
200 #define container_of(ptr, type, member) ({ \
201 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
202 (type *)( (char *)__mptr - offsetof(type,member) );})
205 * Function Prototypes
208 #ifdef CONFIG_SERIAL_SOFTWARE_FIFO
209 void serial_buffered_init (void);
210 void serial_buffered_putc (const char);
211 void serial_buffered_puts (const char *);
212 int serial_buffered_getc (void);
213 int serial_buffered_tstc (void);
214 #endif /* CONFIG_SERIAL_SOFTWARE_FIFO */
216 void hang (void) __attribute__ ((noreturn));
219 phys_size_t initdram (int);
220 int display_options (void);
221 void print_size(unsigned long long, const char *);
222 int print_buffer (ulong addr, void* data, uint width, uint count, uint linelen);
225 void main_loop (void);
226 int run_command (const char *cmd, int flag);
227 int readline (const char *const prompt);
228 int readline_into_buffer (const char *const prompt, char * buffer);
229 int parse_line (char *, char *[]);
230 void init_cmd_timeout(void);
231 void reset_cmd_timeout(void);
233 /* arch/$(ARCH)/lib/board.c */
234 void board_init_f (ulong) __attribute__ ((noreturn));
235 void board_init_r (gd_t *, ulong) __attribute__ ((noreturn));
236 int checkboard (void);
237 int checkflash (void);
238 int checkdram (void);
239 int last_stage_init(void);
240 extern ulong monitor_flash_len;
241 int mac_read_from_eeprom(void);
244 void flash_perror (int);
246 /* common/cmd_source.c */
247 int source (ulong addr, const char *fit_uname);
249 extern ulong load_addr; /* Default Load Address */
251 /* common/cmd_doc.c */
252 void doc_probe(unsigned long physadr);
254 /* common/cmd_nvedit.c */
256 void env_relocate (void);
257 int envmatch (uchar *, int);
258 char *getenv (char *);
259 int getenv_f (char *name, char *buf, unsigned len);
261 #ifdef CONFIG_PPC /* ARM version to be fixed! */
262 int inline setenv (char *, char *);
264 int setenv (char *, char *);
265 #ifdef CONFIG_HAS_UID
266 void forceenv (char *, char *);
268 #endif /* CONFIG_PPC */
270 # include <asm/mach-types.h>
271 # include <asm/setup.h>
272 # include <asm/u-boot-arm.h> /* ARM version to be fixed! */
273 #endif /* CONFIG_ARM */
274 #ifdef CONFIG_I386 /* x86 version to be fixed! */
275 # include <asm/u-boot-i386.h>
276 #endif /* CONFIG_I386 */
278 #ifdef CONFIG_AUTO_COMPLETE
279 int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf);
281 int get_env_id (void);
283 void pci_init (void);
284 void pci_init_board(void);
285 void pciinfo (int, int);
287 #if defined(CONFIG_PCI) && (defined(CONFIG_4xx) && !defined(CONFIG_AP1000))
288 int pci_pre_init (struct pci_controller *);
289 int is_pci_host (struct pci_controller *);
292 #if defined(CONFIG_PCI) && (defined(CONFIG_440) || defined(CONFIG_405EX))
293 # if defined(CONFIG_SYS_PCI_TARGET_INIT)
294 void pci_target_init (struct pci_controller *);
296 # if defined(CONFIG_SYS_PCI_MASTER_INIT)
297 void pci_master_init (struct pci_controller *);
299 #if defined(CONFIG_440SPE) || \
300 defined(CONFIG_460EX) || defined(CONFIG_460GT) || \
301 defined(CONFIG_405EX)
302 void pcie_setup_hoses(int busno);
306 int misc_init_f (void);
307 int misc_init_r (void);
309 /* common/exports.c */
310 void jumptable_init(void);
312 /* common/kallsysm.c */
313 const char *symbol_lookup(unsigned long addr, unsigned long *caddr);
316 void api_init (void);
318 /* common/memsize.c */
319 long get_ram_size (volatile long *, long);
321 /* $(BOARD)/$(BOARD).c */
322 void reset_phy (void);
323 void fdc_hw_init (void);
325 /* $(BOARD)/eeprom.c */
326 void eeprom_init (void);
328 int eeprom_probe (unsigned dev_addr, unsigned offset);
330 int eeprom_read (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt);
331 int eeprom_write (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt);
333 extern uchar pic_read (uchar reg);
334 extern void pic_write (uchar reg, uchar val);
338 * Set this up regardless of board
339 * type, to prevent errors.
341 #if defined(CONFIG_SPI) || !defined(CONFIG_SYS_I2C_EEPROM_ADDR)
342 # define CONFIG_SYS_DEF_EEPROM_ADDR 0
344 #if !defined(CONFIG_ENV_EEPROM_IS_ON_I2C)
345 # define CONFIG_SYS_DEF_EEPROM_ADDR CONFIG_SYS_I2C_EEPROM_ADDR
347 #endif /* CONFIG_SPI || !defined(CONFIG_SYS_I2C_EEPROM_ADDR) */
349 #if defined(CONFIG_SPI)
350 extern void spi_init_f (void);
351 extern void spi_init_r (void);
352 extern ssize_t spi_read (uchar *, int, uchar *, int);
353 extern ssize_t spi_write (uchar *, int, uchar *, int);
356 #ifdef CONFIG_RPXCLASSIC
357 void rpxclassic_init (void);
360 void rpxlite_init (void);
363 /* $(BOARD)/mbx8xx.c */
364 void mbx_init (void);
365 void board_serial_init (void);
366 void board_ether_init (void);
370 /* $(BOARD)/hermes.c */
371 void hermes_start_lxt980 (int speed);
374 #ifdef CONFIG_EVB64260
375 void evb64260_init(void);
376 void debug_led(int, int);
377 void display_mem_map(void);
378 void perform_soft_reset(void);
381 /* $(BOARD)/$(BOARD).c */
382 int board_early_init_f (void);
383 int board_late_init (void);
384 int board_postclk_init (void); /* after clocks/timebase, before env/serial */
385 int board_early_init_r (void);
386 void board_poweroff (void);
388 #if defined(CONFIG_SYS_DRAM_TEST)
390 #endif /* CONFIG_SYS_DRAM_TEST */
393 #if defined(CONFIG_5xx) || \
395 uint get_immr (uint);
398 #if defined(CONFIG_MPC5xxx)
403 uint rd_ic_cst (void);
404 void wr_ic_cst (uint);
405 void wr_ic_adr (uint);
406 uint rd_dc_cst (void);
407 void wr_dc_cst (uint);
408 void wr_dc_adr (uint);
409 int icache_status (void);
410 void icache_enable (void);
411 void icache_disable(void);
412 int dcache_status (void);
413 void dcache_enable (void);
414 void dcache_disable(void);
415 void relocate_code (ulong, gd_t *, ulong) __attribute__ ((noreturn));
416 ulong get_endaddr (void);
417 void trap_init (ulong);
418 #if defined (CONFIG_4xx) || \
419 defined (CONFIG_MPC5xxx) || \
420 defined (CONFIG_74xx_7xx) || \
421 defined (CONFIG_74x) || \
422 defined (CONFIG_75x) || \
423 defined (CONFIG_74xx) || \
424 defined (CONFIG_MPC8220) || \
425 defined (CONFIG_MPC85xx) || \
426 defined (CONFIG_MPC86xx) || \
427 defined (CONFIG_MPC83xx)
428 unsigned char in8(unsigned int);
429 void out8(unsigned int, unsigned char);
430 unsigned short in16(unsigned int);
431 unsigned short in16r(unsigned int);
432 void out16(unsigned int, unsigned short value);
433 void out16r(unsigned int, unsigned short value);
434 unsigned long in32(unsigned int);
435 unsigned long in32r(unsigned int);
436 void out32(unsigned int, unsigned long value);
437 void out32r(unsigned int, unsigned long value);
438 void ppcDcbf(unsigned long value);
439 void ppcDcbi(unsigned long value);
441 void ppcDcbz(unsigned long value);
443 #if defined (CONFIG_MICROBLAZE)
444 unsigned short in16(unsigned int);
445 void out16(unsigned int, unsigned short value);
448 #if defined (CONFIG_MPC83xx)
449 void ppcDWload(unsigned int *addr, unsigned int *ret);
450 void ppcDWstore(unsigned int *addr, unsigned int *value);
454 int cpu_numcores (void);
457 int checkicache (void);
458 int checkdcache (void);
459 void upmconfig (unsigned int, unsigned int *, unsigned int);
460 ulong get_tbclk (void);
461 void reset_cpu (ulong addr);
462 #if defined (CONFIG_OF_LIBFDT) && defined (CONFIG_OF_BOARD_SETUP)
463 void ft_cpu_setup(void *blob, bd_t *bd);
465 void ft_pci_setup(void *blob, bd_t *bd);
470 /* $(CPU)/serial.c */
471 int serial_init (void);
472 void serial_exit (void);
473 void serial_setbrg (void);
474 void serial_putc (const char);
475 void serial_putc_raw(const char);
476 void serial_puts (const char *);
477 int serial_getc (void);
478 int serial_tstc (void);
480 void _serial_setbrg (const int);
481 void _serial_putc (const char, const int);
482 void _serial_putc_raw(const char, const int);
483 void _serial_puts (const char *, const int);
484 int _serial_getc (const int);
485 int _serial_tstc (const int);
488 int get_clocks (void);
489 int get_clocks_866 (void);
490 int sdram_adjust_866 (void);
491 int adjust_sdram_tbs_8xx (void);
492 #if defined(CONFIG_8260)
493 int prt_8260_clks (void);
494 #elif defined(CONFIG_MPC5xxx)
495 int prt_mpc5xxx_clks (void);
497 #if defined(CONFIG_MPC512X)
498 int prt_mpc512xxx_clks (void);
500 #if defined(CONFIG_MPC8220)
501 int prt_mpc8220_clks (void);
504 ulong get_OPB_freq (void);
505 ulong get_PCI_freq (void);
507 #if defined(CONFIG_S3C24X0) || \
508 defined(CONFIG_LH7A40X) || \
509 defined(CONFIG_S3C6400) || \
510 defined(CONFIG_EP93XX)
511 ulong get_FCLK (void);
512 ulong get_HCLK (void);
513 ulong get_PCLK (void);
514 ulong get_UCLK (void);
516 #if defined(CONFIG_LH7A40X)
517 ulong get_PLLCLK (void);
519 #if defined CONFIG_INCA_IP
520 uint incaip_get_cpuclk (void);
522 #if defined(CONFIG_IMX)
523 ulong get_systemPLLCLK(void);
524 ulong get_FCLK(void);
525 ulong get_HCLK(void);
526 ulong get_BCLK(void);
527 ulong get_PERCLK1(void);
528 ulong get_PERCLK2(void);
529 ulong get_PERCLK3(void);
531 ulong get_bus_freq (ulong);
533 #if defined(CONFIG_MPC85xx)
534 typedef MPC85xx_SYS_INFO sys_info_t;
535 void get_sys_info ( sys_info_t * );
536 ulong get_ddr_freq (ulong);
538 #if defined(CONFIG_MPC86xx)
539 typedef MPC86xx_SYS_INFO sys_info_t;
540 void get_sys_info ( sys_info_t * );
543 #if defined(CONFIG_4xx) || defined(CONFIG_IOP480)
544 # if defined(CONFIG_440)
545 # if defined(CONFIG_440SPE)
546 unsigned long determine_sysper(void);
547 unsigned long determine_pci_clock_per(void);
550 typedef PPC4xx_SYS_INFO sys_info_t;
551 int ppc440spe_revB(void);
552 void get_sys_info ( sys_info_t * );
555 /* $(CPU)/cpu_init.c */
556 #if defined(CONFIG_8xx) || defined(CONFIG_8260)
557 void cpu_init_f (volatile immap_t *immr);
559 #if defined(CONFIG_4xx) || defined(CONFIG_MPC85xx) || defined(CONFIG_MCF52x2) ||defined(CONFIG_MPC86xx)
560 void cpu_init_f (void);
563 int cpu_init_r (void);
564 #if defined(CONFIG_8260)
565 int prt_8260_rsr (void);
566 #elif defined(CONFIG_MPC83xx)
567 int prt_83xx_rsr (void);
570 /* $(CPU)/interrupts.c */
571 int interrupt_init (void);
572 void timer_interrupt (struct pt_regs *);
573 void external_interrupt (struct pt_regs *);
574 void irq_install_handler(int, interrupt_handler_t *, void *);
575 void irq_free_handler (int);
576 void reset_timer (void);
577 ulong get_timer (ulong base);
578 void set_timer (ulong t);
579 void enable_interrupts (void);
580 int disable_interrupts (void);
582 /* $(CPU)/.../commproc.c */
583 int dpram_init (void);
584 uint dpram_base(void);
585 uint dpram_base_align(uint align);
586 uint dpram_alloc(uint size);
587 uint dpram_alloc_align(uint size,uint align);
588 void post_word_store (ulong);
589 ulong post_word_load (void);
590 void bootcount_store (ulong);
591 ulong bootcount_load (void);
592 #define BOOTCOUNT_MAGIC 0xB001C041
594 /* $(CPU)/.../<eth> */
595 void mii_init (void);
597 /* $(CPU)/.../lcd.c */
598 ulong lcd_setmem (ulong);
600 /* $(CPU)/.../vfd.c */
601 ulong vfd_setmem (ulong);
603 /* $(CPU)/.../video.c */
604 ulong video_setmem (ulong);
606 /* arch/$(ARCH)/lib/cache.c */
607 void flush_cache (unsigned long, unsigned long);
608 void flush_dcache_range(unsigned long start, unsigned long stop);
609 void invalidate_dcache_range(unsigned long start, unsigned long stop);
612 /* arch/$(ARCH)/lib/ticks.S */
613 unsigned long long get_ticks(void);
614 void wait_ticks (unsigned long);
616 /* arch/$(ARCH)/lib/time.c */
617 void __udelay (unsigned long);
618 ulong usec2ticks (unsigned long usec);
619 ulong ticks2usec (unsigned long ticks);
620 int init_timebase (void);
623 int gunzip(void *, int, unsigned char *, unsigned long *);
624 int zunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp,
625 int stoponerr, int offset);
627 /* lib/net_utils.c */
629 static inline IPaddr_t getenv_IPaddr (char *var)
631 return (string_to_ip(getenv(var)));
635 void udelay (unsigned long);
638 ulong simple_strtoul(const char *cp,char **endp,unsigned int base);
639 unsigned long long simple_strtoull(const char *cp,char **endp,unsigned int base);
640 long simple_strtol(const char *cp,char **endp,unsigned int base);
641 void panic(const char *fmt, ...)
642 __attribute__ ((format (__printf__, 1, 2)));
643 int sprintf(char * buf, const char *fmt, ...)
644 __attribute__ ((format (__printf__, 2, 3)));
645 int vsprintf(char *buf, const char *fmt, va_list args);
648 char * strmhz(char *buf, long hz);
651 #include <u-boot/crc.h>
653 /* common/console.c */
654 int console_init_f(void); /* Before relocation; uses the serial stuff */
655 int console_init_r(void); /* After relocation; uses the console stuff */
656 int console_assign (int file, char *devname); /* Assign the console */
658 int had_ctrlc (void); /* have we had a Control-C since last clear? */
659 void clear_ctrlc (void); /* clear the Control-C condition */
660 int disable_ctrlc (int); /* 1 to disable, 0 to enable Control-C detect */
663 * STDIO based functions (can always be used)
666 int serial_printf (const char *fmt, ...)
667 __attribute__ ((format (__printf__, 1, 2)));
673 void putc(const char c);
674 void puts(const char *s);
675 int printf(const char *fmt, ...)
676 __attribute__ ((format (__printf__, 1, 2)));
677 int vprintf(const char *fmt, va_list args);
680 #define eputc(c) fputc(stderr, c)
681 #define eputs(s) fputs(stderr, s)
682 #define eprintf(fmt,args...) fprintf(stderr,fmt ,##args)
685 * FILE based functions (can only be used AFTER relocation!)
692 int fprintf(int file, const char *fmt, ...)
693 __attribute__ ((format (__printf__, 2, 3)));
694 void fputs(int file, const char *s);
695 void fputc(int file, const char c);
700 * CONSOLE multiplexing.
702 #ifdef CONFIG_CONSOLE_MUX
706 int pcmcia_init (void);
708 #ifdef CONFIG_STATUS_LED
709 # include <status_led.h>
712 * Board-specific Platform code can reimplement show_boot_progress () if needed
714 void show_boot_progress(int val);
716 /* Multicore arch functions */
718 int cpu_status(int nr);
719 int cpu_reset(int nr);
720 int cpu_disable(int nr);
721 int cpu_release(int nr, int argc, char * const argv[]);
724 #endif /* __ASSEMBLY__ */
726 /* Put only stuff here that the assembler can digest */
729 #define CONFIG_HAS_POST
732 #ifdef CONFIG_INIT_CRITICAL
733 #error CONFIG_INIT_CRITICAL is deprecated!
734 #error Read section CONFIG_SKIP_LOWLEVEL_INIT in README.
737 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
739 #define ROUND(a,b) (((a) + (b)) & ~((b) - 1))
740 #define DIV_ROUND(n,d) (((n) + ((d)/2)) / (d))
741 #define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
742 #define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
744 #define ALIGN(x,a) __ALIGN_MASK((x),(typeof(x))(a)-1)
745 #define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))
747 #endif /* __COMMON_H_ */