热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

WINCE-MLC型NANDFLASHTWO_PLANEPAGEPROGRAM\READ

************************************************************************

/***********************************************************************/

/*                                           Bryan Wang                                                  */

/*                                              2013-8-1                                                    */

/***********************************************************************/

以K9GAG08U0D为例,整理TWO-PLANE读写操作。

1、TWO_PLANE PAGE PROGRAM

Two-Plane page program is an extension of page program, for a single plane with 4314 byte data registers. Since the device is equiped with two memory planes, activating the two sets of 4314 bytes data registers enables a simultaneous programing of two pages.

After writing the first set of data up to 4314 byte into the selected data registers via cache registers, Dummy Page Program commad(11h) instead of actual Page Program command(10h) is inputted to finish data-loading of the first plane. Since no programming process is involved, R//B remains in Busy state for a short period of time(tDBSY). Read Status command(70h) may be issued to find out when the device returns to Ready state by polling the Read/Busy status bit(I/O 6). Then the next set of data for the other plane is inputted after the 81h command and address sequences. After inputting data for the last plane, actual True Page Program(10h) instead of dummy Page Program command(11h) must be followed to start the programing process. The operation of Ready/Busy and Read Status is the same as that of Page Program. Although two planes are programmed simultaneously, pass/fail is not availalbe for each page when the program operation completes. Status bit of I/O is set to "1" when any of the page fails.


  • 基础知识

K9GAG08有两个memory plane, 分别为plane 0 和plane 1, 每个plane包含2048个块,每个plane都有一个data registers(有时也叫做页寄存器,page register),用于缓存数据。

Two-Plane编程的顺序如下图:

N=0时, 那么Flash会先写block 0的第0页,再写block 1的第0页,然后依次为:【block 0 page 1】 -->【 block1 page 1】 -->【block 0 page 2】 -->【 block1 page 2】......

  • 操作步骤、时序
(1)发送命令80h
(2)发送Plane 0中要操作的地址
(3)发送命令11h
(4)等待Read/Busy位变为Ready状态。可用通过检测R/B Pin脚电平,也可以发送Read Status命令,检测Ready/Busy位(I/O 6)。
(5)发送命令81h
(6)发送Plane 1中要操作的地址
(7)发送命令10h
(8)等待Read/Busy位变为Ready状态。可用通过检测R/B Pin脚电平,也可以发送Read Status命令,检测Ready/Busy位(I/O 6)。
(9)检验写操作是否成功:发送Read Status命令,检测状态为I/O 0, 如果该位为1,说明写操作失败;如果该位为0,说明写操作成功。

2、TWO-PLANE PAGE READ

Two-Plane Page Read is an extension of Page Read, for single plane with 4314 byte data registers. Since the dvice is equipped with two memory planes, activating the two sets of 4314 bytes data registers enables a random read of two pages. Two-Plane Page Read is initiated by repeating command 60h followed by three address cycles twice. In this case, only same page of same block can be selected from each time.

After Read Confirm command(30h) the 8628 bytes of data within the selected two page are transferred to the cache registers via data registers in less than 60us(tR). The system controller can detect the completion of data transfer(tR) by monitoring the output of R/B pin.

Once the data is loaded into the cache registers, the data output of first plane can be read out by issuing command 00h with Five Address Cycles, command 05h with two column address and finally E0h. The data output of second plane can be read out using the identical command sequences.


  • 操作步骤、时序

(1)发送60h,然后发送plane 0 中对应页的地址(3 cycle)

(2)发送60h,然后发送plane 1 中对应页的地址(3 cycle)

(3)发送30h,此时,8628字节的数据被传输每个plane的页寄存器中

(4)检测R/B pin脚信号,判断数据传输是否完成

(5)发送00h,并发送plane 0 中要操作的地址(5 cycle,其中两个cycle的 column address被置为全0状态),然后发05h,再发column address(2 cycle),最后发E0h, 接收plane 0 中读取的数据

(6)发送00h,并发送plane 1 中要操作的地址(5 cycle,其中两个cycle的 column address被置为全0状态),然后发05h,再发column address(2 cycle),最后发E0h, 接收plane 1 中读取的数据


推荐阅读
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • 在前两篇文章中,我们探讨了 ControllerDescriptor 和 ActionDescriptor 这两个描述对象,分别对应控制器和操作方法。本文将基于 MVC3 源码进一步分析 ParameterDescriptor,即用于描述 Action 方法参数的对象,并详细介绍其工作原理。 ... [详细]
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • 本文详细介绍了如何在Linux系统上安装和配置Smokeping,以实现对网络链路质量的实时监控。通过详细的步骤和必要的依赖包安装,确保用户能够顺利完成部署并优化其网络性能监控。 ... [详细]
  • 本文详细介绍了如何构建一个高效的UI管理系统,集中处理UI页面的打开、关闭、层级管理和页面跳转等问题。通过UIManager统一管理外部切换逻辑,实现功能逻辑分散化和代码复用,支持多人协作开发。 ... [详细]
  • 本文详细介绍了Akka中的BackoffSupervisor机制,探讨其在处理持久化失败和Actor重启时的应用。通过具体示例,展示了如何配置和使用BackoffSupervisor以实现更细粒度的异常处理。 ... [详细]
  • 解读MySQL查询执行计划的详细指南
    本文旨在帮助开发者和数据库管理员深入了解如何解读MySQL查询执行计划。通过详细的解析,您将掌握优化查询性能的关键技巧,了解各种访问类型和额外信息的含义。 ... [详细]
  • 扫描线三巨头 hdu1928hdu 1255  hdu 1542 [POJ 1151]
    学习链接:http:blog.csdn.netlwt36articledetails48908031学习扫描线主要学习的是一种扫描的思想,后期可以求解很 ... [详细]
  • 从 .NET 转 Java 的自学之路:IO 流基础篇
    本文详细介绍了 Java 中的 IO 流,包括字节流和字符流的基本概念及其操作方式。探讨了如何处理不同类型的文件数据,并结合编码机制确保字符数据的正确读写。同时,文中还涵盖了装饰设计模式的应用,以及多种常见的 IO 操作实例。 ... [详细]
  • 本题探讨如何通过最大流算法解决农场排水系统的设计问题。题目要求计算从水源点到汇合点的最大水流速率,使用经典的EK(Edmonds-Karp)和Dinic算法进行求解。 ... [详细]
  • 本文介绍了如何通过配置 Android Studio 和 Gradle 来显著提高构建性能,涵盖内存分配优化、并行构建和性能分析等实用技巧。 ... [详细]
  • 深入解析 Apache Shiro 安全框架架构
    本文详细介绍了 Apache Shiro,一个强大且灵活的开源安全框架。Shiro 专注于简化身份验证、授权、会话管理和加密等复杂的安全操作,使开发者能够更轻松地保护应用程序。其核心目标是提供易于使用和理解的API,同时确保高度的安全性和灵活性。 ... [详细]
  • PHP 5.5.0rc1 发布:深入解析 Zend OPcache
    2013年5月9日,PHP官方发布了PHP 5.5.0rc1和PHP 5.4.15正式版,这两个版本均支持64位环境。本文将详细介绍Zend OPcache的功能及其在Windows环境下的配置与测试。 ... [详细]
  • 尽管使用TensorFlow和PyTorch等成熟框架可以显著降低实现递归神经网络(RNN)的门槛,但对于初学者来说,理解其底层原理至关重要。本文将引导您使用NumPy从头构建一个用于自然语言处理(NLP)的RNN模型。 ... [详细]
  • ASP.NET MVC中Area机制的实现与优化
    本文探讨了在ASP.NET MVC框架中,如何通过Area机制有效地组织和管理大规模应用程序的不同功能模块。通过合理的文件夹结构和命名规则,开发人员可以更高效地管理和扩展项目。 ... [详细]
author-avatar
周笨笨真笨
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有