blob: 2516bfd30c0dc52234c4c9bc9b17ac7e2467efad [file] [log] [blame]
wdenke2211742002-11-02 23:30:20 +00001/*
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +02002 * (C) Copyright 2000-2007
wdenke2211742002-11-02 23:30:20 +00003 * Wolfgang Denk, DENX Software Engineering, wd@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
wdenkad276f22004-01-04 16:28:35 +000015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenke2211742002-11-02 23:30:20 +000016 * 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
30typedef unsigned char uchar;
31typedef volatile unsigned long vu_long;
wdenkad276f22004-01-04 16:28:35 +000032typedef volatile unsigned short vu_short;
wdenke2211742002-11-02 23:30:20 +000033typedef 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>
Stefan Roese54ef7fd2007-06-25 15:57:39 +020041#if defined(CONFIG_PCI) && (defined(CONFIG_4xx) && !defined(CONFIG_AP1000))
wdenke2211742002-11-02 23:30:20 +000042#include <pci.h>
43#endif
wdenkad276f22004-01-04 16:28:35 +000044#if defined(CONFIG_8xx)
wdenke2211742002-11-02 23:30:20 +000045#include <asm/8xx_immap.h>
wdenk1ebf41e2004-01-02 14:00:00 +000046#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)
wdenka7556b22004-06-06 21:35:06 +000051# define CONFIG_MPC866_FAMILY 1
wdenkad276f22004-01-04 16:28:35 +000052#elif defined(CONFIG_MPC870) \
53 || defined(CONFIG_MPC875) \
54 || defined(CONFIG_MPC880) \
55 || defined(CONFIG_MPC885)
wdenka7556b22004-06-06 21:35:06 +000056# define CONFIG_MPC885_FAMILY 1
wdenkad276f22004-01-04 16:28:35 +000057#endif
58#if defined(CONFIG_MPC860) \
59 || defined(CONFIG_MPC860T) \
wdenka7556b22004-06-06 21:35:06 +000060 || defined(CONFIG_MPC866_FAMILY) \
61 || defined(CONFIG_MPC885_FAMILY)
wdenkad276f22004-01-04 16:28:35 +000062# define CONFIG_MPC86x 1
wdenk2bb11052003-07-17 23:16:40 +000063#endif
wdenk359733b2003-03-31 17:27:09 +000064#elif defined(CONFIG_5xx)
65#include <asm/5xx_immap.h>
wdenkdc130442004-12-12 22:06:17 +000066#elif defined(CONFIG_MPC5xxx)
67#include <mpc5xxx.h>
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +020068#elif defined(CONFIG_MPC512X)
69#include <mpc512x.h>
70#include <asm/immap_512x.h>
wdenk337f5652004-10-28 00:09:35 +000071#elif defined(CONFIG_MPC8220)
72#include <asm/immap_8220.h>
wdenke2211742002-11-02 23:30:20 +000073#elif defined(CONFIG_8260)
wdenk3902d702004-04-15 18:22:41 +000074#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
wdenke2211742002-11-02 23:30:20 +000083#include <asm/immap_8260.h>
84#endif
Jon Loeliger5c8aa972006-04-26 17:58:56 -050085#ifdef CONFIG_MPC86xx
86#include <mpc86xx.h>
87#include <asm/immap_86xx.h>
88#endif
wdenk9c53f402003-10-15 23:53:47 +000089#ifdef CONFIG_MPC85xx
90#include <mpc85xx.h>
91#include <asm/immap_85xx.h>
92#endif
Eran Liberty9095d4a2005-07-28 10:08:46 -050093#ifdef CONFIG_MPC83XX
94#include <mpc83xx.h>
95#include <asm/immap_83xx.h>
96#endif
wdenke2211742002-11-02 23:30:20 +000097#ifdef CONFIG_4xx
98#include <ppc4xx.h>
99#endif
100#ifdef CONFIG_HYMOD
wdenkb00ec162003-06-19 23:40:20 +0000101#include <board/hymod/hymod.h>
wdenke2211742002-11-02 23:30:20 +0000102#endif
103#ifdef CONFIG_ARM
104#define asmlinkage /* nothing */
105#endif
Mike Frysinger49224832008-02-04 19:26:54 -0500106#ifdef CONFIG_BLACKFIN
107#include <asm/blackfin.h>
108#endif
wdenke2211742002-11-02 23:30:20 +0000109
110#include <part.h>
111#include <flash.h>
112#include <image.h>
113
114#ifdef DEBUG
115#define debug(fmt,args...) printf (fmt ,##args)
wdenk88e72a32003-06-19 23:04:19 +0000116#define debugX(level,fmt,args...) if (DEBUG>=level) printf(fmt,##args);
wdenke2211742002-11-02 23:30:20 +0000117#else
118#define debug(fmt,args...)
wdenk88e72a32003-06-19 23:04:19 +0000119#define debugX(level,fmt,args...)
wdenke2211742002-11-02 23:30:20 +0000120#endif /* DEBUG */
121
William Juul52c07962007-10-31 13:53:06 +0100122#ifndef BUG
Detlev Zundel1d75a772006-09-01 11:59:23 +0200123#define BUG() do { \
Wolfgang Denk4df0da52006-10-09 00:42:01 +0200124 printf("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __FUNCTION__); \
Detlev Zundel1d75a772006-09-01 11:59:23 +0200125 panic("BUG!"); \
126} while (0)
127#define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0)
William Juul52c07962007-10-31 13:53:06 +0100128#endif /* BUG */
Detlev Zundel1d75a772006-09-01 11:59:23 +0200129
wdenk87249ba2004-01-06 22:38:14 +0000130typedef void (interrupt_handler_t)(void *);
wdenke2211742002-11-02 23:30:20 +0000131
wdenk87249ba2004-01-06 22:38:14 +0000132#include <asm/u-boot.h> /* boot information for Linux kernel */
wdenke2211742002-11-02 23:30:20 +0000133#include <asm/global_data.h> /* global data used for startup functions */
134
wdenk7a428cc2003-06-15 22:40:42 +0000135/*
136 * enable common handling for all TQM8xxL/M boards:
Martin Krausefa83bbb2007-09-26 17:55:56 +0200137 * - CONFIG_TQM8xxM will be defined for all TQM8xxM boards
wdenk7a428cc2003-06-15 22:40:42 +0000138 * - CONFIG_TQM8xxL will be defined for all TQM8xxL _and_ TQM8xxM boards
Martin Krausefa83bbb2007-09-26 17:55:56 +0200139 * and for the TQM885D board
wdenk7a428cc2003-06-15 22:40:42 +0000140 */
141#if defined(CONFIG_TQM823M) || defined(CONFIG_TQM850M) || \
142 defined(CONFIG_TQM855M) || defined(CONFIG_TQM860M) || \
Martin Krausefa83bbb2007-09-26 17:55:56 +0200143 defined(CONFIG_TQM862M) || defined(CONFIG_TQM866M)
wdenk7a428cc2003-06-15 22:40:42 +0000144# ifndef CONFIG_TQM8xxM
145# define CONFIG_TQM8xxM
146# endif
147#endif
wdenke2211742002-11-02 23:30:20 +0000148#if defined(CONFIG_TQM823L) || defined(CONFIG_TQM850L) || \
wdenk6bd14892003-04-10 11:18:18 +0000149 defined(CONFIG_TQM855L) || defined(CONFIG_TQM860L) || \
Martin Krausefa83bbb2007-09-26 17:55:56 +0200150 defined(CONFIG_TQM862L) || defined(CONFIG_TQM8xxM) || \
151 defined(CONFIG_TQM885D)
wdenke2211742002-11-02 23:30:20 +0000152# ifndef CONFIG_TQM8xxL
153# define CONFIG_TQM8xxL
154# endif
155#endif
156
wdenk7ac16102004-08-01 22:48:16 +0000157#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 */
wdenke2211742002-11-02 23:30:20 +0000168
169/*
wdenk452cfd62002-11-19 11:04:11 +0000170 * 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
Haavard Skinnemoene1256272008-05-16 11:10:30 +0200181/**
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
wdenk452cfd62002-11-19 11:04:11 +0000192/*
wdenke2211742002-11-02 23:30:20 +0000193 * Function Prototypes
194 */
195
wdenkc35ba4e2004-03-14 22:25:36 +0000196#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
wdenke2211742002-11-02 23:30:20 +0000197void serial_buffered_init (void);
198void serial_buffered_putc (const char);
199void serial_buffered_puts (const char *);
200int serial_buffered_getc (void);
201int serial_buffered_tstc (void);
202#endif /* CONFIG_SERIAL_SOFTWARE_FIFO */
203
wdenk87249ba2004-01-06 22:38:14 +0000204void hang (void) __attribute__ ((noreturn));
wdenke2211742002-11-02 23:30:20 +0000205
206/* */
Becky Brucebd99ae72008-06-09 16:03:40 -0500207phys_size_t initdram (int);
wdenk87249ba2004-01-06 22:38:14 +0000208int display_options (void);
Becky Bruce6b468aa2008-06-09 20:37:17 -0500209void print_size (phys_size_t, const char *);
Wolfgang Denk52232fd2007-02-27 14:26:04 +0100210int print_buffer (ulong addr, void* data, uint width, uint count, uint linelen);
wdenke2211742002-11-02 23:30:20 +0000211
212/* common/main.c */
213void main_loop (void);
214int run_command (const char *cmd, int flag);
215int readline (const char *const prompt);
James Yang20ffa972008-01-09 11:17:49 -0600216int readline_into_buffer (const char *const prompt, char * buffer);
217int parse_line (char *, char *[]);
wdenkb00ec162003-06-19 23:40:20 +0000218void init_cmd_timeout(void);
wdenke2211742002-11-02 23:30:20 +0000219void reset_cmd_timeout(void);
220
wdenk9f837932003-10-09 19:00:25 +0000221/* lib_$(ARCH)/board.c */
Mike Frysinger791c8e32008-01-28 05:46:01 -0500222void board_init_f (ulong) __attribute__ ((noreturn));
223void board_init_r (gd_t *, ulong) __attribute__ ((noreturn));
wdenke2211742002-11-02 23:30:20 +0000224int checkboard (void);
225int checkflash (void);
226int checkdram (void);
wdenke2211742002-11-02 23:30:20 +0000227int last_stage_init(void);
wdenkb9a83a92003-05-30 12:48:29 +0000228extern ulong monitor_flash_len;
Haiying Wang34c68782006-07-12 10:48:05 -0400229int mac_read_from_eeprom(void);
wdenke2211742002-11-02 23:30:20 +0000230
231/* common/flash.c */
232void flash_perror (int);
233
wdenkf12e3962003-06-29 21:03:46 +0000234/* common/cmd_autoscript.c */
Marian Balakowicz23b77a22008-03-12 10:33:00 +0100235int autoscript (ulong addr, const char *fit_uname);
wdenke2211742002-11-02 23:30:20 +0000236
wdenk87249ba2004-01-06 22:38:14 +0000237extern ulong load_addr; /* Default Load Address */
wdenke2211742002-11-02 23:30:20 +0000238
239/* common/cmd_nvedit.c */
240int env_init (void);
241void env_relocate (void);
Rafal Jaworowski75b54422008-01-09 18:05:27 +0100242int envmatch (uchar *, int);
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200243char *getenv (char *);
244int getenv_r (char *name, char *buf, unsigned len);
wdenk87249ba2004-01-06 22:38:14 +0000245int saveenv (void);
wdenke2211742002-11-02 23:30:20 +0000246#ifdef CONFIG_PPC /* ARM version to be fixed! */
Steven A. Falco1ce6f992008-06-12 13:22:12 -0400247int inline setenv (char *, char *);
wdenk591dda52002-11-18 00:14:45 +0000248#else
Steven A. Falco1ce6f992008-06-12 13:22:12 -0400249int setenv (char *, char *);
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200250#ifdef CONFIG_HAS_UID
251void forceenv (char *, char *);
252#endif
wdenke2211742002-11-02 23:30:20 +0000253#endif /* CONFIG_PPC */
254#ifdef CONFIG_ARM
wdenk295ccfa2004-12-13 09:49:01 +0000255# include <asm/mach-types.h>
wdenkbc01dd52004-01-02 16:05:07 +0000256# include <asm/setup.h>
wdenke2211742002-11-02 23:30:20 +0000257# include <asm/u-boot-arm.h> /* ARM version to be fixed! */
258#endif /* CONFIG_ARM */
wdenk591dda52002-11-18 00:14:45 +0000259#ifdef CONFIG_I386 /* x86 version to be fixed! */
wdenk57b2d802003-06-27 21:31:46 +0000260# include <asm/u-boot-i386.h>
wdenk591dda52002-11-18 00:14:45 +0000261#endif /* CONFIG_I386 */
wdenke2211742002-11-02 23:30:20 +0000262
wdenk3902d702004-04-15 18:22:41 +0000263#ifdef CONFIG_AUTO_COMPLETE
264int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf);
265#endif
266
wdenk87249ba2004-01-06 22:38:14 +0000267void pci_init (void);
268void pci_init_board(void);
269void pciinfo (int, int);
wdenke2211742002-11-02 23:30:20 +0000270
Stefan Roese54ef7fd2007-06-25 15:57:39 +0200271#if defined(CONFIG_PCI) && (defined(CONFIG_4xx) && !defined(CONFIG_AP1000))
wdenk87249ba2004-01-06 22:38:14 +0000272 int pci_pre_init (struct pci_controller * );
Stefan Roese54ef7fd2007-06-25 15:57:39 +0200273#endif
274
Stefan Roese153b3e22007-10-05 17:10:59 +0200275#if defined(CONFIG_PCI) && (defined(CONFIG_440) || defined(CONFIG_405EX))
wdenke2211742002-11-02 23:30:20 +0000276# if defined(CFG_PCI_TARGET_INIT)
wdenk87249ba2004-01-06 22:38:14 +0000277 void pci_target_init (struct pci_controller *);
wdenke2211742002-11-02 23:30:20 +0000278# endif
279# if defined(CFG_PCI_MASTER_INIT)
wdenk87249ba2004-01-06 22:38:14 +0000280 void pci_master_init (struct pci_controller *);
wdenke2211742002-11-02 23:30:20 +0000281# endif
wdenk87249ba2004-01-06 22:38:14 +0000282 int is_pci_host (struct pci_controller *);
Stefan Roese56291f32008-03-11 15:11:18 +0100283#if defined(CONFIG_440SPE) || \
284 defined(CONFIG_460EX) || defined(CONFIG_460GT) || \
285 defined(CONFIG_405EX)
Grzegorz Bernackid2f21332007-09-07 18:20:23 +0200286 void pcie_setup_hoses(int busno);
Rafal Jaworowskia2e7ef02006-08-10 12:43:17 +0200287#endif
wdenke2211742002-11-02 23:30:20 +0000288#endif
289
Adam Graham97a55812008-09-03 12:26:59 -0700290/*
291 * Prototypes
292 */
293#if defined(CONFIG_SDRAM_PPC4xx_IBM_DDR2)
294void blank_string(int);
295inline void ppc4xx_ibm_ddr2_register_dump(void);
296#if defined(CONFIG_440)
297u32 mfdcr_any(u32);
298void mtdcr_any(u32, u32);
299#endif
300#if defined(CONFIG_SPD_EEPROM)
301u32 ddr_wrdtr(u32);
302u32 ddr_clktr(u32);
303void spd_ddr_init_hang(void);
304#endif
305#endif /* defined(CONFIG_SDRAM_PPC4xx_IBM_DDR2) */
306
307#if defined(CONFIG_PPC4xx_DDR_AUTOCALIBRATION)
308u32 DQS_autocalibration(void);
309#endif /* CONFIG_PPC4xx_DDR_AUTOCALIBRATION */
310
wdenke2211742002-11-02 23:30:20 +0000311int misc_init_f (void);
312int misc_init_r (void);
313
wdenk874ac262003-07-24 23:38:38 +0000314/* common/exports.c */
315void jumptable_init(void);
316
Rafal Jaworowskia19be782008-01-09 19:39:36 +0100317/* api/api.c */
318void api_init (void);
319
wdenk87249ba2004-01-06 22:38:14 +0000320/* common/memsize.c */
Wolfgang Denkc0cc46e2006-11-06 17:06:36 +0100321long get_ram_size (volatile long *, long);
wdenk87249ba2004-01-06 22:38:14 +0000322
wdenke2211742002-11-02 23:30:20 +0000323/* $(BOARD)/$(BOARD).c */
324void reset_phy (void);
wdenk87249ba2004-01-06 22:38:14 +0000325void fdc_hw_init (void);
wdenke2211742002-11-02 23:30:20 +0000326
327/* $(BOARD)/eeprom.c */
328void eeprom_init (void);
wdenkb00ec162003-06-19 23:40:20 +0000329#ifndef CONFIG_SPI
330int eeprom_probe (unsigned dev_addr, unsigned offset);
331#endif
wdenke2211742002-11-02 23:30:20 +0000332int eeprom_read (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt);
333int eeprom_write (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt);
334#ifdef CONFIG_LWMON
335extern uchar pic_read (uchar reg);
336extern void pic_write (uchar reg, uchar val);
337#endif
338
339/*
340 * Set this up regardless of board
341 * type, to prevent errors.
342 */
343#if defined(CONFIG_SPI) || !defined(CFG_I2C_EEPROM_ADDR)
344# define CFG_DEF_EEPROM_ADDR 0
345#else
346# define CFG_DEF_EEPROM_ADDR CFG_I2C_EEPROM_ADDR
347#endif /* CONFIG_SPI || !defined(CFG_I2C_EEPROM_ADDR) */
348
wdenk0a658552003-08-05 17:43:17 +0000349#if defined(CONFIG_SPI)
wdenke2211742002-11-02 23:30:20 +0000350extern void spi_init_f (void);
351extern void spi_init_r (void);
wdenk87249ba2004-01-06 22:38:14 +0000352extern ssize_t spi_read (uchar *, int, uchar *, int);
wdenke2211742002-11-02 23:30:20 +0000353extern ssize_t spi_write (uchar *, int, uchar *, int);
354#endif
355
356#ifdef CONFIG_RPXCLASSIC
357void rpxclassic_init (void);
358#endif
359
wdenkec432742004-06-09 21:04:48 +0000360void rpxlite_init (void);
361
wdenke2211742002-11-02 23:30:20 +0000362#ifdef CONFIG_MBX
363/* $(BOARD)/mbx8xx.c */
364void mbx_init (void);
365void board_serial_init (void);
366void board_ether_init (void);
367#endif
368
wdenk544e9732004-02-06 23:19:44 +0000369#if defined(CONFIG_RPXCLASSIC) || defined(CONFIG_MBX) || \
Stefan Roese5ff4c3f2005-08-15 12:31:23 +0200370 defined(CONFIG_IAD210) || defined(CONFIG_XPEDITE1K) || \
Bartlomiej Sieka2dfa3d22006-10-13 21:09:09 +0200371 defined(CONFIG_METROBOX) || defined(CONFIG_KAREF) || \
372 defined(CONFIG_V38B)
wdenke2211742002-11-02 23:30:20 +0000373void board_get_enetaddr (uchar *addr);
374#endif
375
376#ifdef CONFIG_HERMES
377/* $(BOARD)/hermes.c */
378void hermes_start_lxt980 (int speed);
379#endif
380
381#ifdef CONFIG_EVB64260
382void evb64260_init(void);
383void debug_led(int, int);
384void display_mem_map(void);
385void perform_soft_reset(void);
386#endif
387
388void load_sernum_ethaddr (void);
389
390/* $(BOARD)/$(BOARD).c */
wdenkda55c6e2004-01-20 23:12:12 +0000391int board_early_init_f (void);
392int board_late_init (void);
wdenke2211742002-11-02 23:30:20 +0000393int board_postclk_init (void); /* after clocks/timebase, before env/serial */
wdenkda55c6e2004-01-20 23:12:12 +0000394int board_early_init_r (void);
wdenke2211742002-11-02 23:30:20 +0000395void board_poweroff (void);
396
397#if defined(CFG_DRAM_TEST)
398int testdram(void);
399#endif /* CFG_DRAM_TEST */
400
401/* $(CPU)/start.S */
wdenk87249ba2004-01-06 22:38:14 +0000402#if defined(CONFIG_5xx) || \
wdenk359733b2003-03-31 17:27:09 +0000403 defined(CONFIG_8xx)
wdenke2211742002-11-02 23:30:20 +0000404uint get_immr (uint);
405#endif
wdenk87249ba2004-01-06 22:38:14 +0000406uint get_pir (void);
wdenk2d644822004-06-09 17:45:32 +0000407#if defined(CONFIG_MPC5xxx)
408uint get_svr (void);
409#endif
wdenke2211742002-11-02 23:30:20 +0000410uint get_pvr (void);
wdenkcc245992004-06-09 00:51:50 +0000411uint get_svr (void);
wdenke2211742002-11-02 23:30:20 +0000412uint rd_ic_cst (void);
413void wr_ic_cst (uint);
414void wr_ic_adr (uint);
415uint rd_dc_cst (void);
416void wr_dc_cst (uint);
417void wr_dc_adr (uint);
418int icache_status (void);
419void icache_enable (void);
420void icache_disable(void);
421int dcache_status (void);
422void dcache_enable (void);
423void dcache_disable(void);
Anatolij Gustschin1dda8ca2008-02-15 00:13:20 +0100424void relocate_code (ulong, gd_t *, ulong) __attribute__ ((noreturn));
wdenke2211742002-11-02 23:30:20 +0000425ulong get_endaddr (void);
426void trap_init (ulong);
427#if defined (CONFIG_4xx) || \
wdenkaea86e42004-03-23 22:53:55 +0000428 defined (CONFIG_MPC5xxx) || \
wdenke2211742002-11-02 23:30:20 +0000429 defined (CONFIG_74xx_7xx) || \
430 defined (CONFIG_74x) || \
431 defined (CONFIG_75x) || \
wdenk13eb2212004-07-09 23:27:13 +0000432 defined (CONFIG_74xx) || \
wdenk337f5652004-10-28 00:09:35 +0000433 defined (CONFIG_MPC8220) || \
Marian Balakowiczaf03ecb2006-03-14 16:02:31 +0100434 defined (CONFIG_MPC85xx) || \
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500435 defined (CONFIG_MPC86xx) || \
Marian Balakowiczaf03ecb2006-03-14 16:02:31 +0100436 defined (CONFIG_MPC83XX)
wdenk87249ba2004-01-06 22:38:14 +0000437unsigned char in8(unsigned int);
438void out8(unsigned int, unsigned char);
439unsigned short in16(unsigned int);
440unsigned short in16r(unsigned int);
441void out16(unsigned int, unsigned short value);
442void out16r(unsigned int, unsigned short value);
443unsigned long in32(unsigned int);
444unsigned long in32r(unsigned int);
445void out32(unsigned int, unsigned long value);
446void out32r(unsigned int, unsigned long value);
447void ppcDcbf(unsigned long value);
448void ppcDcbi(unsigned long value);
449void ppcSync(void);
wdenk13eb2212004-07-09 23:27:13 +0000450void ppcDcbz(unsigned long value);
wdenke2211742002-11-02 23:30:20 +0000451#endif
Michal Simek04ae75f2007-04-21 21:02:40 +0200452#if defined (CONFIG_MICROBLAZE)
453unsigned short in16(unsigned int);
454void out16(unsigned int, unsigned short value);
455#endif
wdenke2211742002-11-02 23:30:20 +0000456
Dave Liu8c84e472006-11-02 18:05:50 -0600457#if defined (CONFIG_MPC83XX)
458void ppcDWload(unsigned int *addr, unsigned int *ret);
459void ppcDWstore(unsigned int *addr, unsigned int *value);
460#endif
461
wdenke2211742002-11-02 23:30:20 +0000462/* $(CPU)/cpu.c */
463int checkcpu (void);
464int checkicache (void);
465int checkdcache (void);
466void upmconfig (unsigned int, unsigned int *, unsigned int);
467ulong get_tbclk (void);
wdenk1e8d0c52005-04-03 17:23:39 +0000468void reset_cpu (ulong addr);
Kim Phillipsdc0b59d2007-08-15 22:30:26 -0500469#if defined (CONFIG_OF_LIBFDT) && defined (CONFIG_OF_BOARD_SETUP)
470void ft_cpu_setup(void *blob, bd_t *bd);
471#ifdef CONFIG_PCI
472void ft_pci_setup(void *blob, bd_t *bd);
473#endif
474#endif
475
wdenke2211742002-11-02 23:30:20 +0000476
477/* $(CPU)/serial.c */
478int serial_init (void);
wdenke0c812a2005-04-03 15:51:42 +0000479void serial_addr (unsigned int);
wdenke2211742002-11-02 23:30:20 +0000480void serial_setbrg (void);
481void serial_putc (const char);
wdenke0c812a2005-04-03 15:51:42 +0000482void serial_putc_raw(const char);
wdenke2211742002-11-02 23:30:20 +0000483void serial_puts (const char *);
wdenke2211742002-11-02 23:30:20 +0000484int serial_getc (void);
485int serial_tstc (void);
486
wdenke0c812a2005-04-03 15:51:42 +0000487void _serial_setbrg (const int);
488void _serial_putc (const char, const int);
489void _serial_putc_raw(const char, const int);
490void _serial_puts (const char *, const int);
491int _serial_getc (const int);
492int _serial_tstc (const int);
493
wdenke2211742002-11-02 23:30:20 +0000494/* $(CPU)/speed.c */
495int get_clocks (void);
wdenkb50cde52004-01-24 20:25:54 +0000496int get_clocks_866 (void);
497int sdram_adjust_866 (void);
wdenkc78bf132004-04-24 23:23:30 +0000498int adjust_sdram_tbs_8xx (void);
wdenke2211742002-11-02 23:30:20 +0000499#if defined(CONFIG_8260)
500int prt_8260_clks (void);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500501#elif defined(CONFIG_MPC5xxx)
wdenk21136db2003-07-16 21:53:01 +0000502int prt_mpc5xxx_clks (void);
503#endif
Grzegorz Bernackifdf760e2008-01-08 17:16:59 +0100504#if defined(CONFIG_MPC512X)
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200505int prt_mpc512xxx_clks (void);
506#endif
wdenk337f5652004-10-28 00:09:35 +0000507#if defined(CONFIG_MPC8220)
508int prt_mpc8220_clks (void);
509#endif
wdenke2211742002-11-02 23:30:20 +0000510#ifdef CONFIG_4xx
511ulong get_OPB_freq (void);
512ulong get_PCI_freq (void);
513#endif
Guennadi Liakhovetski8c170c52008-08-31 00:39:46 +0200514#if defined(CONFIG_S3C2400) || defined(CONFIG_S3C2410) || \
515 defined(CONFIG_LH7A40X) || defined(CONFIG_S3C6400)
Harald Weltedcf57592007-12-19 14:19:38 +0100516void s3c2410_irq(void);
517#define ARM920_IRQ_CALLBACK s3c2410_irq
wdenke2211742002-11-02 23:30:20 +0000518ulong get_FCLK (void);
519ulong get_HCLK (void);
520ulong get_PCLK (void);
521ulong get_UCLK (void);
522#endif
wdenk3c711762004-06-09 13:37:52 +0000523#if defined(CONFIG_LH7A40X)
524ulong get_PLLCLK (void);
525#endif
wdenk67f13362003-12-27 19:24:54 +0000526#if defined CONFIG_INCA_IP
wdenk87249ba2004-01-06 22:38:14 +0000527uint incaip_get_cpuclk (void);
wdenk67f13362003-12-27 19:24:54 +0000528#endif
wdenk7ac16102004-08-01 22:48:16 +0000529#if defined(CONFIG_IMX)
530ulong get_systemPLLCLK(void);
531ulong get_FCLK(void);
532ulong get_HCLK(void);
533ulong get_BCLK(void);
534ulong get_PERCLK1(void);
535ulong get_PERCLK2(void);
536ulong get_PERCLK3(void);
537#endif
wdenke2211742002-11-02 23:30:20 +0000538ulong get_bus_freq (ulong);
539
wdenk9c53f402003-10-15 23:53:47 +0000540#if defined(CONFIG_MPC85xx)
541typedef MPC85xx_SYS_INFO sys_info_t;
wdenk87249ba2004-01-06 22:38:14 +0000542void get_sys_info ( sys_info_t * );
Kumar Gala07db1702007-12-07 04:59:26 -0600543ulong get_ddr_freq (ulong);
wdenk9c53f402003-10-15 23:53:47 +0000544#endif
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500545#if defined(CONFIG_MPC86xx)
546typedef MPC86xx_SYS_INFO sys_info_t;
547void get_sys_info ( sys_info_t * );
548#endif
wdenk9c53f402003-10-15 23:53:47 +0000549
wdenke2211742002-11-02 23:30:20 +0000550#if defined(CONFIG_4xx) || defined(CONFIG_IOP480)
551# if defined(CONFIG_440)
Marian Balakowicz49d0eee2006-06-30 16:30:46 +0200552# if defined(CONFIG_440SPE)
553 unsigned long determine_sysper(void);
554 unsigned long determine_pci_clock_per(void);
555# endif
wdenke2211742002-11-02 23:30:20 +0000556# endif
Stefan Roeseedd73f22007-10-21 08:12:41 +0200557typedef PPC4xx_SYS_INFO sys_info_t;
Stefan Roese1ce9fe92007-11-16 14:16:54 +0100558int ppc440spe_revB(void);
wdenk87249ba2004-01-06 22:38:14 +0000559void get_sys_info ( sys_info_t * );
wdenke2211742002-11-02 23:30:20 +0000560#endif
561
562/* $(CPU)/cpu_init.c */
563#if defined(CONFIG_8xx) || defined(CONFIG_8260)
564void cpu_init_f (volatile immap_t *immr);
565#endif
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500566#if defined(CONFIG_4xx) || defined(CONFIG_MPC85xx) || defined(CONFIG_MCF52x2) ||defined(CONFIG_MPC86xx)
wdenke2211742002-11-02 23:30:20 +0000567void cpu_init_f (void);
568#endif
wdenke65527f2004-02-12 00:47:09 +0000569
wdenke2211742002-11-02 23:30:20 +0000570int cpu_init_r (void);
571#if defined(CONFIG_8260)
572int prt_8260_rsr (void);
Dave Liuebd35f82007-06-25 10:41:56 +0800573#elif defined(CONFIG_MPC83XX)
574int prt_83xx_rsr (void);
wdenke2211742002-11-02 23:30:20 +0000575#endif
576
577/* $(CPU)/interrupts.c */
wdenk87249ba2004-01-06 22:38:14 +0000578int interrupt_init (void);
579void timer_interrupt (struct pt_regs *);
wdenke2211742002-11-02 23:30:20 +0000580void external_interrupt (struct pt_regs *);
581void irq_install_handler(int, interrupt_handler_t *, void *);
582void irq_free_handler (int);
583void reset_timer (void);
584ulong get_timer (ulong base);
585void set_timer (ulong t);
586void enable_interrupts (void);
587int disable_interrupts (void);
588
589/* $(CPU)/.../commproc.c */
590int dpram_init (void);
591uint dpram_base(void);
592uint dpram_base_align(uint align);
593uint dpram_alloc(uint size);
594uint dpram_alloc_align(uint size,uint align);
595void post_word_store (ulong);
596ulong post_word_load (void);
wdenk0a658552003-08-05 17:43:17 +0000597void bootcount_store (ulong);
598ulong bootcount_load (void);
599#define BOOTCOUNT_MAGIC 0xB001C041
wdenke2211742002-11-02 23:30:20 +0000600
601/* $(CPU)/.../<eth> */
Wolfgang Denk0769f192007-08-29 14:05:30 +0200602void mii_init (void);
wdenke2211742002-11-02 23:30:20 +0000603
604/* $(CPU)/.../lcd.c */
605ulong lcd_setmem (ulong);
606
607/* $(CPU)/.../vfd.c */
608ulong vfd_setmem (ulong);
609
610/* $(CPU)/.../video.c */
611ulong video_setmem (ulong);
612
wdenkb5bb1392004-07-10 23:11:10 +0000613/* lib_$(ARCH)/cache.c */
wdenke2211742002-11-02 23:30:20 +0000614void flush_cache (unsigned long, unsigned long);
615
wdenk359733b2003-03-31 17:27:09 +0000616
wdenk9f837932003-10-09 19:00:25 +0000617/* lib_$(ARCH)/ticks.S */
wdenke2211742002-11-02 23:30:20 +0000618unsigned long long get_ticks(void);
619void wait_ticks (unsigned long);
620
wdenk9f837932003-10-09 19:00:25 +0000621/* lib_$(ARCH)/time.c */
wdenke2211742002-11-02 23:30:20 +0000622void udelay (unsigned long);
623ulong usec2ticks (unsigned long usec);
624ulong ticks2usec (unsigned long ticks);
625int init_timebase (void);
626
wdenk9f837932003-10-09 19:00:25 +0000627/* lib_generic/vsprintf.c */
wdenke2211742002-11-02 23:30:20 +0000628ulong simple_strtoul(const char *cp,char **endp,unsigned int base);
wdenkc35ba4e2004-03-14 22:25:36 +0000629#ifdef CFG_64BIT_VSPRINTF
wdenkf602aa02004-03-13 23:29:43 +0000630unsigned long long simple_strtoull(const char *cp,char **endp,unsigned int base);
631#endif
wdenke2211742002-11-02 23:30:20 +0000632long simple_strtol(const char *cp,char **endp,unsigned int base);
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700633void panic(const char *fmt, ...)
634 __attribute__ ((format (__printf__, 1, 2)));
635int sprintf(char * buf, const char *fmt, ...)
636 __attribute__ ((format (__printf__, 2, 3)));
wdenk87249ba2004-01-06 22:38:14 +0000637int vsprintf(char *buf, const char *fmt, va_list args);
wdenke2211742002-11-02 23:30:20 +0000638
Haavard Skinnemoenb644d6b2008-08-18 13:41:27 +0200639/* lib_generic/strmhz.c */
640char * strmhz(char *buf, long hz);
641
wdenk9f837932003-10-09 19:00:25 +0000642/* lib_generic/crc32.c */
Mike Frysingera2c67e92008-03-31 11:02:01 -0400643uint32_t crc32 (uint32_t, const unsigned char *, uint);
Bartlomiej Siekada5045d2008-04-22 12:27:56 +0200644uint32_t crc32_wd (uint32_t, const unsigned char *, uint, uint);
Mike Frysingera2c67e92008-03-31 11:02:01 -0400645uint32_t crc32_no_comp (uint32_t, const unsigned char *, uint);
wdenke2211742002-11-02 23:30:20 +0000646
647/* common/console.c */
wdenke2211742002-11-02 23:30:20 +0000648int console_init_f(void); /* Before relocation; uses the serial stuff */
649int console_init_r(void); /* After relocation; uses the console stuff */
650int console_assign (int file, char *devname); /* Assign the console */
651int ctrlc (void);
652int had_ctrlc (void); /* have we had a Control-C since last clear? */
653void clear_ctrlc (void); /* clear the Control-C condition */
654int disable_ctrlc (int); /* 1 to disable, 0 to enable Control-C detect */
655
656/*
657 * STDIO based functions (can always be used)
658 */
659
660/* serial stuff */
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700661void serial_printf (const char *fmt, ...)
662 __attribute__ ((format (__printf__, 1, 2)));
wdenke2211742002-11-02 23:30:20 +0000663
664/* stdin */
665int getc(void);
666int tstc(void);
667
668/* stdout */
669void putc(const char c);
670void puts(const char *s);
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700671void printf(const char *fmt, ...)
672 __attribute__ ((format (__printf__, 1, 2)));
wdenkb00ec162003-06-19 23:40:20 +0000673void vprintf(const char *fmt, va_list args);
wdenke2211742002-11-02 23:30:20 +0000674
675/* stderr */
676#define eputc(c) fputc(stderr, c)
677#define eputs(s) fputs(stderr, s)
678#define eprintf(fmt,args...) fprintf(stderr,fmt ,##args)
679
680/*
681 * FILE based functions (can only be used AFTER relocation!)
682 */
683
684#define stdin 0
685#define stdout 1
686#define stderr 2
687#define MAX_FILES 3
688
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700689void fprintf(int file, const char *fmt, ...)
690 __attribute__ ((format (__printf__, 2, 3)));
wdenke2211742002-11-02 23:30:20 +0000691void fputs(int file, const char *s);
692void fputc(int file, const char c);
693int ftstc(int file);
694int fgetc(int file);
695
696int pcmcia_init (void);
697
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200698#ifdef CONFIG_STATUS_LED
699# include <status_led.h>
wdenke2211742002-11-02 23:30:20 +0000700#endif
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200701/*
702 * Board-specific Platform code can reimplement show_boot_progress () if needed
703 */
Jean-Christophe PLAGNIOL-VILLARD86167822008-04-19 17:59:20 +0200704void __attribute__((weak)) show_boot_progress (int val);
wdenke2211742002-11-02 23:30:20 +0000705
wdenk3d3d99f2005-04-04 12:44:11 +0000706#ifdef CONFIG_INIT_CRITICAL
Wolfgang Denk5e3a8732006-08-14 23:17:47 +0200707#error CONFIG_INIT_CRITICAL is deprecated!
wdenk3d3d99f2005-04-04 12:44:11 +0000708#error Read section CONFIG_SKIP_LOWLEVEL_INIT in README.
709#endif
710
Kumar Galad595abf2008-01-17 00:02:10 -0600711#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
712
Kumar Gala93d5ffb2008-04-21 09:28:36 -0500713#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
714#define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
715
Andy Fleming2ef5ed02008-06-16 13:58:53 -0500716#define ALIGN(x,a) __ALIGN_MASK((x),(typeof(x))(a)-1)
717#define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))
718
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600719/* Multicore arch functions */
720#ifdef CONFIG_MP
721int cpu_status(int nr);
722int cpu_reset(int nr);
Kumar Galadeeac572008-03-26 08:34:25 -0500723int cpu_release(int nr, int argc, char *argv[]);
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600724#endif
725
Yuri Tikhonovbdfd3022008-03-31 10:51:37 +0200726#ifdef CONFIG_POST
727#define CONFIG_HAS_POST
728#endif
729
wdenke2211742002-11-02 23:30:20 +0000730#endif /* __COMMON_H_ */