jedec.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* JEDEC Flash Interface.
  2.  * This is an older type of interface for self programming flash. It is 
  3.  * commonly use in older AMD chips and is obsolete compared with CFI.
  4.  * It is called JEDEC because the JEDEC association distributes the ID codes
  5.  * for the chips.
  6.  *
  7.  * See the AMD flash databook for information on how to operate the interface.
  8.  *
  9.  * $Id: jedec.h,v 1.2 2001/11/06 14:37:36 dwmw2 Exp $
  10.  */
  11. #ifndef __LINUX_MTD_JEDEC_H__
  12. #define __LINUX_MTD_JEDEC_H__
  13. #include <linux/types.h>
  14. #include <linux/mtd/map.h>
  15. #define MAX_JEDEC_CHIPS 16
  16. // Listing of all supported chips and their information
  17. struct JEDECTable
  18. {
  19.    __u16 jedec;
  20.    char *name;
  21.    unsigned long size;
  22.    unsigned long sectorsize;
  23.    __u32 capabilities;
  24. };
  25. // JEDEC being 0 is the end of the chip array
  26. struct jedec_flash_chip
  27. {
  28.    __u16 jedec;
  29.    unsigned long size;
  30.    unsigned long sectorsize;
  31.    
  32.    // *(__u8*)(base + (adder << addrshift)) = data << datashift
  33.    // Address size = size << addrshift
  34.    unsigned long base;           // Byte 0 of the flash, will be unaligned
  35.    unsigned int datashift;       // Useful for 32bit/16bit accesses
  36.    unsigned int addrshift;
  37.    unsigned long offset;         // linerized start. base==offset for unbanked, uninterleaved flash
  38.    
  39.    __u32 capabilities;
  40.    
  41.    // These markers are filled in by the flash_chip_scan function
  42.    unsigned long start;
  43.    unsigned long length;
  44. };
  45. struct jedec_private
  46. {
  47.    unsigned long size;         // Total size of all the devices
  48.    
  49.    /* Bank handling. If sum(bank_fill) == size then this is linear flash.
  50.       Otherwise the mapping has holes in it. bank_fill may be used to
  51.       find the holes, but in the common symetric case 
  52.       bank_fill[0] == bank_fill[*], thus addresses may be computed 
  53.       mathmatically. bank_fill must be powers of two */
  54.    unsigned is_banked;
  55.    unsigned long bank_fill[MAX_JEDEC_CHIPS];
  56.    
  57.    struct jedec_flash_chip chips[MAX_JEDEC_CHIPS];  
  58. };
  59. #endif