flashDrvLib.h
上传用户:dqzhongke1
上传日期:2022-06-26
资源大小:667k
文件大小:4k
源码类别:

VxWorks

开发平台:

C/C++

  1. /*
  2.  * $Id: flashDrvLib.h,v 1.2.6.1 Broadcom SDK $
  3.  * $Copyright: Copyright 2008 Broadcom Corporation.
  4.  * This program is the proprietary software of Broadcom Corporation
  5.  * and/or its licensors, and may only be used, duplicated, modified
  6.  * or distributed pursuant to the terms and conditions of a separate,
  7.  * written license agreement executed between you and Broadcom
  8.  * (an "Authorized License").  Except as set forth in an Authorized
  9.  * License, Broadcom grants no license (express or implied), right
  10.  * to use, or waiver of any kind with respect to the Software, and
  11.  * Broadcom expressly reserves all rights in and to the Software
  12.  * and all intellectual property rights therein.  IF YOU HAVE
  13.  * NO AUTHORIZED LICENSE, THEN YOU HAVE NO RIGHT TO USE THIS SOFTWARE
  14.  * IN ANY WAY, AND SHOULD IMMEDIATELY NOTIFY BROADCOM AND DISCONTINUE
  15.  * ALL USE OF THE SOFTWARE.  
  16.  *  
  17.  * Except as expressly set forth in the Authorized License,
  18.  *  
  19.  * 1.     This program, including its structure, sequence and organization,
  20.  * constitutes the valuable trade secrets of Broadcom, and you shall use
  21.  * all reasonable efforts to protect the confidentiality thereof,
  22.  * and to use this information only in connection with your use of
  23.  * Broadcom integrated circuit products.
  24.  *  
  25.  * 2.     TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS
  26.  * PROVIDED "AS IS" AND WITH ALL FAULTS AND BROADCOM MAKES NO PROMISES,
  27.  * REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY,
  28.  * OR OTHERWISE, WITH RESPECT TO THE SOFTWARE.  BROADCOM SPECIFICALLY
  29.  * DISCLAIMS ANY AND ALL IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY,
  30.  * NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, LACK OF VIRUSES,
  31.  * ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR
  32.  * CORRESPONDENCE TO DESCRIPTION. YOU ASSUME THE ENTIRE RISK ARISING
  33.  * OUT OF USE OR PERFORMANCE OF THE SOFTWARE.
  34.  * 
  35.  * 3.     TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL
  36.  * BROADCOM OR ITS LICENSORS BE LIABLE FOR (i) CONSEQUENTIAL,
  37.  * INCIDENTAL, SPECIAL, INDIRECT, OR EXEMPLARY DAMAGES WHATSOEVER
  38.  * ARISING OUT OF OR IN ANY WAY RELATING TO YOUR USE OF OR INABILITY
  39.  * TO USE THE SOFTWARE EVEN IF BROADCOM HAS BEEN ADVISED OF THE
  40.  * POSSIBILITY OF SUCH DAMAGES; OR (ii) ANY AMOUNT IN EXCESS OF
  41.  * THE AMOUNT ACTUALLY PAID FOR THE SOFTWARE ITSELF OR U.S. $1,
  42.  * WHICHEVER IS GREATER. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING
  43.  * ANY FAILURE OF ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.$
  44.  */
  45. #ifndef FLASH_DRV_LIB_H
  46. #define FLASH_DRV_LIB_H
  47. #define FLASH_DEV_COUNT            1
  48. #define FLASH_BASE_ADDRESS_BOOT    0xFFF00000
  49. #define FLASH_DEVICE_COUNT              1
  50. #define FLASH_DEVICE_SECTOR_SIZE        (128 * 1024) 
  51. #define FLASH_SECTOR_SIZE (FLASH_DEVICE_COUNT * FLASH_DEVICE_SECTOR_SIZE)
  52. #define FLASH_SIZE                  (128 * 1024 * 1024) 
  53. #define FLASH_SIZE_SECTORS          (1024)
  54. #define FLASH_BASE_ADDRESS          0xf8000000
  55. #define FLASH_SECTOR_ADDRESS(sector) 
  56.     (FLASH_BASE_ADDRESS + (sector) * FLASH_SECTOR_SIZE)
  57. #define FLASH_ERASE_TIMEOUT_COUNT 750
  58. #define FLASH_ERASE_TIMEOUT_TICKS 2
  59. #define FLASH_PROGRAM_TIMEOUT_POLLS 100000
  60. #define FLASH_PROGRAM_TIMEOUT_TICKS 0
  61. typedef enum {
  62.     AMD = 0x01
  63. } FLASH_VENDORS;
  64. typedef enum {
  65.     FLASH_29GL1G = 0x227E
  66. } FLASH_TYPES;
  67. struct flash_drv_funcs_s {
  68.     FLASH_TYPES dev;
  69.     FLASH_VENDORS vendor;
  70.     void (*flashAutoSelect)(FLASH_TYPES *dev, FLASH_VENDORS *vendor);
  71.     int (*flashEraseSector)(int sectorNum);
  72.     int (*flashRead)(int sectorNum, char *buff,
  73.           unsigned int offset, unsigned int count);
  74.     int (*flashWrite)(int sectorNum, char *buff,
  75.                 unsigned int offset, unsigned int count);
  76.     int (*flashFlushLoadedSector)(void);
  77. };
  78. extern int             flashVerbose; /* DEBUG */
  79. extern int             flashSectorCount;
  80. extern int             flashDevSectorSize;
  81. extern int             flashSize;
  82. extern unsigned int    flashBaseAddress;
  83. extern struct flash_drv_funcs_s flash29GL1G;
  84. int             flashDrvLibInit(void);
  85. int             flashGetSectorCount(void);
  86. int             flashGetSectorSize(void);
  87. int             flashEraseBank(int firstSector, int nSectors);
  88. int             flashBlkRead(int sectorNum, char *buff,
  89.                 unsigned int offset, unsigned int count);
  90. int             flashBlkWrite(int sectorNum, char *buff,
  91.                 unsigned int offset, unsigned int count);
  92. int             flashSyncFilesystem(void);
  93. int             flashDiagnostic(void);
  94. #endif /* FLASH_DRV_LIB_H */