blob: a394988b5ce998a4df93f9366ce28bc7e011e335 [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
290int misc_init_f (void);
291int misc_init_r (void);
292
wdenk874ac262003-07-24 23:38:38 +0000293/* common/exports.c */
294void jumptable_init(void);
295
Rafal Jaworowskia19be782008-01-09 19:39:36 +0100296/* api/api.c */
297void api_init (void);
298
wdenk87249ba2004-01-06 22:38:14 +0000299/* common/memsize.c */
Wolfgang Denkc0cc46e2006-11-06 17:06:36 +0100300long get_ram_size (volatile long *, long);
wdenk87249ba2004-01-06 22:38:14 +0000301
wdenke2211742002-11-02 23:30:20 +0000302/* $(BOARD)/$(BOARD).c */
303void reset_phy (void);
wdenk87249ba2004-01-06 22:38:14 +0000304void fdc_hw_init (void);
wdenke2211742002-11-02 23:30:20 +0000305
306/* $(BOARD)/eeprom.c */
307void eeprom_init (void);
wdenkb00ec162003-06-19 23:40:20 +0000308#ifndef CONFIG_SPI
309int eeprom_probe (unsigned dev_addr, unsigned offset);
310#endif
wdenke2211742002-11-02 23:30:20 +0000311int eeprom_read (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt);
312int eeprom_write (unsigned dev_addr, unsigned offset, uchar *buffer, unsigned cnt);
313#ifdef CONFIG_LWMON
314extern uchar pic_read (uchar reg);
315extern void pic_write (uchar reg, uchar val);
316#endif
317
318/*
319 * Set this up regardless of board
320 * type, to prevent errors.
321 */
322#if defined(CONFIG_SPI) || !defined(CFG_I2C_EEPROM_ADDR)
323# define CFG_DEF_EEPROM_ADDR 0
324#else
325# define CFG_DEF_EEPROM_ADDR CFG_I2C_EEPROM_ADDR
326#endif /* CONFIG_SPI || !defined(CFG_I2C_EEPROM_ADDR) */
327
wdenk0a658552003-08-05 17:43:17 +0000328#if defined(CONFIG_SPI)
wdenke2211742002-11-02 23:30:20 +0000329extern void spi_init_f (void);
330extern void spi_init_r (void);
wdenk87249ba2004-01-06 22:38:14 +0000331extern ssize_t spi_read (uchar *, int, uchar *, int);
wdenke2211742002-11-02 23:30:20 +0000332extern ssize_t spi_write (uchar *, int, uchar *, int);
333#endif
334
335#ifdef CONFIG_RPXCLASSIC
336void rpxclassic_init (void);
337#endif
338
wdenkec432742004-06-09 21:04:48 +0000339void rpxlite_init (void);
340
wdenke2211742002-11-02 23:30:20 +0000341#ifdef CONFIG_MBX
342/* $(BOARD)/mbx8xx.c */
343void mbx_init (void);
344void board_serial_init (void);
345void board_ether_init (void);
346#endif
347
wdenk544e9732004-02-06 23:19:44 +0000348#if defined(CONFIG_RPXCLASSIC) || defined(CONFIG_MBX) || \
Stefan Roese5ff4c3f2005-08-15 12:31:23 +0200349 defined(CONFIG_IAD210) || defined(CONFIG_XPEDITE1K) || \
Bartlomiej Sieka2dfa3d22006-10-13 21:09:09 +0200350 defined(CONFIG_METROBOX) || defined(CONFIG_KAREF) || \
351 defined(CONFIG_V38B)
wdenke2211742002-11-02 23:30:20 +0000352void board_get_enetaddr (uchar *addr);
353#endif
354
355#ifdef CONFIG_HERMES
356/* $(BOARD)/hermes.c */
357void hermes_start_lxt980 (int speed);
358#endif
359
360#ifdef CONFIG_EVB64260
361void evb64260_init(void);
362void debug_led(int, int);
363void display_mem_map(void);
364void perform_soft_reset(void);
365#endif
366
367void load_sernum_ethaddr (void);
368
369/* $(BOARD)/$(BOARD).c */
wdenkda55c6e2004-01-20 23:12:12 +0000370int board_early_init_f (void);
371int board_late_init (void);
wdenke2211742002-11-02 23:30:20 +0000372int board_postclk_init (void); /* after clocks/timebase, before env/serial */
wdenkda55c6e2004-01-20 23:12:12 +0000373int board_early_init_r (void);
wdenke2211742002-11-02 23:30:20 +0000374void board_poweroff (void);
375
376#if defined(CFG_DRAM_TEST)
377int testdram(void);
378#endif /* CFG_DRAM_TEST */
379
380/* $(CPU)/start.S */
wdenk87249ba2004-01-06 22:38:14 +0000381#if defined(CONFIG_5xx) || \
wdenk359733b2003-03-31 17:27:09 +0000382 defined(CONFIG_8xx)
wdenke2211742002-11-02 23:30:20 +0000383uint get_immr (uint);
384#endif
wdenk87249ba2004-01-06 22:38:14 +0000385uint get_pir (void);
wdenk2d644822004-06-09 17:45:32 +0000386#if defined(CONFIG_MPC5xxx)
387uint get_svr (void);
388#endif
wdenke2211742002-11-02 23:30:20 +0000389uint get_pvr (void);
wdenkcc245992004-06-09 00:51:50 +0000390uint get_svr (void);
wdenke2211742002-11-02 23:30:20 +0000391uint rd_ic_cst (void);
392void wr_ic_cst (uint);
393void wr_ic_adr (uint);
394uint rd_dc_cst (void);
395void wr_dc_cst (uint);
396void wr_dc_adr (uint);
397int icache_status (void);
398void icache_enable (void);
399void icache_disable(void);
400int dcache_status (void);
401void dcache_enable (void);
402void dcache_disable(void);
Anatolij Gustschin1dda8ca2008-02-15 00:13:20 +0100403void relocate_code (ulong, gd_t *, ulong) __attribute__ ((noreturn));
wdenke2211742002-11-02 23:30:20 +0000404ulong get_endaddr (void);
405void trap_init (ulong);
406#if defined (CONFIG_4xx) || \
wdenkaea86e42004-03-23 22:53:55 +0000407 defined (CONFIG_MPC5xxx) || \
wdenke2211742002-11-02 23:30:20 +0000408 defined (CONFIG_74xx_7xx) || \
409 defined (CONFIG_74x) || \
410 defined (CONFIG_75x) || \
wdenk13eb2212004-07-09 23:27:13 +0000411 defined (CONFIG_74xx) || \
wdenk337f5652004-10-28 00:09:35 +0000412 defined (CONFIG_MPC8220) || \
Marian Balakowiczaf03ecb2006-03-14 16:02:31 +0100413 defined (CONFIG_MPC85xx) || \
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500414 defined (CONFIG_MPC86xx) || \
Marian Balakowiczaf03ecb2006-03-14 16:02:31 +0100415 defined (CONFIG_MPC83XX)
wdenk87249ba2004-01-06 22:38:14 +0000416unsigned char in8(unsigned int);
417void out8(unsigned int, unsigned char);
418unsigned short in16(unsigned int);
419unsigned short in16r(unsigned int);
420void out16(unsigned int, unsigned short value);
421void out16r(unsigned int, unsigned short value);
422unsigned long in32(unsigned int);
423unsigned long in32r(unsigned int);
424void out32(unsigned int, unsigned long value);
425void out32r(unsigned int, unsigned long value);
426void ppcDcbf(unsigned long value);
427void ppcDcbi(unsigned long value);
428void ppcSync(void);
wdenk13eb2212004-07-09 23:27:13 +0000429void ppcDcbz(unsigned long value);
wdenke2211742002-11-02 23:30:20 +0000430#endif
Michal Simek04ae75f2007-04-21 21:02:40 +0200431#if defined (CONFIG_MICROBLAZE)
432unsigned short in16(unsigned int);
433void out16(unsigned int, unsigned short value);
434#endif
wdenke2211742002-11-02 23:30:20 +0000435
Dave Liu8c84e472006-11-02 18:05:50 -0600436#if defined (CONFIG_MPC83XX)
437void ppcDWload(unsigned int *addr, unsigned int *ret);
438void ppcDWstore(unsigned int *addr, unsigned int *value);
439#endif
440
wdenke2211742002-11-02 23:30:20 +0000441/* $(CPU)/cpu.c */
442int checkcpu (void);
443int checkicache (void);
444int checkdcache (void);
445void upmconfig (unsigned int, unsigned int *, unsigned int);
446ulong get_tbclk (void);
wdenk1e8d0c52005-04-03 17:23:39 +0000447void reset_cpu (ulong addr);
Kim Phillipsdc0b59d2007-08-15 22:30:26 -0500448#if defined (CONFIG_OF_LIBFDT) && defined (CONFIG_OF_BOARD_SETUP)
449void ft_cpu_setup(void *blob, bd_t *bd);
450#ifdef CONFIG_PCI
451void ft_pci_setup(void *blob, bd_t *bd);
452#endif
453#endif
454
wdenke2211742002-11-02 23:30:20 +0000455
456/* $(CPU)/serial.c */
457int serial_init (void);
wdenke0c812a2005-04-03 15:51:42 +0000458void serial_addr (unsigned int);
wdenke2211742002-11-02 23:30:20 +0000459void serial_setbrg (void);
460void serial_putc (const char);
wdenke0c812a2005-04-03 15:51:42 +0000461void serial_putc_raw(const char);
wdenke2211742002-11-02 23:30:20 +0000462void serial_puts (const char *);
wdenke2211742002-11-02 23:30:20 +0000463int serial_getc (void);
464int serial_tstc (void);
465
wdenke0c812a2005-04-03 15:51:42 +0000466void _serial_setbrg (const int);
467void _serial_putc (const char, const int);
468void _serial_putc_raw(const char, const int);
469void _serial_puts (const char *, const int);
470int _serial_getc (const int);
471int _serial_tstc (const int);
472
wdenke2211742002-11-02 23:30:20 +0000473/* $(CPU)/speed.c */
474int get_clocks (void);
wdenkb50cde52004-01-24 20:25:54 +0000475int get_clocks_866 (void);
476int sdram_adjust_866 (void);
wdenkc78bf132004-04-24 23:23:30 +0000477int adjust_sdram_tbs_8xx (void);
wdenke2211742002-11-02 23:30:20 +0000478#if defined(CONFIG_8260)
479int prt_8260_clks (void);
Eran Liberty9095d4a2005-07-28 10:08:46 -0500480#elif defined(CONFIG_MPC5xxx)
wdenk21136db2003-07-16 21:53:01 +0000481int prt_mpc5xxx_clks (void);
482#endif
Grzegorz Bernackifdf760e2008-01-08 17:16:59 +0100483#if defined(CONFIG_MPC512X)
Rafal Jaworowskid3a02c32007-07-27 14:43:59 +0200484int prt_mpc512xxx_clks (void);
485#endif
wdenk337f5652004-10-28 00:09:35 +0000486#if defined(CONFIG_MPC8220)
487int prt_mpc8220_clks (void);
488#endif
wdenke2211742002-11-02 23:30:20 +0000489#ifdef CONFIG_4xx
490ulong get_OPB_freq (void);
491ulong get_PCI_freq (void);
492#endif
Guennadi Liakhovetski8c170c52008-08-31 00:39:46 +0200493#if defined(CONFIG_S3C2400) || defined(CONFIG_S3C2410) || \
494 defined(CONFIG_LH7A40X) || defined(CONFIG_S3C6400)
Harald Weltedcf57592007-12-19 14:19:38 +0100495void s3c2410_irq(void);
496#define ARM920_IRQ_CALLBACK s3c2410_irq
wdenke2211742002-11-02 23:30:20 +0000497ulong get_FCLK (void);
498ulong get_HCLK (void);
499ulong get_PCLK (void);
500ulong get_UCLK (void);
501#endif
wdenk3c711762004-06-09 13:37:52 +0000502#if defined(CONFIG_LH7A40X)
503ulong get_PLLCLK (void);
504#endif
wdenk67f13362003-12-27 19:24:54 +0000505#if defined CONFIG_INCA_IP
wdenk87249ba2004-01-06 22:38:14 +0000506uint incaip_get_cpuclk (void);
wdenk67f13362003-12-27 19:24:54 +0000507#endif
wdenk7ac16102004-08-01 22:48:16 +0000508#if defined(CONFIG_IMX)
509ulong get_systemPLLCLK(void);
510ulong get_FCLK(void);
511ulong get_HCLK(void);
512ulong get_BCLK(void);
513ulong get_PERCLK1(void);
514ulong get_PERCLK2(void);
515ulong get_PERCLK3(void);
516#endif
wdenke2211742002-11-02 23:30:20 +0000517ulong get_bus_freq (ulong);
518
wdenk9c53f402003-10-15 23:53:47 +0000519#if defined(CONFIG_MPC85xx)
520typedef MPC85xx_SYS_INFO sys_info_t;
wdenk87249ba2004-01-06 22:38:14 +0000521void get_sys_info ( sys_info_t * );
Kumar Gala07db1702007-12-07 04:59:26 -0600522ulong get_ddr_freq (ulong);
wdenk9c53f402003-10-15 23:53:47 +0000523#endif
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500524#if defined(CONFIG_MPC86xx)
525typedef MPC86xx_SYS_INFO sys_info_t;
526void get_sys_info ( sys_info_t * );
527#endif
wdenk9c53f402003-10-15 23:53:47 +0000528
wdenke2211742002-11-02 23:30:20 +0000529#if defined(CONFIG_4xx) || defined(CONFIG_IOP480)
530# if defined(CONFIG_440)
Marian Balakowicz49d0eee2006-06-30 16:30:46 +0200531# if defined(CONFIG_440SPE)
532 unsigned long determine_sysper(void);
533 unsigned long determine_pci_clock_per(void);
534# endif
wdenke2211742002-11-02 23:30:20 +0000535# endif
Stefan Roeseedd73f22007-10-21 08:12:41 +0200536typedef PPC4xx_SYS_INFO sys_info_t;
Stefan Roese1ce9fe92007-11-16 14:16:54 +0100537int ppc440spe_revB(void);
wdenk87249ba2004-01-06 22:38:14 +0000538void get_sys_info ( sys_info_t * );
wdenke2211742002-11-02 23:30:20 +0000539#endif
540
541/* $(CPU)/cpu_init.c */
542#if defined(CONFIG_8xx) || defined(CONFIG_8260)
543void cpu_init_f (volatile immap_t *immr);
544#endif
Jon Loeliger5c8aa972006-04-26 17:58:56 -0500545#if defined(CONFIG_4xx) || defined(CONFIG_MPC85xx) || defined(CONFIG_MCF52x2) ||defined(CONFIG_MPC86xx)
wdenke2211742002-11-02 23:30:20 +0000546void cpu_init_f (void);
547#endif
wdenke65527f2004-02-12 00:47:09 +0000548
wdenke2211742002-11-02 23:30:20 +0000549int cpu_init_r (void);
550#if defined(CONFIG_8260)
551int prt_8260_rsr (void);
Dave Liuebd35f82007-06-25 10:41:56 +0800552#elif defined(CONFIG_MPC83XX)
553int prt_83xx_rsr (void);
wdenke2211742002-11-02 23:30:20 +0000554#endif
555
556/* $(CPU)/interrupts.c */
wdenk87249ba2004-01-06 22:38:14 +0000557int interrupt_init (void);
558void timer_interrupt (struct pt_regs *);
wdenke2211742002-11-02 23:30:20 +0000559void external_interrupt (struct pt_regs *);
560void irq_install_handler(int, interrupt_handler_t *, void *);
561void irq_free_handler (int);
562void reset_timer (void);
563ulong get_timer (ulong base);
564void set_timer (ulong t);
565void enable_interrupts (void);
566int disable_interrupts (void);
567
568/* $(CPU)/.../commproc.c */
569int dpram_init (void);
570uint dpram_base(void);
571uint dpram_base_align(uint align);
572uint dpram_alloc(uint size);
573uint dpram_alloc_align(uint size,uint align);
574void post_word_store (ulong);
575ulong post_word_load (void);
wdenk0a658552003-08-05 17:43:17 +0000576void bootcount_store (ulong);
577ulong bootcount_load (void);
578#define BOOTCOUNT_MAGIC 0xB001C041
wdenke2211742002-11-02 23:30:20 +0000579
580/* $(CPU)/.../<eth> */
Wolfgang Denk0769f192007-08-29 14:05:30 +0200581void mii_init (void);
wdenke2211742002-11-02 23:30:20 +0000582
583/* $(CPU)/.../lcd.c */
584ulong lcd_setmem (ulong);
585
586/* $(CPU)/.../vfd.c */
587ulong vfd_setmem (ulong);
588
589/* $(CPU)/.../video.c */
590ulong video_setmem (ulong);
591
wdenkb5bb1392004-07-10 23:11:10 +0000592/* lib_$(ARCH)/cache.c */
wdenke2211742002-11-02 23:30:20 +0000593void flush_cache (unsigned long, unsigned long);
594
wdenk359733b2003-03-31 17:27:09 +0000595
wdenk9f837932003-10-09 19:00:25 +0000596/* lib_$(ARCH)/ticks.S */
wdenke2211742002-11-02 23:30:20 +0000597unsigned long long get_ticks(void);
598void wait_ticks (unsigned long);
599
wdenk9f837932003-10-09 19:00:25 +0000600/* lib_$(ARCH)/time.c */
wdenke2211742002-11-02 23:30:20 +0000601void udelay (unsigned long);
602ulong usec2ticks (unsigned long usec);
603ulong ticks2usec (unsigned long ticks);
604int init_timebase (void);
605
wdenk9f837932003-10-09 19:00:25 +0000606/* lib_generic/vsprintf.c */
wdenke2211742002-11-02 23:30:20 +0000607ulong simple_strtoul(const char *cp,char **endp,unsigned int base);
wdenkc35ba4e2004-03-14 22:25:36 +0000608#ifdef CFG_64BIT_VSPRINTF
wdenkf602aa02004-03-13 23:29:43 +0000609unsigned long long simple_strtoull(const char *cp,char **endp,unsigned int base);
610#endif
wdenke2211742002-11-02 23:30:20 +0000611long simple_strtol(const char *cp,char **endp,unsigned int base);
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700612void panic(const char *fmt, ...)
613 __attribute__ ((format (__printf__, 1, 2)));
614int sprintf(char * buf, const char *fmt, ...)
615 __attribute__ ((format (__printf__, 2, 3)));
wdenk87249ba2004-01-06 22:38:14 +0000616int vsprintf(char *buf, const char *fmt, va_list args);
wdenke2211742002-11-02 23:30:20 +0000617
Haavard Skinnemoenb644d6b2008-08-18 13:41:27 +0200618/* lib_generic/strmhz.c */
619char * strmhz(char *buf, long hz);
620
wdenk9f837932003-10-09 19:00:25 +0000621/* lib_generic/crc32.c */
Mike Frysingera2c67e92008-03-31 11:02:01 -0400622uint32_t crc32 (uint32_t, const unsigned char *, uint);
Bartlomiej Siekada5045d2008-04-22 12:27:56 +0200623uint32_t crc32_wd (uint32_t, const unsigned char *, uint, uint);
Mike Frysingera2c67e92008-03-31 11:02:01 -0400624uint32_t crc32_no_comp (uint32_t, const unsigned char *, uint);
wdenke2211742002-11-02 23:30:20 +0000625
626/* common/console.c */
wdenke2211742002-11-02 23:30:20 +0000627int console_init_f(void); /* Before relocation; uses the serial stuff */
628int console_init_r(void); /* After relocation; uses the console stuff */
629int console_assign (int file, char *devname); /* Assign the console */
630int ctrlc (void);
631int had_ctrlc (void); /* have we had a Control-C since last clear? */
632void clear_ctrlc (void); /* clear the Control-C condition */
633int disable_ctrlc (int); /* 1 to disable, 0 to enable Control-C detect */
634
635/*
636 * STDIO based functions (can always be used)
637 */
638
639/* serial stuff */
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700640void serial_printf (const char *fmt, ...)
641 __attribute__ ((format (__printf__, 1, 2)));
wdenke2211742002-11-02 23:30:20 +0000642
643/* stdin */
644int getc(void);
645int tstc(void);
646
647/* stdout */
648void putc(const char c);
649void puts(const char *s);
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700650void printf(const char *fmt, ...)
651 __attribute__ ((format (__printf__, 1, 2)));
wdenkb00ec162003-06-19 23:40:20 +0000652void vprintf(const char *fmt, va_list args);
wdenke2211742002-11-02 23:30:20 +0000653
654/* stderr */
655#define eputc(c) fputc(stderr, c)
656#define eputs(s) fputs(stderr, s)
657#define eprintf(fmt,args...) fprintf(stderr,fmt ,##args)
658
659/*
660 * FILE based functions (can only be used AFTER relocation!)
661 */
662
663#define stdin 0
664#define stdout 1
665#define stderr 2
666#define MAX_FILES 3
667
Andrew Klossnere4ad4542008-07-07 06:41:14 -0700668void fprintf(int file, const char *fmt, ...)
669 __attribute__ ((format (__printf__, 2, 3)));
wdenke2211742002-11-02 23:30:20 +0000670void fputs(int file, const char *s);
671void fputc(int file, const char c);
672int ftstc(int file);
673int fgetc(int file);
674
675int pcmcia_init (void);
676
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200677#ifdef CONFIG_STATUS_LED
678# include <status_led.h>
wdenke2211742002-11-02 23:30:20 +0000679#endif
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200680/*
681 * Board-specific Platform code can reimplement show_boot_progress () if needed
682 */
Jean-Christophe PLAGNIOL-VILLARD86167822008-04-19 17:59:20 +0200683void __attribute__((weak)) show_boot_progress (int val);
wdenke2211742002-11-02 23:30:20 +0000684
wdenk3d3d99f2005-04-04 12:44:11 +0000685#ifdef CONFIG_INIT_CRITICAL
Wolfgang Denk5e3a8732006-08-14 23:17:47 +0200686#error CONFIG_INIT_CRITICAL is deprecated!
wdenk3d3d99f2005-04-04 12:44:11 +0000687#error Read section CONFIG_SKIP_LOWLEVEL_INIT in README.
688#endif
689
Kumar Galad595abf2008-01-17 00:02:10 -0600690#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
691
Kumar Gala93d5ffb2008-04-21 09:28:36 -0500692#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
693#define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))
694
Andy Fleming2ef5ed02008-06-16 13:58:53 -0500695#define ALIGN(x,a) __ALIGN_MASK((x),(typeof(x))(a)-1)
696#define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))
697
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600698/* Multicore arch functions */
699#ifdef CONFIG_MP
700int cpu_status(int nr);
701int cpu_reset(int nr);
Kumar Galadeeac572008-03-26 08:34:25 -0500702int cpu_release(int nr, int argc, char *argv[]);
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600703#endif
704
Yuri Tikhonovbdfd3022008-03-31 10:51:37 +0200705#ifdef CONFIG_POST
706#define CONFIG_HAS_POST
707#endif
708
wdenke2211742002-11-02 23:30:20 +0000709#endif /* __COMMON_H_ */