blob: df64bf0f4198b841a38c44d16c442b3b1dbd522c [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
Andy Flemingad5298c2008-10-30 17:35:30 -0500180#define MIN(x, y) min(x, y)
181#define MAX(x, y) max(x, y)
182
wdenk452cfd62002-11-19 11:04:11 +0000183
Haavard Skinnemoene1256272008-05-16 11:10:30 +0200184/**
185 * container_of - cast a member of a structure out to the containing structure
186 * @ptr: the pointer to the member.
187 * @type: the type of the container struct this is embedded in.
188 * @member: the name of the member within the struct.
189 *
190 */
191#define container_of(ptr, type, member) ({ \
192 const typeof( ((type *)0)->member ) *__mptr = (ptr); \
193 (type *)( (char *)__mptr - offsetof(type,member) );})
194
wdenk452cfd62002-11-19 11:04:11 +0000195/*
wdenke2211742002-11-02 23:30:20 +0000196 * Function Prototypes
197 */
198
wdenkc35ba4e2004-03-14 22:25:36 +0000199#ifdef CONFIG_SERIAL_SOFTWARE_FIFO
wdenke2211742002-11-02 23:30:20 +0000200void serial_buffered_init (void);
201void serial_buffered_putc (const char);
202void serial_buffered_puts (const char *);
203int serial_buffered_getc (void);
204int serial_buffered_tstc (void);
205#endif /* CONFIG_SERIAL_SOFTWARE_FIFO */
206
wdenk87249ba2004-01-06 22:38:14 +0000207void hang (void) __attribute__ ((noreturn));
wdenke2211742002-11-02 23:30:20 +0000208
209/* */
Becky Brucebd99ae72008-06-09 16:03:40 -0500210phys_size_t initdram (int);
wdenk87249ba2004-01-06 22:38:14 +0000211int display_options (void);
Becky Bruce6b468aa2008-06-09 20:37:17 -0500212void print_size (phys_size_t, const char *);
Wolfgang Denk52232fd2007-02-27 14:26:04 +0100213int print_buffer (ulong addr, void* data, uint width, uint count, uint linelen);
wdenke2211742002-11-02 23:30:20 +0000214
215/* common/main.c */
216void main_loop (void);
217int run_command (const char *cmd, int flag);
218int readline (const char *const prompt);
James Yang20ffa972008-01-09 11:17:49 -0600219int readline_into_buffer (const char *const prompt, char * buffer);
220int parse_line (char *, char *[]);
wdenkb00ec162003-06-19 23:40:20 +0000221void init_cmd_timeout(void);
wdenke2211742002-11-02 23:30:20 +0000222void reset_cmd_timeout(void);
223
wdenk9f837932003-10-09 19:00:25 +0000224/* lib_$(ARCH)/board.c */
Mike Frysinger791c8e32008-01-28 05:46:01 -0500225void board_init_f (ulong) __attribute__ ((noreturn));
226void board_init_r (gd_t *, ulong) __attribute__ ((noreturn));
wdenke2211742002-11-02 23:30:20 +0000227int checkboard (void);
228int checkflash (void);
229int checkdram (void);
wdenke2211742002-11-02 23:30:20 +0000230int last_stage_init(void);
wdenkb9a83a92003-05-30 12:48:29 +0000231extern ulong monitor_flash_len;
Haiying Wang34c68782006-07-12 10:48:05 -0400232int mac_read_from_eeprom(void);
wdenke2211742002-11-02 23:30:20 +0000233
234/* common/flash.c */
235void flash_perror (int);
236
wdenkf12e3962003-06-29 21:03:46 +0000237/* common/cmd_autoscript.c */
Marian Balakowicz23b77a22008-03-12 10:33:00 +0100238int autoscript (ulong addr, const char *fit_uname);
wdenke2211742002-11-02 23:30:20 +0000239
wdenk87249ba2004-01-06 22:38:14 +0000240extern ulong load_addr; /* Default Load Address */
wdenke2211742002-11-02 23:30:20 +0000241
Wolfgang Denkbe15aa82008-09-08 22:37:45 +0200242/* common/cmd_doc.c */
243void doc_probe(unsigned long physadr);
244
wdenke2211742002-11-02 23:30:20 +0000245/* common/cmd_nvedit.c */
246int env_init (void);
247void env_relocate (void);
Rafal Jaworowski75b54422008-01-09 18:05:27 +0100248int envmatch (uchar *, int);
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200249char *getenv (char *);
250int getenv_r (char *name, char *buf, unsigned len);
wdenk87249ba2004-01-06 22:38:14 +0000251int saveenv (void);
wdenke2211742002-11-02 23:30:20 +0000252#ifdef CONFIG_PPC /* ARM version to be fixed! */
Steven A. Falco1ce6f992008-06-12 13:22:12 -0400253int inline setenv (char *, char *);
wdenk591dda52002-11-18 00:14:45 +0000254#else
Steven A. Falco1ce6f992008-06-12 13:22:12 -0400255int setenv (char *, char *);
Sergey Kubushyne8f39122007-08-10 20:26:18 +0200256#ifdef CONFIG_HAS_UID
257void forceenv (char *, char *);
258#endif
wdenke2211742002-11-02 23:30:20 +0000259#endif /* CONFIG_PPC */
260#ifdef CONFIG_ARM
wdenk295ccfa2004-12-13 09:49:01 +0000261# include <asm/mach-types.h>
wdenkbc01dd52004-01-02 16:05:07 +0000262# include <asm/setup.h>
wdenke2211742002-11-02 23:30:20 +0000263# include <asm/u-boot-arm.h> /* ARM version to be fixed! */
264#endif /* CONFIG_ARM */
wdenk591dda52002-11-18 00:14:45 +0000265#ifdef CONFIG_I386 /* x86 version to be fixed! */
wdenk57b2d802003-06-27 21:31:46 +0000266# include <asm/u-boot-i386.h>
wdenk591dda52002-11-18 00:14:45 +0000267#endif /* CONFIG_I386 */
wdenke2211742002-11-02 23:30:20 +0000268
wdenk3902d702004-04-15 18:22:41 +0000269#ifdef CONFIG_AUTO_COMPLETE
270int env_complete(char *var, int maxv, char *cmdv[], int maxsz, char *buf);
271#endif
272
wdenk87249ba2004-01-06 22:38:14 +0000273void pci_init (void);
274void pci_init_board(void);
275void pciinfo (int, int);
wdenke2211742002-11-02 23:30:20 +0000276
Stefan Roese54ef7fd2007-06-25 15:57:39 +0200277#if defined(CONFIG_PCI) && (defined(CONFIG_4xx) && !defined(CONFIG_AP1000))
wdenk87249ba2004-01-06 22:38:14 +0000278 int pci_pre_init (struct pci_controller * );
Stefan Roese54ef7fd2007-06-25 15:57:39 +0200279#endif
280
Stefan Roese153b3e22007-10-05 17:10:59 +0200281#if defined(CONFIG_PCI) && (defined(CONFIG_440) || defined(CONFIG_405EX))
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200282# if defined(CONFIG_SYS_PCI_TARGET_INIT)
wdenk87249ba2004-01-06 22:38:14 +0000283 void pci_target_init (struct pci_controller *);
wdenke2211742002-11-02 23:30:20 +0000284# endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200285# if defined(CONFIG_SYS_PCI_MASTER_INIT)
wdenk87249ba2004-01-06 22:38:14 +0000286 void pci_master_init (struct pci_controller *);
wdenke2211742002-11-02 23:30:20 +0000287# endif
wdenk87249ba2004-01-06 22:38:14 +0000288 int is_pci_host (struct pci_controller *);
Stefan Roese56291f32008-03-11 15:11:18 +0100289#if defined(CONFIG_440SPE) || \
290 defined(CONFIG_460EX) || defined(CONFIG_460GT) || \
291 defined(CONFIG_405EX)
Grzegorz Bernackid2f21332007-09-07 18:20:23 +0200292 void pcie_setup_hoses(int busno);
Rafal Jaworowskia2e7ef02006-08-10 12:43:17 +0200293#endif
wdenke2211742002-11-02 23:30:20 +0000294#endif
295
296int misc_init_f (void);
297int misc_init_r (void);
298
wdenk874ac262003-07-24 23:38:38 +0000299/* common/exports.c */
300void jumptable_init(void);
301
Rafal Jaworowskia19be782008-01-09 19:39:36 +0100302/* api/api.c */
303void api_init (void);
304
wdenk87249ba2004-01-06 22:38:14 +0000305/* common/memsize.c */
Wolfgang Denkc0cc46e2006-11-06 17:06:36 +0100306long get_ram_size (volatile long *, long);
wdenk87249ba2004-01-06 22:38:14 +0000307
wdenke2211742002-11-02 23:30:20 +0000308/* $(BOARD)/$(BOARD).c */
309void reset_phy (void);
wdenk87249ba2004-01-06 22:38:14 +0000310void fdc_hw_init (void);
wdenke2211742002-11-02 23:30:20 +0000311
312/* $(BOARD)/eeprom.c */
313void eeprom_init (void);
wdenkb00ec162003-06-19 23:40:20 +0000314#ifndef CONFIG_SPI
315int eeprom_probe (unsigned dev_addr, unsigned offset);
316#endif
wdenke2211742002-11-02 23:30:20 +0000317int eeprom_read (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt);
318int eeprom_write (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt);
319#ifdef CONFIG_LWMON
320extern uchar pic_read (uchar reg);
321extern void pic_write (uchar reg, uchar val);
322#endif
323
324/*
325 * Set this up regardless of board
326 * type, to prevent errors.
327 */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200328#if defined(CONFIG_SPI) || !defined(CONFIG_SYS_I2C_EEPROM_ADDR)
329# define CONFIG_SYS_DEF_EEPROM_ADDR 0
wdenke2211742002-11-02 23:30:20 +0000330#else
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200331# define CONFIG_SYS_DEF_EEPROM_ADDR CONFIG_SYS_I2C_EEPROM_ADDR
332#endif /* CONFIG_SPI || !defined(CONFIG_SYS_I2C_EEPROM_ADDR) */
wdenke2211742002-11-02 23:30:20 +0000333
wdenk0a658552003-08-05 17:43:17 +0000334#if defined(CONFIG_SPI)
wdenke2211742002-11-02 23:30:20 +0000335extern void spi_init_f (void);
336extern void spi_init_r (void);
wdenk87249ba2004-01-06 22:38:14 +0000337extern ssize_t spi_read (uchar *, int, uchar *, int);
wdenke2211742002-11-02 23:30:20 +0000338extern ssize_t spi_write (uchar *, int, uchar *, int);
339#endif
340
341#ifdef CONFIG_RPXCLASSIC
342void rpxclassic_init (void);
343#endif
344
wdenkec432742004-06-09 21:04:48 +0000345void rpxlite_init (void);
346
wdenke2211742002-11-02 23:30:20 +0000347#ifdef CONFIG_MBX
348/* $(BOARD)/mbx8xx.c */
349void mbx_init (void);
350void board_serial_init (void);
351void board_ether_init (void);
352#endif
353
wdenk544e9732004-02-06 23:19:44 +0000354#if defined(CONFIG_RPXCLASSIC) || defined(CONFIG_MBX) || \
Stefan Roese5ff4c3f2005-08-15 12:31:23 +0200355 defined(CONFIG_IAD210) || defined(CONFIG_XPEDITE1K) || \
Bartlomiej Sieka2dfa3d22006-10-13 21:09:09 +0200356 defined(CONFIG_METROBOX) || defined(CONFIG_KAREF) || \
357 defined(CONFIG_V38B)
wdenke2211742002-11-02 23:30:20 +0000358void board_get_enetaddr (uchar *addr);
359#endif
360
361#ifdef CONFIG_HERMES
362/* $(BOARD)/hermes.c */
363void hermes_start_lxt980 (int speed);
364#endif
365
366#ifdef CONFIG_EVB64260
367void evb64260_init(void);
368void debug_led(int, int);
369void display_mem_map(void);
370void perform_soft_reset(void);
371#endif
372
373void load_sernum_ethaddr (void);
374
375/* $(BOARD)/$(BOARD).c */
wdenkda55c6e2004-01-20 23:12:12 +0000376int board_early_init_f (void);
377int board_late_init (void);
wdenke2211742002-11-02 23:30:20 +0000378int board_postclk_init (void); /* after clocks/timebase, before env/serial */
wdenkda55c6e2004-01-20 23:12:12 +0000379int board_early_init_r (void);
wdenke2211742002-11-02 23:30:20 +0000380void board_poweroff (void);
381
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200382#if defined(CONFIG_SYS_DRAM_TEST)
wdenke2211742002-11-02 23:30:20 +0000383int testdram(void);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200384#endif /* CONFIG_SYS_DRAM_TEST */
wdenke2211742002-11-02 23:30:20 +0000385
386/* $(CPU)/start.S */
wdenk87249ba2004-01-06 22:38:14 +0000387#if defined(CONFIG_5xx) || \
wdenk359733b2003-03-31 17:27:09 +0000388 defined(CONFIG_8xx)
wdenke2211742002-11-02 23:30:20 +0000389uint get_immr (uint);
390#endif
wdenk87249ba2004-01-06 22:38:14 +0000391uint get_pir (void);
wdenk2d644822004-06-09 17:45:32 +0000392#if defined(CONFIG_MPC5xxx)
393uint get_svr (void);
394#endif
wdenke2211742002-11-02 23:30:20 +0000395uint get_pvr (void);
wdenkcc245992004-06-09 00:51:50 +0000396uint get_svr (void);
wdenke2211742002-11-02 23:30:20 +0000397uint rd_ic_cst (void);
398void wr_ic_cst (uint);
399void wr_ic_adr (uint);
400uint rd_dc_cst (void);
401void wr_dc_cst (uint);
402void wr_dc_adr (uint);
403int icache_status (void);
404void icache_enable (void);
405void icache_disable(void);
406int dcache_status (void);
407void dcache_enable (void);
408void dcache_disable(void);
Anatolij Gustschin1dda8ca2008-02-15 00:13:20 +0100409void relocate_code (ulong, gd_t *, ulong) __attribute__ ((noreturn));
wdenke2211742002-11-02 23:30:20 +0000410ulong get_endaddr (void);
411void trap_init (ulong);
412#if defined (CONFIG_4xx) || \
wdenkaea86e42004-03-23 22:53:55 +0000413 defined (CONFIG_MPC5xxx) || \
wdenke2211742002-11-02 23:30:20 +0000414 defined (CONFIG_74xx_7xx) || \
415 defined (CONFIG_74x) || \
416 defined (CONFIG_75x) || \
wdenk13eb2212004-07-09 23:27:13 +0000417 defined (CONFIG_74xx) || \
wdenk337f5652004-10-28 00:09:35 +0000418 defined (CONFIG_MPC8220) || \
Marian Balakowiczaf03ecb2006-03-14 16:02:31 +0100419 defined (CONFIG_MPC85xx) || \
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500420 defined (CONFIG_MPC86xx) || \
Marian Balakowiczaf03ecb2006-03-14 16:02:31 +0100421 defined (CONFIG_MPC83XX)
wdenk87249ba2004-01-06 22:38:14 +0000422unsigned char in8(unsigned int);
423void out8(unsigned int, unsigned char);
424unsigned short in16(unsigned int);
425unsigned short in16r(unsigned int);
426void out16(unsigned int, unsigned short value);
427void out16r(unsigned int, unsigned short value);
428unsigned long in32(unsigned int);
429unsigned long in32r(unsigned int);
430void out32(unsigned int, unsigned long value);
431void out32r(unsigned int, unsigned long value);
432void ppcDcbf(unsigned long value);
433void ppcDcbi(unsigned long value);
434void ppcSync(void);
wdenk13eb2212004-07-09 23:27:13 +0000435void ppcDcbz(unsigned long value);
wdenke2211742002-11-02 23:30:20 +0000436#endif
Michal Simek04ae75f2007-04-21 21:02:40 +0200437#if defined (CONFIG_MICROBLAZE)
438unsigned short in16(unsigned int);
439void out16(unsigned int, unsigned short value);
440#endif
wdenke2211742002-11-02 23:30:20 +0000441
Dave Liu8c84e472006-11-02 18:05:50 -0600442#if defined (CONFIG_MPC83XX)
443void ppcDWload(unsigned int *addr, unsigned int *ret);
444void ppcDWstore(unsigned int *addr, unsigned int *value);
445#endif
446
wdenke2211742002-11-02 23:30:20 +0000447/* $(CPU)/cpu.c */
448int checkcpu (void);
449int checkicache (void);
450int checkdcache (void);
451void upmconfig (unsigned int, unsigned int *, unsigned int);
452ulong get_tbclk (void);
wdenk1e8d0c52005-04-03 17:23:39 +0000453void reset_cpu (ulong addr);
Kim Phillipsdc0b59d2007-08-15 22:30:26 -0500454#if defined (CONFIG_OF_LIBFDT) && defined (CONFIG_OF_BOARD_SETUP)
455void ft_cpu_setup(void *blob, bd_t *bd);
456#ifdef CONFIG_PCI
457void ft_pci_setup(void *blob, bd_t *bd);
458#endif
459#endif
460
wdenke2211742002-11-02 23:30:20 +0000461
462/* $(CPU)/serial.c */
463int serial_init (void);
wdenke0c812a2005-04-03 15:51:42 +0000464void serial_addr (unsigned int);
wdenke2211742002-11-02 23:30:20 +0000465void serial_setbrg (void);
466void serial_putc (const char);
wdenke0c812a2005-04-03 15:51:42 +0000467void serial_putc_raw(const char);
wdenke2211742002-11-02 23:30:20 +0000468void serial_puts (const char *);
wdenke2211742002-11-02 23:30:20 +0000469int serial_getc (void);
470int serial_tstc (void);
471
wdenke0c812a2005-04-03 15:51:42 +0000472void _serial_setbrg (const int);
473void _serial_putc (const char, const int);
474void _serial_putc_raw(const char, const int);
475void _serial_puts (const char *, const int);
476int _serial_getc (const int);
477int _serial_tstc (const int);
478
wdenke2211742002-11-02 23:30:20 +0000479/* $(CPU)/speed.c */
480int get_clocks (void);
wdenkb50cde52004-01-24 20:25:54 +0000481int get_clocks_866 (void);
482int sdram_adjust_866 (void);
wdenkc78bf132004-04-24 23:23:30 +0000483int adjust_sdram_tbs_8xx (void);
wdenke2211742002-11-02 23:30:20 +0000484#if defined(CONFIG_8260)
485int prt_8260_clks (void);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500486#elif defined(CONFIG_MPC5xxx)
wdenk21136db2003-07-16 21:53:01 +0000487int prt_mpc5xxx_clks (void);
488#endif
Grzegorz Bernackifdf760e2008-01-08 17:16:59 +0100489#if defined(CONFIG_MPC512X)
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200490int prt_mpc512xxx_clks (void);
491#endif
wdenk337f5652004-10-28 00:09:35 +0000492#if defined(CONFIG_MPC8220)
493int prt_mpc8220_clks (void);
494#endif
wdenke2211742002-11-02 23:30:20 +0000495#ifdef CONFIG_4xx
496ulong get_OPB_freq (void);
497ulong get_PCI_freq (void);
498#endif
Guennadi Liakhovetski8c170c52008-08-31 00:39:46 +0200499#if defined(CONFIG_S3C2400) || defined(CONFIG_S3C2410) || \
500 defined(CONFIG_LH7A40X) || defined(CONFIG_S3C6400)
Harald Weltedcf57592007-12-19 14:19:38 +0100501void s3c2410_irq(void);
502#define ARM920_IRQ_CALLBACK s3c2410_irq
wdenke2211742002-11-02 23:30:20 +0000503ulong get_FCLK (void);
504ulong get_HCLK (void);
505ulong get_PCLK (void);
506ulong get_UCLK (void);
507#endif
wdenk3c711762004-06-09 13:37:52 +0000508#if defined(CONFIG_LH7A40X)
509ulong get_PLLCLK (void);
510#endif
wdenk67f13362003-12-27 19:24:54 +0000511#if defined CONFIG_INCA_IP
wdenk87249ba2004-01-06 22:38:14 +0000512uint incaip_get_cpuclk (void);
wdenk67f13362003-12-27 19:24:54 +0000513#endif
wdenk7ac16102004-08-01 22:48:16 +0000514#if defined(CONFIG_IMX)
515ulong get_systemPLLCLK(void);
516ulong get_FCLK(void);
517ulong get_HCLK(void);
518ulong get_BCLK(void);
519ulong get_PERCLK1(void);
520ulong get_PERCLK2(void);
521ulong get_PERCLK3(void);
522#endif
wdenke2211742002-11-02 23:30:20 +0000523ulong get_bus_freq (ulong);
524
wdenk9c53f402003-10-15 23:53:47 +0000525#if defined(CONFIG_MPC85xx)
526typedef MPC85xx_SYS_INFO sys_info_t;
wdenk87249ba2004-01-06 22:38:14 +0000527void get_sys_info ( sys_info_t * );
Kumar Gala07db1702007-12-07 04:59:26 -0600528ulong get_ddr_freq (ulong);
wdenk9c53f402003-10-15 23:53:47 +0000529#endif
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500530#if defined(CONFIG_MPC86xx)
531typedef MPC86xx_SYS_INFO sys_info_t;
532void get_sys_info ( sys_info_t * );
533#endif
wdenk9c53f402003-10-15 23:53:47 +0000534
wdenke2211742002-11-02 23:30:20 +0000535#if defined(CONFIG_4xx) || defined(CONFIG_IOP480)
536# if defined(CONFIG_440)
Marian Balakowicz49d0eee2006-06-30 16:30:46 +0200537# if defined(CONFIG_440SPE)
538 unsigned long determine_sysper(void);
539 unsigned long determine_pci_clock_per(void);
540# endif
wdenke2211742002-11-02 23:30:20 +0000541# endif
Stefan Roeseedd73f22007-10-21 08:12:41 +0200542typedef PPC4xx_SYS_INFO sys_info_t;
Stefan Roese1ce9fe92007-11-16 14:16:54 +0100543int ppc440spe_revB(void);
wdenk87249ba2004-01-06 22:38:14 +0000544void get_sys_info ( sys_info_t * );
wdenke2211742002-11-02 23:30:20 +0000545#endif
546
547/* $(CPU)/cpu_init.c */
548#if defined(CONFIG_8xx) || defined(CONFIG_8260)
549void cpu_init_f (volatile immap_t *immr);
550#endif
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500551#if defined(CONFIG_4xx) || defined(CONFIG_MPC85xx) || defined(CONFIG_MCF52x2) ||defined(CONFIG_MPC86xx)
wdenke2211742002-11-02 23:30:20 +0000552void cpu_init_f (void);
553#endif
wdenke65527f2004-02-12 00:47:09 +0000554
wdenke2211742002-11-02 23:30:20 +0000555int cpu_init_r (void);
556#if defined(CONFIG_8260)
557int prt_8260_rsr (void);
Dave Liuebd35f82007-06-25 10:41:56 +0800558#elif defined(CONFIG_MPC83XX)
559int prt_83xx_rsr (void);
wdenke2211742002-11-02 23:30:20 +0000560#endif
561
562/* $(CPU)/interrupts.c */
wdenk87249ba2004-01-06 22:38:14 +0000563int interrupt_init (void);
564void timer_interrupt (struct pt_regs *);
wdenke2211742002-11-02 23:30:20 +0000565void external_interrupt (struct pt_regs *);
566void irq_install_handler(int, interrupt_handler_t *, void *);
567void irq_free_handler (int);
568void reset_timer (void);
569ulong get_timer (ulong base);
570void set_timer (ulong t);
571void enable_interrupts (void);
572int disable_interrupts (void);
573
574/* $(CPU)/.../commproc.c */
575int dpram_init (void);
576uint dpram_base(void);
577uint dpram_base_align(uint align);
578uint dpram_alloc(uint size);
579uint dpram_alloc_align(uint size,uint align);
580void post_word_store (ulong);
581ulong post_word_load (void);
wdenk0a658552003-08-05 17:43:17 +0000582void bootcount_store (ulong);
583ulong bootcount_load (void);
584#define BOOTCOUNT_MAGIC 0xB001C041
wdenke2211742002-11-02 23:30:20 +0000585
586/* $(CPU)/.../<eth> */
Wolfgang Denk0769f192007-08-29 14:05:30 +0200587void mii_init (void);
wdenke2211742002-11-02 23:30:20 +0000588
589/* $(CPU)/.../lcd.c */
590ulong lcd_setmem (ulong);
591
592/* $(CPU)/.../vfd.c */
593ulong vfd_setmem (ulong);
594
595/* $(CPU)/.../video.c */
596ulong video_setmem (ulong);
597
wdenkb5bb1392004-07-10 23:11:10 +0000598/* lib_$(ARCH)/cache.c */
wdenke2211742002-11-02 23:30:20 +0000599void flush_cache (unsigned long, unsigned long);
600
wdenk359733b2003-03-31 17:27:09 +0000601
wdenk9f837932003-10-09 19:00:25 +0000602/* lib_$(ARCH)/ticks.S */
wdenke2211742002-11-02 23:30:20 +0000603unsigned long long get_ticks(void);
604void wait_ticks (unsigned long);
605
wdenk9f837932003-10-09 19:00:25 +0000606/* lib_$(ARCH)/time.c */
wdenke2211742002-11-02 23:30:20 +0000607void udelay (unsigned long);
608ulong usec2ticks (unsigned long usec);
609ulong ticks2usec (unsigned long ticks);
610int init_timebase (void);
611
wdenk9f837932003-10-09 19:00:25 +0000612/* lib_generic/vsprintf.c */
wdenke2211742002-11-02 23:30:20 +0000613ulong simple_strtoul(const char *cp,char **endp,unsigned int base);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200614#ifdef CONFIG_SYS_64BIT_VSPRINTF
wdenkf602aa02004-03-13 23:29:43 +0000615unsigned long long simple_strtoull(const char *cp,char **endp,unsigned int base);
616#endif
wdenke2211742002-11-02 23:30:20 +0000617long simple_strtol(const char *cp,char **endp,unsigned int base);
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700618void panic(const char *fmt, ...)
619 __attribute__ ((format (__printf__, 1, 2)));
620int sprintf(char * buf, const char *fmt, ...)
621 __attribute__ ((format (__printf__, 2, 3)));
wdenk87249ba2004-01-06 22:38:14 +0000622int vsprintf(char *buf, const char *fmt, va_list args);
wdenke2211742002-11-02 23:30:20 +0000623
Haavard Skinnemoenb644d6b2008-08-18 13:41:27 +0200624/* lib_generic/strmhz.c */
625char * strmhz(char *buf, long hz);
626
wdenk9f837932003-10-09 19:00:25 +0000627/* lib_generic/crc32.c */
Mike Frysingera2c67e92008-03-31 11:02:01 -0400628uint32_t crc32 (uint32_t, const unsigned char *, uint);
Bartlomiej Siekada5045d2008-04-22 12:27:56 +0200629uint32_t crc32_wd (uint32_t, const unsigned char *, uint, uint);
Mike Frysingera2c67e92008-03-31 11:02:01 -0400630uint32_t crc32_no_comp (uint32_t, const unsigned char *, uint);
wdenke2211742002-11-02 23:30:20 +0000631
632/* common/console.c */
wdenke2211742002-11-02 23:30:20 +0000633int console_init_f(void); /* Before relocation; uses the serial stuff */
634int console_init_r(void); /* After relocation; uses the console stuff */
635int console_assign (int file, char *devname); /* Assign the console */
636int ctrlc (void);
637int had_ctrlc (void); /* have we had a Control-C since last clear? */
638void clear_ctrlc (void); /* clear the Control-C condition */
639int disable_ctrlc (int); /* 1 to disable, 0 to enable Control-C detect */
640
641/*
642 * STDIO based functions (can always be used)
643 */
644
645/* serial stuff */
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700646void serial_printf (const char *fmt, ...)
647 __attribute__ ((format (__printf__, 1, 2)));
wdenke2211742002-11-02 23:30:20 +0000648
649/* stdin */
650int getc(void);
651int tstc(void);
652
653/* stdout */
654void putc(const char c);
655void puts(const char *s);
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700656void printf(const char *fmt, ...)
657 __attribute__ ((format (__printf__, 1, 2)));
wdenkb00ec162003-06-19 23:40:20 +0000658void vprintf(const char *fmt, va_list args);
wdenke2211742002-11-02 23:30:20 +0000659
660/* stderr */
661#define eputc(c) fputc(stderr, c)
662#define eputs(s) fputs(stderr, s)
663#define eprintf(fmt,args...) fprintf(stderr,fmt ,##args)
664
665/*
666 * FILE based functions (can only be used AFTER relocation!)
667 */
668
669#define stdin 0
670#define stdout 1
671#define stderr 2
672#define MAX_FILES 3
673
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700674void fprintf(int file, const char *fmt, ...)
675 __attribute__ ((format (__printf__, 2, 3)));
wdenke2211742002-11-02 23:30:20 +0000676void fputs(int file, const char *s);
677void fputc(int file, const char c);
678int ftstc(int file);
679int fgetc(int file);
680
681int pcmcia_init (void);
682
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200683#ifdef CONFIG_STATUS_LED
684# include <status_led.h>
wdenke2211742002-11-02 23:30:20 +0000685#endif
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200686/*
687 * Board-specific Platform code can reimplement show_boot_progress () if needed
688 */
Jean-Christophe PLAGNIOL-VILLARD86167822008-04-19 17:59:20 +0200689void __attribute__((weak)) show_boot_progress (int val);
wdenke2211742002-11-02 23:30:20 +0000690
wdenk3d3d99f2005-04-04 12:44:11 +0000691#ifdef CONFIG_INIT_CRITICAL
Wolfgang Denk5e3a8732006-08-14 23:17:47 +0200692#error CONFIG_INIT_CRITICAL is deprecated!
wdenk3d3d99f2005-04-04 12:44:11 +0000693#error Read section CONFIG_SKIP_LOWLEVEL_INIT in README.
694#endif
695
Kumar Galad595abf2008-01-17 00:02:10 -0600696#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
697
Wolfgang Denk709e85d2008-10-19 02:35:48 +0200698#define DIV_ROUND(n,d) (((n) + ((d)/2)) / (d))
699#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
700#define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
Kumar Gala93d5ffb2008-04-21 09:28:36 -0500701
Andy Fleming2ef5ed02008-06-16 13:58:53 -0500702#define ALIGN(x,a) __ALIGN_MASK((x),(typeof(x))(a)-1)
703#define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))
704
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600705/* Multicore arch functions */
706#ifdef CONFIG_MP
707int cpu_status(int nr);
708int cpu_reset(int nr);
Kumar Galadeeac572008-03-26 08:34:25 -0500709int cpu_release(int nr, int argc, char *argv[]);
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600710#endif
711
Yuri Tikhonovbdfd3022008-03-31 10:51:37 +0200712#ifdef CONFIG_POST
713#define CONFIG_HAS_POST
714#endif
715
wdenke2211742002-11-02 23:30:20 +0000716#endif /* __COMMON_H_ */