📄 barco_svc.h
字号:
/******************************************************************** * * Unless otherwise specified, Copyright (C) 2004-2005 Barco Control Rooms * * $Source: /home/services/cvs/firmware/ppc/u-boot-1.1.2/board/barco/barco_svc.h,v $ * $Revision: 1.2 $ * $Author: mleeman $ * $Date: 2005/02/21 12:48:58 $ * * Last ChangeLog Entry * $Log: barco_svc.h,v $ * 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)#endiftypedef 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
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -