⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nandsim.c

📁 基于linux-2.6.28的mtd驱动
💻 C
📖 第 1 页 / 共 4 页
字号:
	if (ns->regs.count < (ns->geom.pgaddrbytes - ns->geom.secaddrbytes))		ns->regs.column |= (byte << 8 * ns->regs.count);	else {		ns->regs.row |= (byte << 8 * (ns->regs.count -						ns->geom.pgaddrbytes +						ns->geom.secaddrbytes));	}	return;}/* * Switch to STATE_READY state. */static inline void switch_to_ready_state(struct nandsim *ns, u_char status){	NS_DBG("switch_to_ready_state: switch to %s state\n", get_state_name(STATE_READY));	ns->state       = STATE_READY;	ns->nxstate     = STATE_UNKNOWN;	ns->op          = NULL;	ns->npstates    = 0;	ns->stateidx    = 0;	ns->regs.num    = 0;	ns->regs.count  = 0;	ns->regs.off    = 0;	ns->regs.row    = 0;	ns->regs.column = 0;	ns->regs.status = status;}/* * If the operation isn't known yet, try to find it in the global array * of supported operations. * * Operation can be unknown because of the following. *   1. New command was accepted and this is the firs call to find the *      correspondent states chain. In this case ns->npstates = 0; *   2. There is several operations which begin with the same command(s) *      (for example program from the second half and read from the *      second half operations both begin with the READ1 command). In this *      case the ns->pstates[] array contains previous states. * * Thus, the function tries to find operation containing the following * states (if the 'flag' parameter is 0): *    ns->pstates[0], ... ns->pstates[ns->npstates], ns->state * * If (one and only one) matching operation is found, it is accepted ( * ns->ops, ns->state, ns->nxstate are initialized, ns->npstate is * zeroed). * * If there are several maches, the current state is pushed to the * ns->pstates. * * The operation can be unknown only while commands are input to the chip. * As soon as address command is accepted, the operation must be known. * In such situation the function is called with 'flag' != 0, and the * operation is searched using the following pattern: *     ns->pstates[0], ... ns->pstates[ns->npstates], <address input> * * It is supposed that this pattern must either match one operation on * none. There can't be ambiguity in that case. * * If no matches found, the functions does the following: *   1. if there are saved states present, try to ignore them and search *      again only using the last command. If nothing was found, switch *      to the STATE_READY state. *   2. if there are no saved states, switch to the STATE_READY state. * * RETURNS: -2 - no matched operations found. *          -1 - several matches. *           0 - operation is found. */static int find_operation(struct nandsim *ns, uint32_t flag){	int opsfound = 0;	int i, j, idx = 0;	for (i = 0; i < NS_OPER_NUM; i++) {		int found = 1;		if (!(ns->options & ops[i].reqopts))			/* Ignore operations we can't perform */			continue;		if (flag) {			if (!(ops[i].states[ns->npstates] & STATE_ADDR_MASK))				continue;		} else {			if (NS_STATE(ns->state) != NS_STATE(ops[i].states[ns->npstates]))				continue;		}		for (j = 0; j < ns->npstates; j++)			if (NS_STATE(ops[i].states[j]) != NS_STATE(ns->pstates[j])				&& (ns->options & ops[idx].reqopts)) {				found = 0;				break;			}		if (found) {			idx = i;			opsfound += 1;		}	}	if (opsfound == 1) {		/* Exact match */		ns->op = &ops[idx].states[0];		if (flag) {			/*			 * In this case the find_operation function was			 * called when address has just began input. But it isn't			 * yet fully input and the current state must			 * not be one of STATE_ADDR_*, but the STATE_ADDR_*			 * state must be the next state (ns->nxstate).			 */			ns->stateidx = ns->npstates - 1;		} else {			ns->stateidx = ns->npstates;		}		ns->npstates = 0;		ns->state = ns->op[ns->stateidx];		ns->nxstate = ns->op[ns->stateidx + 1];		NS_DBG("find_operation: operation found, index: %d, state: %s, nxstate %s\n",				idx, get_state_name(ns->state), get_state_name(ns->nxstate));		return 0;	}	if (opsfound == 0) {		/* Nothing was found. Try to ignore previous commands (if any) and search again */		if (ns->npstates != 0) {			NS_DBG("find_operation: no operation found, try again with state %s\n",					get_state_name(ns->state));			ns->npstates = 0;			return find_operation(ns, 0);		}		NS_DBG("find_operation: no operations found\n");		switch_to_ready_state(ns, NS_STATUS_FAILED(ns));		return -2;	}	if (flag) {		/* This shouldn't happen */		NS_DBG("find_operation: BUG, operation must be known if address is input\n");		return -2;	}	NS_DBG("find_operation: there is still ambiguity\n");	ns->pstates[ns->npstates++] = ns->state;	return -1;}/* * Returns a pointer to the current page. */static inline union ns_mem *NS_GET_PAGE(struct nandsim *ns){	return &(ns->pages[ns->regs.row]);}/* * Retuns a pointer to the current byte, within the current page. */static inline u_char *NS_PAGE_BYTE_OFF(struct nandsim *ns){	return NS_GET_PAGE(ns)->byte + ns->regs.column + ns->regs.off;}/* * Fill the NAND buffer with data read from the specified page. */static void read_page(struct nandsim *ns, int num){	union ns_mem *mypage;	mypage = NS_GET_PAGE(ns);	if (mypage->byte == NULL) {		NS_DBG("read_page: page %d not allocated\n", ns->regs.row);		memset(ns->buf.byte, 0xFF, num);	} else {		unsigned int page_no = ns->regs.row;		NS_DBG("read_page: page %d allocated, reading from %d\n",			ns->regs.row, ns->regs.column + ns->regs.off);		if (read_error(page_no)) {			int i;			memset(ns->buf.byte, 0xFF, num);			for (i = 0; i < num; ++i)				ns->buf.byte[i] = random32();			NS_WARN("simulating read error in page %u\n", page_no);			return;		}		memcpy(ns->buf.byte, NS_PAGE_BYTE_OFF(ns), num);		if (bitflips && random32() < (1 << 22)) {			int flips = 1;			if (bitflips > 1)				flips = (random32() % (int) bitflips) + 1;			while (flips--) {				int pos = random32() % (num * 8);				ns->buf.byte[pos / 8] ^= (1 << (pos % 8));				NS_WARN("read_page: flipping bit %d in page %d "					"reading from %d ecc: corrected=%u failed=%u\n",					pos, ns->regs.row, ns->regs.column + ns->regs.off,					nsmtd->ecc_stats.corrected, nsmtd->ecc_stats.failed);			}		}	}}/* * Erase all pages in the specified sector. */static void erase_sector(struct nandsim *ns){	union ns_mem *mypage;	int i;	mypage = NS_GET_PAGE(ns);	for (i = 0; i < ns->geom.pgsec; i++) {		if (mypage->byte != NULL) {			NS_DBG("erase_sector: freeing page %d\n", ns->regs.row+i);			kfree(mypage->byte);			mypage->byte = NULL;		}		mypage++;	}}/* * Program the specified page with the contents from the NAND buffer. */static int prog_page(struct nandsim *ns, int num){	int i;	union ns_mem *mypage;	u_char *pg_off;	mypage = NS_GET_PAGE(ns);	if (mypage->byte == NULL) {		NS_DBG("prog_page: allocating page %d\n", ns->regs.row);		/*		 * We allocate memory with GFP_NOFS because a flash FS may		 * utilize this. If it is holding an FS lock, then gets here,		 * then kmalloc runs writeback which goes to the FS again		 * and deadlocks. This was seen in practice.		 */		mypage->byte = kmalloc(ns->geom.pgszoob, GFP_NOFS);		if (mypage->byte == NULL) {			NS_ERR("prog_page: error allocating memory for page %d\n", ns->regs.row);			return -1;		}		memset(mypage->byte, 0xFF, ns->geom.pgszoob);	}	pg_off = NS_PAGE_BYTE_OFF(ns);	for (i = 0; i < num; i++)		pg_off[i] &= ns->buf.byte[i];	return 0;}/* * If state has any action bit, perform this action. * * RETURNS: 0 if success, -1 if error. */static int do_state_action(struct nandsim *ns, uint32_t action){	int num;	int busdiv = ns->busw == 8 ? 1 : 2;	unsigned int erase_block_no, page_no;	action &= ACTION_MASK;	/* Check that page address input is correct */	if (action != ACTION_SECERASE && ns->regs.row >= ns->geom.pgnum) {		NS_WARN("do_state_action: wrong page number (%#x)\n", ns->regs.row);		return -1;	}	switch (action) {	case ACTION_CPY:		/*		 * Copy page data to the internal buffer.		 */		/* Column shouldn't be very large */		if (ns->regs.column >= (ns->geom.pgszoob - ns->regs.off)) {			NS_ERR("do_state_action: column number is too large\n");			break;		}		num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;		read_page(ns, num);		NS_DBG("do_state_action: (ACTION_CPY:) copy %d bytes to int buf, raw offset %d\n",			num, NS_RAW_OFFSET(ns) + ns->regs.off);		if (ns->regs.off == 0)			NS_LOG("read page %d\n", ns->regs.row);		else if (ns->regs.off < ns->geom.pgsz)			NS_LOG("read page %d (second half)\n", ns->regs.row);		else			NS_LOG("read OOB of page %d\n", ns->regs.row);		NS_UDELAY(access_delay);		NS_UDELAY(input_cycle * ns->geom.pgsz / 1000 / busdiv);		break;	case ACTION_SECERASE:		/*		 * Erase sector.		 */		if (ns->lines.wp) {			NS_ERR("do_state_action: device is write-protected, ignore sector erase\n");			return -1;		}		if (ns->regs.row >= ns->geom.pgnum - ns->geom.pgsec			|| (ns->regs.row & ~(ns->geom.secsz - 1))) {			NS_ERR("do_state_action: wrong sector address (%#x)\n", ns->regs.row);			return -1;		}		ns->regs.row = (ns->regs.row <<				8 * (ns->geom.pgaddrbytes - ns->geom.secaddrbytes)) | ns->regs.column;		ns->regs.column = 0;		erase_block_no = ns->regs.row >> (ns->geom.secshift - ns->geom.pgshift);		NS_DBG("do_state_action: erase sector at address %#x, off = %d\n",				ns->regs.row, NS_RAW_OFFSET(ns));		NS_LOG("erase sector %u\n", erase_block_no);		erase_sector(ns);		NS_MDELAY(erase_delay);		if (erase_block_wear)			update_wear(erase_block_no);		if (erase_error(erase_block_no)) {			NS_WARN("simulating erase failure in erase block %u\n", erase_block_no);			return -1;		}		break;	case ACTION_PRGPAGE:		/*		 * Programm page - move internal buffer data to the page.		 */		if (ns->lines.wp) {			NS_WARN("do_state_action: device is write-protected, programm\n");			return -1;		}		num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;		if (num != ns->regs.count) {			NS_ERR("do_state_action: too few bytes were input (%d instead of %d)\n",					ns->regs.count, num);			return -1;		}		if (prog_page(ns, num) == -1)			return -1;		page_no = ns->regs.row;		NS_DBG("do_state_action: copy %d bytes from int buf to (%#x, %#x), raw off = %d\n",			num, ns->regs.row, ns->regs.column, NS_RAW_OFFSET(ns) + ns->regs.off);		NS_LOG("programm page %d\n", ns->regs.row);		NS_UDELAY(programm_delay);		NS_UDELAY(output_cycle * ns->geom.pgsz / 1000 / busdiv);		if (write_error(page_no)) {			NS_WARN("simulating write failure in page %u\n", page_no);			return -1;		}		break;	case ACTION_ZEROOFF:		NS_DBG("do_state_action: set internal offset to 0\n");		ns->regs.off = 0;		break;	case ACTION_HALFOFF:		if (!(ns->options & OPT_PAGE512_8BIT)) {			NS_ERR("do_state_action: BUG! can't skip half of page for non-512"				"byte page size 8x chips\n");			return -1;		}		NS_DBG("do_state_action: set internal offset to %d\n", ns->geom.pgsz/2);		ns->regs.off = ns->geom.pgsz/2;		break;	case ACTION_OOBOFF:		NS_DBG("do_state_action: set internal offset to %d\n", ns->geom.pgsz);		ns->regs.off = ns->geom.pgsz;		break;	default:		NS_DBG("do_state_action: BUG! unknown action\n");	}	return 0;}/* * Switch simulator's state. */static void switch_state(struct nandsim *ns){	if (ns->op) {		/*		 * The current operation have already been identified.		 * Just follow the states chain.		 */		ns->stateidx += 1;		ns->state = ns->nxstate;		ns->nxstate = ns->op[ns->stateidx + 1];		NS_DBG("switch_state: operation is known, switch to the next state, "			"state: %s, nxstate: %s\n",			get_state_name(ns->state), get_state_name(ns->nxstate));		/* See, whether we need to do some action */		if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {			switch_to_ready_state(ns, NS_STATUS_FAILED(ns));			return;		}	} else {		/*		 * We don't yet know which operation we perform.		 * Try to identify it.		 */		/*		 *  The only event causing the switch_state function to		 *  be called with yet unknown operation is new command.		 */		ns->state = get_state_by_command(ns->regs.command);		NS_DBG("switch_state: operation is unknown, try to find it\n");		if (find_operation(ns, 0) != 0)			return;		if ((ns->state & ACTION_MASK) && do_state_action(ns, ns->state) < 0) {			switch_to_ready_state(ns, NS_STATUS_FAILED(ns));			return;		}	}	/* For 16x devices column means the page offset in words */	if ((ns->nxstate & STATE_ADDR_MASK) && ns->busw == 16) {		NS_DBG("switch_state: double the column number for 16x device\n");		ns->regs.column <<= 1;	}	if (NS_STATE(ns->nxstate) == STATE_READY) {		/*		 * The current state is the last. Return to STATE_READY		 */		u_char status = NS_STATUS_OK(ns);		/* In case of data states, see if all bytes were input/output */		if ((ns->state & (STATE_DATAIN_MASK | STATE_DATAOUT_MASK))			&& ns->regs.count != ns->regs.num) {			NS_WARN("switch_state: not all bytes were processed, %d left\n",					ns->regs.num - ns->regs.count);			status = NS_STATUS_FAILED(ns);		}		NS_DBG("switch_state: operation complete, switch to STATE_READY state\n");		switch_to_ready_state(ns, status);		return;	} else if (ns->nxstate & (STATE_DATAIN_MASK | STATE_DATAOUT_MASK)) {		/*		 * If the next state is data input/output, switch to it now		 */		ns->state      = ns->nxstate;		ns->nxstate    = ns->op[++ns->stateidx + 1];		ns->regs.num   = ns->regs.count = 0;		NS_DBG("switch_state: the next state is data I/O, switch, "			"state: %s, nxstate: %s\n",			get_state_name(ns->state), get_state_name(ns->nxstate));		/*		 * Set the internal register to the count of bytes which		 * are expected to be input or output		 */		switch (NS_STATE(ns->state)) {			case STATE_DATAIN:			case STATE_DATAOUT:				ns->regs.num = ns->geom.pgszoob - ns->regs.off - ns->regs.column;				break;			case STATE_DATAOUT_ID:				ns->regs.num = ns->geom.idbytes;				break;			case STATE_DATAOUT_STATUS:			case STATE_DATAOUT_STATUS_M:				ns->regs.count = ns->regs.num = 0;				break;			default:				NS_ERR("switch_state: BUG! unknown data state\n");		}	} else if (ns->nxstate & STATE_ADDR_MASK) {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -