亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? tx4925ndfmc.c

?? nandflash k9g808u0a在pxa270的驅動,由于pxa270沒有nandflash接口
?? C
字號:
/* *  drivers/mtd/tx4925ndfmc.c * *  Overview: *   This is a device driver for the NAND flash device found on the *   Toshiba RBTX4925 reference board, which is a SmartMediaCard. It supports  *   16MiB, 32MiB and 64MiB cards. * * Author: MontaVista Software, Inc.  source@mvista.com * * Derived from drivers/mtd/autcpu12.c *       Copyright (c) 2001 Thomas Gleixner (gleixner@autronix.de) * * $Id: tx4925ndfmc.c,v 1.3 2004/07/20 02:44:26 dwmw2 Exp $ * * Copyright (C) 2001 Toshiba Corporation  *  * 2003 (c) MontaVista Software, Inc. This file is licensed under * the terms of the GNU General Public License version 2. This program * is licensed "as is" without any warranty of any kind, whether express * or implied. * */#include <linux/slab.h>#include <linux/init.h>#include <linux/module.h>#include <linux/mtd/mtd.h>#include <linux/mtd/nand.h>#include <linux/mtd/partitions.h>#include <linux/delay.h>#include <asm/io.h>#include <asm/tx4925/tx4925_nand.h>extern struct nand_oobinfo jffs2_oobinfo;/* * MTD structure for RBTX4925 board */static struct mtd_info *tx4925ndfmc_mtd = NULL;/* * Define partitions for flash devices */static struct mtd_partition partition_info16k[] = {	{ .name = "RBTX4925 flash partition 1",	  .offset =  0,	  .size =    8 * 0x00100000 },	{ .name = "RBTX4925 flash partition 2",	  .offset =  8 * 0x00100000,	  .size =    8 * 0x00100000 },};static struct mtd_partition partition_info32k[] = {	{ .name = "RBTX4925 flash partition 1",	  .offset =  0,	  .size =    8 * 0x00100000 },	{ .name = "RBTX4925 flash partition 2",	  .offset = 8 * 0x00100000,	  .size =  24 * 0x00100000 },};static struct mtd_partition partition_info64k[] = {	{ .name = "User FS",	  .offset =  0,	  .size =   16 * 0x00100000 },	{ .name = "RBTX4925 flash partition 2",	  .offset = 16 * 0x00100000,	  .size =   48 * 0x00100000},};static struct mtd_partition partition_info128k[] = {	{ .name = "Skip bad section",	  .offset =  0,	  .size =   16 * 0x00100000 },	{ .name = "User FS",	  .offset = 16 * 0x00100000,	  .size =   112 * 0x00100000 },};#define NUM_PARTITIONS16K  2#define NUM_PARTITIONS32K  2#define NUM_PARTITIONS64K  2#define NUM_PARTITIONS128K 2/*  *	hardware specific access to control-lines*/static void tx4925ndfmc_hwcontrol(struct mtd_info *mtd, int cmd){	switch(cmd){		case NAND_CTL_SETCLE: 			tx4925_ndfmcptr->mcr |= TX4925_NDFMCR_CLE;			break;		case NAND_CTL_CLRCLE:			tx4925_ndfmcptr->mcr &= ~TX4925_NDFMCR_CLE;			break;		case NAND_CTL_SETALE:			tx4925_ndfmcptr->mcr |= TX4925_NDFMCR_ALE;			break;		case NAND_CTL_CLRALE: 			tx4925_ndfmcptr->mcr &= ~TX4925_NDFMCR_ALE;			break;		case NAND_CTL_SETNCE:			tx4925_ndfmcptr->mcr |= TX4925_NDFMCR_CE;			break;		case NAND_CTL_CLRNCE:			tx4925_ndfmcptr->mcr &= ~TX4925_NDFMCR_CE;			break;		case NAND_CTL_SETWP:			tx4925_ndfmcptr->mcr |= TX4925_NDFMCR_WE;			break;		case NAND_CTL_CLRWP:			tx4925_ndfmcptr->mcr &= ~TX4925_NDFMCR_WE;			break;	}}/**	read device ready pin*/static int tx4925ndfmc_device_ready(struct mtd_info *mtd){	int ready;	ready = (tx4925_ndfmcptr->sr & TX4925_NDSFR_BUSY) ? 0 : 1;	return ready;}void tx4925ndfmc_enable_hwecc(struct mtd_info *mtd, int mode){	/* reset first */	tx4925_ndfmcptr->mcr |= TX4925_NDFMCR_ECC_CNTL_MASK;	tx4925_ndfmcptr->mcr &= ~TX4925_NDFMCR_ECC_CNTL_MASK;	tx4925_ndfmcptr->mcr |= TX4925_NDFMCR_ECC_CNTL_ENAB;}static void tx4925ndfmc_disable_ecc(void){	tx4925_ndfmcptr->mcr &= ~TX4925_NDFMCR_ECC_CNTL_MASK;}static void tx4925ndfmc_enable_read_ecc(void){	tx4925_ndfmcptr->mcr &= ~TX4925_NDFMCR_ECC_CNTL_MASK;	tx4925_ndfmcptr->mcr |= TX4925_NDFMCR_ECC_CNTL_READ;}void tx4925ndfmc_readecc(struct mtd_info *mtd, const u_char *dat, u_char *ecc_code){	int i;	u_char *ecc = ecc_code;        tx4925ndfmc_enable_read_ecc();	for (i = 0;i < 6;i++,ecc++)		*ecc = tx4925_read_nfmc(&(tx4925_ndfmcptr->dtr));        tx4925ndfmc_disable_ecc();}void tx4925ndfmc_device_setup(void){	*(unsigned char *)0xbb005000 &= ~0x08;        /* reset NDFMC */        tx4925_ndfmcptr->rstr |= TX4925_NDFRSTR_RST;	while (tx4925_ndfmcptr->rstr & TX4925_NDFRSTR_RST);       	/* setup BusSeparete, Hold Time, Strobe Pulse Width */	tx4925_ndfmcptr->mcr = TX4925_BSPRT ? TX4925_NDFMCR_BSPRT : 0;	tx4925_ndfmcptr->spr = TX4925_HOLD << 4 | TX4925_SPW;             }static u_char tx4925ndfmc_nand_read_byte(struct mtd_info *mtd){        struct nand_chip *this = mtd->priv;        return tx4925_read_nfmc(this->IO_ADDR_R);}static void tx4925ndfmc_nand_write_byte(struct mtd_info *mtd, u_char byte){        struct nand_chip *this = mtd->priv;        tx4925_write_nfmc(byte, this->IO_ADDR_W);}static void tx4925ndfmc_nand_write_buf(struct mtd_info *mtd, const u_char *buf, int len){	int i;	struct nand_chip *this = mtd->priv;	for (i=0; i<len; i++)		tx4925_write_nfmc(buf[i], this->IO_ADDR_W);}static void tx4925ndfmc_nand_read_buf(struct mtd_info *mtd, u_char *buf, int len){	int i;	struct nand_chip *this = mtd->priv;	for (i=0; i<len; i++)		buf[i] = tx4925_read_nfmc(this->IO_ADDR_R);}static int tx4925ndfmc_nand_verify_buf(struct mtd_info *mtd, const u_char *buf, int len){	int i;	struct nand_chip *this = mtd->priv;	for (i=0; i<len; i++)		if (buf[i] != tx4925_read_nfmc(this->IO_ADDR_R))			return -EFAULT;	return 0;}/* * Send command to NAND device */static void tx4925ndfmc_nand_command (struct mtd_info *mtd, unsigned command, int column, int page_addr){	register struct nand_chip *this = mtd->priv;	/* Begin command latch cycle */	this->hwcontrol(mtd, NAND_CTL_SETCLE);	/*	 * Write out the command to the device.	 */	if (command == NAND_CMD_SEQIN) {		int readcmd;		if (column >= mtd->oobblock) {			/* OOB area */			column -= mtd->oobblock;			readcmd = NAND_CMD_READOOB;		} else if (column < 256) {			/* First 256 bytes --> READ0 */			readcmd = NAND_CMD_READ0;		} else {			column -= 256;			readcmd = NAND_CMD_READ1;		}		this->write_byte(mtd, readcmd);	}	this->write_byte(mtd, command);	/* Set ALE and clear CLE to start address cycle */	this->hwcontrol(mtd, NAND_CTL_CLRCLE);	if (column != -1 || page_addr != -1) {		this->hwcontrol(mtd, NAND_CTL_SETALE);		/* Serially input address */		if (column != -1)			this->write_byte(mtd, column);		if (page_addr != -1) {			this->write_byte(mtd, (unsigned char) (page_addr & 0xff));			this->write_byte(mtd, (unsigned char) ((page_addr >> 8) & 0xff));			/* One more address cycle for higher density devices */			if (mtd->size & 0x0c000000) 				this->write_byte(mtd, (unsigned char) ((page_addr >> 16) & 0x0f));		}		/* Latch in address */		this->hwcontrol(mtd, NAND_CTL_CLRALE);	}		/* 	 * program and erase have their own busy handlers 	 * status and sequential in needs no delay	*/	switch (command) {				case NAND_CMD_PAGEPROG:		/* Turn off WE */		this->hwcontrol (mtd, NAND_CTL_CLRWP);                return;	case NAND_CMD_SEQIN:		/* Turn on WE */		this->hwcontrol (mtd, NAND_CTL_SETWP);                return;	case NAND_CMD_ERASE1:	case NAND_CMD_ERASE2:	case NAND_CMD_STATUS:		return;	case NAND_CMD_RESET:		if (this->dev_ready)				break;		this->hwcontrol(mtd, NAND_CTL_SETCLE);		this->write_byte(mtd, NAND_CMD_STATUS);		this->hwcontrol(mtd, NAND_CTL_CLRCLE);		while ( !(this->read_byte(mtd) & 0x40));		return;	/* This applies to read commands */		default:		/* 		 * If we don't have access to the busy pin, we apply the given		 * command delay		*/		if (!this->dev_ready) {			udelay (this->chip_delay);			return;		}		}		/* wait until command is processed */	while (!this->dev_ready(mtd));}#ifdef CONFIG_MTD_CMDLINE_PARTSextern int parse_cmdline_partitions(struct mtd_info *master, struct mtd_partition **pparts, char *);#endif/* * Main initialization routine */extern int nand_correct_data(struct mtd_info *mtd, u_char *dat, u_char *read_ecc, u_char *calc_ecc);int __init tx4925ndfmc_init (void){	struct nand_chip *this;	int err = 0;	/* Allocate memory for MTD device structure and private data */	tx4925ndfmc_mtd = kmalloc (sizeof(struct mtd_info) + sizeof (struct nand_chip),				GFP_KERNEL);	if (!tx4925ndfmc_mtd) {		printk ("Unable to allocate RBTX4925 NAND MTD device structure.\n");		err = -ENOMEM;		goto out;	}        tx4925ndfmc_device_setup();	/* io is indirect via a register so don't need to ioremap address */	/* Get pointer to private data */	this = (struct nand_chip *) (&tx4925ndfmc_mtd[1]);	/* Initialize structures */	memset((char *) tx4925ndfmc_mtd, 0, sizeof(struct mtd_info));	memset((char *) this, 0, sizeof(struct nand_chip));	/* Link the private data with the MTD structure */	tx4925ndfmc_mtd->priv = this;	/* Set address of NAND IO lines */	this->IO_ADDR_R = (unsigned long)&(tx4925_ndfmcptr->dtr);	this->IO_ADDR_W = (unsigned long)&(tx4925_ndfmcptr->dtr);	this->hwcontrol = tx4925ndfmc_hwcontrol;	this->enable_hwecc = tx4925ndfmc_enable_hwecc;	this->calculate_ecc = tx4925ndfmc_readecc;	this->correct_data = nand_correct_data;	this->eccmode = NAND_ECC_HW6_512;		this->dev_ready = tx4925ndfmc_device_ready;	/* 20 us command delay time */	this->chip_delay = 20;		        this->read_byte = tx4925ndfmc_nand_read_byte;        this->write_byte = tx4925ndfmc_nand_write_byte;	this->cmdfunc = tx4925ndfmc_nand_command;	this->write_buf = tx4925ndfmc_nand_write_buf;	this->read_buf = tx4925ndfmc_nand_read_buf;	this->verify_buf = tx4925ndfmc_nand_verify_buf;	/* Scan to find existance of the device */	if (nand_scan (tx4925ndfmc_mtd, 1)) {		err = -ENXIO;		goto out_ior;	}	/* Allocate memory for internal data buffer */	this->data_buf = kmalloc (sizeof(u_char) * (tx4925ndfmc_mtd->oobblock + tx4925ndfmc_mtd->oobsize), GFP_KERNEL);	if (!this->data_buf) {		printk ("Unable to allocate NAND data buffer for RBTX4925.\n");		err = -ENOMEM;		goto out_ior;	}	/* Register the partitions */#ifdef CONFIG_MTD_CMDLINE_PARTS        {                int mtd_parts_nb = 0;                struct mtd_partition *mtd_parts = 0;                mtd_parts_nb = parse_cmdline_partitions(tx4925ndfmc_mtd, &mtd_parts, "tx4925ndfmc");                if (mtd_parts_nb > 0)                        add_mtd_partitions(tx4925ndfmc_mtd, mtd_parts, mtd_parts_nb);                else                        add_mtd_device(tx4925ndfmc_mtd);        }#else /* ifdef CONFIG_MTD_CMDLINE_PARTS */	switch(tx4925ndfmc_mtd->size){		case 0x01000000: add_mtd_partitions(tx4925ndfmc_mtd, partition_info16k, NUM_PARTITIONS16K); break;		case 0x02000000: add_mtd_partitions(tx4925ndfmc_mtd, partition_info32k, NUM_PARTITIONS32K); break;		case 0x04000000: add_mtd_partitions(tx4925ndfmc_mtd, partition_info64k, NUM_PARTITIONS64K); break; 		case 0x08000000: add_mtd_partitions(tx4925ndfmc_mtd, partition_info128k, NUM_PARTITIONS128K); break; 		default: {			printk ("Unsupported SmartMedia device\n"); 			err = -ENXIO;			goto out_buf;		}	}#endif /* ifdef CONFIG_MTD_CMDLINE_PARTS */	goto out;out_buf:	kfree (this->data_buf);    out_ior:out:	return err;}module_init(tx4925ndfmc_init);/* * Clean up routine */#ifdef MODULEstatic void __exit tx4925ndfmc_cleanup (void){	struct nand_chip *this = (struct nand_chip *) &tx4925ndfmc_mtd[1];	/* Unregister partitions */	del_mtd_partitions(tx4925ndfmc_mtd);		/* Unregister the device */	del_mtd_device (tx4925ndfmc_mtd);	/* Free internal data buffers */	kfree (this->data_buf);	/* Free the MTD device structure */	kfree (tx4925ndfmc_mtd);}module_exit(tx4925ndfmc_cleanup);#endifMODULE_LICENSE("GPL");MODULE_AUTHOR("Alice Hennessy <ahennessy@mvista.com>");MODULE_DESCRIPTION("Glue layer for SmartMediaCard on Toshiba RBTX4925");

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品一区二区三区四区| 日韩精品一级二级| 欧美v日韩v国产v| 欧美日韩国产经典色站一区二区三区| 91美女片黄在线| 色噜噜狠狠一区二区三区果冻| 99精品久久只有精品| aaa欧美大片| 色婷婷激情一区二区三区| 色噜噜夜夜夜综合网| 欧美精品 国产精品| 91麻豆精品国产91久久久久久久久 | 国产综合一区二区| 国产成人高清在线| www.在线欧美| 欧美精品三级在线观看| 91精品国产欧美一区二区18 | 成人高清av在线| 91视频观看视频| 制服丝袜国产精品| 精品久久久久久最新网址| 2021国产精品久久精品| 国产精品乱码久久久久久| 亚洲欧美另类小说视频| 午夜久久电影网| 国产曰批免费观看久久久| 高清成人在线观看| 欧美写真视频网站| 2024国产精品| 亚洲日本va午夜在线影院| 性感美女久久精品| 韩国一区二区视频| 欧美在线看片a免费观看| 日韩欧美aaaaaa| 国产精品热久久久久夜色精品三区| 亚洲欧美日韩国产综合在线| 男女性色大片免费观看一区二区| 国产成人啪午夜精品网站男同| 91国在线观看| 精品欧美乱码久久久久久1区2区| 1024亚洲合集| 韩国成人福利片在线播放| 日本久久电影网| 欧美精品一区二区三区很污很色的| 亚洲图片你懂的| 国产毛片精品视频| 91麻豆精品久久久久蜜臀| 国产精品理论在线观看| 看国产成人h片视频| 色综合久久66| 国产精品伦理一区二区| 精品亚洲aⅴ乱码一区二区三区| 91社区在线播放| 亚洲国产精品黑人久久久| 久久精品国产第一区二区三区| 一本久久精品一区二区 | 成人黄色在线看| 日韩欧美一卡二卡| 午夜欧美在线一二页| 91在线观看污| 国产精品麻豆久久久| 国产美女一区二区三区| 精品捆绑美女sm三区| 丝瓜av网站精品一区二区| 91国产视频在线观看| 亚洲卡通欧美制服中文| 99久久精品费精品国产一区二区| 久久婷婷国产综合国色天香| 另类调教123区| 日韩精品最新网址| 日本美女一区二区| 7777精品久久久大香线蕉| 亚洲成av人片www| 在线观看日韩电影| 亚洲综合激情另类小说区| 在线观看免费成人| 一区二区欧美国产| 欧美亚洲动漫精品| 亚洲最大色网站| 欧美日韩五月天| 亚洲电影中文字幕在线观看| 欧美三级视频在线| 爽爽淫人综合网网站| 日韩三级高清在线| 国产福利视频一区二区三区| 国产欧美日本一区视频| jiyouzz国产精品久久| 最近中文字幕一区二区三区| 91丨porny丨最新| 亚洲国产乱码最新视频| 欧美精品成人一区二区三区四区| 蜜臂av日日欢夜夜爽一区| 精品国产乱码久久久久久免费| 久久国产精品第一页| 国产精品久久久久久久久果冻传媒 | 奇米色一区二区| 欧美xfplay| 91在线免费播放| 日韩精品久久久久久| 久久一夜天堂av一区二区三区| 成人自拍视频在线观看| 亚洲欧美激情一区二区| 91精品午夜视频| 国产白丝精品91爽爽久久| 一区二区三区免费网站| 日韩精品一区二区三区蜜臀| 亚洲123区在线观看| 精品日韩在线观看| 91理论电影在线观看| 婷婷激情综合网| 欧美韩国日本一区| 91.xcao| av一二三不卡影片| 美女任你摸久久 | 欧美电影免费观看高清完整版在线| 国产九色精品成人porny| 亚洲综合一二三区| 久久人人超碰精品| 精品婷婷伊人一区三区三| 丰满放荡岳乱妇91ww| 日本人妖一区二区| 亚洲精品久久嫩草网站秘色| 久久综合久久鬼色中文字| 欧美视频三区在线播放| 懂色av中文字幕一区二区三区| 日韩综合在线视频| 亚洲精品福利视频网站| 国产亚洲人成网站| 日韩女优制服丝袜电影| 欧美色精品在线视频| 成人aaaa免费全部观看| 欧美aⅴ一区二区三区视频| 亚洲一区二区三区四区在线免费观看 | 国产一区二区福利视频| 亚洲大片精品永久免费| 国产精品国产三级国产aⅴ原创| 欧美电视剧免费全集观看| 欧美三片在线视频观看| 色婷婷一区二区| 91无套直看片红桃| 成人高清免费观看| 成人高清在线视频| 成人一级黄色片| 国产精品系列在线播放| 美女高潮久久久| 青青草国产精品97视觉盛宴 | 国产欧美一区二区三区网站| 欧美成人video| 日韩欧美亚洲一区二区| 亚洲激情图片小说视频| 洋洋av久久久久久久一区| 国产精品久久午夜| 国产精品色婷婷| 国产精品成人在线观看| 亚洲欧洲av在线| 亚洲三级视频在线观看| 亚洲精品美腿丝袜| 亚洲一区二区三区视频在线 | 99久久免费精品| 99精品在线观看视频| 91传媒视频在线播放| 在线视频综合导航| 欧美三级一区二区| 欧美成人猛片aaaaaaa| 久久久久久久久久久99999| 久久精品视频免费观看| 成人免费在线播放视频| 亚洲一区电影777| 免费成人在线网站| 国产**成人网毛片九色| 91社区在线播放| 欧美一区二区在线观看| 丝瓜av网站精品一区二区| 日韩视频123| 国产精品久久99| 视频一区视频二区在线观看| 麻豆成人综合网| av在线一区二区| 777xxx欧美| 国产精品久久久久久久岛一牛影视| 亚洲精品国产无套在线观| 男女男精品网站| 91丝袜美女网| 欧美成人一区二区三区在线观看| 国产精品欧美一级免费| 亚洲国产欧美另类丝袜| 国产精品18久久久久久久久| 色婷婷综合久久久| 日韩三级伦理片妻子的秘密按摩| 亚洲国产精品成人综合色在线婷婷| 亚洲一区二区三区四区不卡| 国产一区二区久久| 欧美综合一区二区三区| 亚洲精品一区二区精华| 悠悠色在线精品| 国产传媒一区在线| 91精品在线免费观看| 国产精品久久久久三级| 狠狠色丁香久久婷婷综合丁香| 欧美优质美女网站|