欢迎访问ic37.com |
会员登录 免费注册
发布采购

DS617 参数 Datasheet PDF下载

DS617图片预览
型号: DS617
PDF下载: 下载PDF文件 查看货源
内容描述: 平台的Flash XL高密度配置和存储设备 [Platform Flash XL High-Density Configuration and Storage Device]
分类和应用: 存储
文件页数/大小: 88 页 / 2352 K
品牌: XILINX [ XILINX, INC ]
 浏览型号DS617的Datasheet PDF文件第67页浏览型号DS617的Datasheet PDF文件第68页浏览型号DS617的Datasheet PDF文件第69页浏览型号DS617的Datasheet PDF文件第70页浏览型号DS617的Datasheet PDF文件第72页浏览型号DS617的Datasheet PDF文件第73页浏览型号DS617的Datasheet PDF文件第74页浏览型号DS617的Datasheet PDF文件第75页  
R
Platform Flash XL High-Density Configuration and Storage Device  
X-Ref Target - Figure 39  
Buffer_Program_command (Start_Address, n, buffer_Program[] )  
/* buffer_Program [] is an array structure used to store the address and  
data to be programmed to the Flash memory (the address must be within  
the segment Start Address and Start Address+n) */  
{
Start  
Buffer Program E8h  
Command,  
do {writeToFlash (Start_Address, 0xE8) ;  
Start Address  
status_register=readFlash (Start_Address);  
} while (status_register.SR7==0);  
Read Status  
Register  
NO  
SR7 = 1  
YES  
writeToFlash (Start_Address, n);  
(1)  
Write n  
,
Start Address  
Write Buffer Data,  
Start Address  
writeToFlash (buffer_Program[0].address, buffer_Program[0].data);  
/*buffer_Program[0].address is the start address*/  
X = 0  
X = n  
x = 0;  
YES  
while (x<n)  
Write Next Buffer Data,  
Next Program Address  
(2)  
{ writeToFlash (buffer_Program[x+1].address, buffer_Program[x+1].data);  
x++;  
X = X + 1  
}
Program  
Buffer to Flash  
Confirm D0h  
writeToFlash (Start_Address, 0xD0);  
Read Status  
Register  
do {status_register=readFlash (Start_Address);  
} while (status_register.SR7==0);  
NO  
SR7 = 1  
YES  
Full Status  
Register Check  
full_status_register_check();  
}
(3)  
End  
DS617_33_101608  
Notes:  
1. n + 1 is the number of data being programmed.  
2. Next Program data is an element belonging to buffer_Program[].data; Next Program address is an element belonging to  
buffer_Program[].address  
3. Routine for Error Check by reading SR3, SR4 and SR1.  
4. To read the memory in Asynchronous mode, the CR15 Configuration Register bit must be written to 1.  
Figure 39: Buffer Program Flowchart and Pseudocode  
DS617 (v3.0.1) January 07, 2010  
www.xilinx.com  
Product Specification  
71  
 复制成功!