2024-01-07 23:57:24 +01:00
|
|
|
/********************************************************************
|
|
|
|
*
|
|
|
|
* Unless otherwise specified, Copyright (C) 2004-2005 Barco Control Rooms
|
|
|
|
*
|
2024-01-07 23:58:22 +01:00
|
|
|
* $Source: /home/cvsroot/NasX86/Others/bootldr/u-boot-1.1.4_mv-3.4.4/board/barco/barco_svc.h,v $
|
|
|
|
* $Revision: 1.1.1.1 $
|
|
|
|
* $Author: wokes $
|
2024-01-08 00:07:02 +01:00
|
|
|
* $Date: 2008/12/15 11:39:23 $
|
2024-01-07 23:57:24 +01:00
|
|
|
*
|
|
|
|
* Last ChangeLog Entry
|
|
|
|
* $Log: barco_svc.h,v $
|
2024-01-08 00:07:02 +01:00
|
|
|
* Revision 1.1.1.1 2008/12/15 11:39:23 wokes
|
2024-01-07 23:58:22 +01:00
|
|
|
* marvell 88f6281 u-boot
|
|
|
|
*
|
|
|
|
* Revision 1.1.1.1 2008/12/15 11:17:13 wokes
|
|
|
|
* marvell 88f6281 u-boot
|
|
|
|
*
|
|
|
|
* Revision 1.1.1.1 2008/12/15 11:05:18 wokes
|
|
|
|
* marvell 88f6281 u-boot
|
|
|
|
*
|
2024-01-07 23:57:24 +01:00
|
|
|
* Revision 1.2 2005/02/21 12:48:58 mleeman
|
|
|
|
* update of copyright years (feedback wd)
|
|
|
|
*
|
|
|
|
* Revision 1.1 2005/02/14 09:31:07 mleeman
|
|
|
|
* renaming of files
|
|
|
|
*
|
|
|
|
* Revision 1.1 2005/02/14 09:23:46 mleeman
|
|
|
|
* - moved 'barcohydra' directory to a more generic barco; since we will be
|
|
|
|
* supporting and adding multiple boards
|
|
|
|
*
|
|
|
|
* Revision 1.1 2005/02/08 15:40:19 mleeman
|
|
|
|
* modified and added platform files
|
|
|
|
*
|
|
|
|
* Revision 1.2 2005/01/25 08:05:04 mleeman
|
|
|
|
* more cleanup of the code
|
|
|
|
*
|
|
|
|
* Revision 1.1 2004/07/20 08:49:55 mleeman
|
|
|
|
* Working version of the default and nfs kernel booting.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
#ifndef _LOCAL_BARCOHYDRA_H_
|
|
|
|
#define _LOCAL_BARCOHYDRA_H_
|
|
|
|
|
|
|
|
#include <flash.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
|
|
|
|
/* Defines for the barcohydra board */
|
|
|
|
#ifndef CFG_FLASH_ERASE_SECTOR_LENGTH
|
|
|
|
#define CFG_FLASH_ERASE_SECTOR_LENGTH (0x10000)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CFG_DEFAULT_KERNEL_ADDRESS
|
|
|
|
#define CFG_DEFAULT_KERNEL_ADDRESS (CFG_FLASH_BASE + 0x30000)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CFG_WORKING_KERNEL_ADDRESS
|
|
|
|
#define CFG_WORKING_KERNEL_ADDRESS (0xFFE00000)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct SBootInfo {
|
|
|
|
unsigned int address;
|
|
|
|
unsigned int size;
|
|
|
|
unsigned char state;
|
|
|
|
}TSBootInfo;
|
|
|
|
|
|
|
|
/* barcohydra.c */
|
|
|
|
int checkboard(void);
|
|
|
|
long int initdram(int board_type);
|
|
|
|
void pci_init_board(void);
|
|
|
|
void check_flash(void);
|
|
|
|
int write_flash(char *addr, char value);
|
|
|
|
TSBootInfo* find_boot_info(void);
|
|
|
|
void final_boot(void);
|
|
|
|
#endif
|