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

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

?? cfi_cmdset_0001.c

?? vivi bootloader 主要是初始化內核
?? C
?? 第 1 頁 / 共 2 頁
字號:
/* * vivi/drivers/mtd/cfi-intelext.c: Intel Extended Vendor Command Set * * Based on linux/drivers/mtd/chips/cfi_cmdset_0001.c * * $Id: cfi_cmdset_0001.c,v 1.6 2002/10/10 11:52:26 nandy Exp $ * * History * * 2002-01-16: Nandy Lyu <nandy@mizi.com> *    - Initial code * */#include "config.h"#include "mtd/mtd.h"#include "mtd/cfi.h"#include "heap.h"#include "printk.h"#ifdef CONFIG_MSG_PROGRESS#include "vivi_lib.h"#endif#include <types.h>#include <errno.h>static int cfi_intelext_write_words(struct mtd_info *, loff_t, size_t, size_t *, const u_char *);static int cfi_intelext_write_buffers(struct mtd_info *, loff_t, size_t, size_t *, const u_char *);static int cfi_intelext_erase_varsize(struct mtd_info *, struct erase_info *);static int cfi_intelext_lock(struct mtd_info *mtd, loff_t ofs, size_t len);static int cfi_intelext_unlock(struct mtd_info *mtd, loff_t ofs, size_t len);struct mtd_info *cfi_cmdset_0001(struct map_info *, int);static struct mtd_info *cfi_intelext_setup (struct map_info *);#ifdef CONFIG_DEBUG_CFIstatic void cfi_tell_features(struct cfi_pri_intelext *extp){        int i;        printk("  Feature/Command Support: %4.4X\n", extp->FeatureSupport);        printk("     - Chip Erase:         %s\n", extp->FeatureSupport&1?"supported":"unsupported");        printk("     - Suspend Erase:      %s\n", extp->FeatureSupport&2?"supported":"unsupported");        printk("     - Suspend Program:    %s\n", extp->FeatureSupport&4?"supported":"unsupported");        printk("     - Legacy Lock/Unlock: %s\n", extp->FeatureSupport&8?"supported":"unsupported");        printk("     - Queued Erase:       %s\n", extp->FeatureSupport&16?"supported":"unsupported");        printk("     - Instant block lock: %s\n", extp->FeatureSupport&32?"supported":"unsupported");        printk("     - Protection Bits:    %s\n", extp->FeatureSupport&64?"supported":"unsupported");        printk("     - Page-mode read:     %s\n", extp->FeatureSupport&128?"supported":"unsupported");        printk("     - Synchronous read:   %s\n", extp->FeatureSupport&256?"supported":"unsupported");        for (i=9; i<32; i++) {                if (extp->FeatureSupport & (1<<i))                        printk("     - Unknown Bit %X:      supported\n", i);        }        printk("  Supported functions after Suspend: %2.2X\n", extp->SuspendCmdSupport);        printk("     - Program after Erase Suspend: %s\n", extp->SuspendCmdSupport&1?"supported":"unsupported");        for (i=1; i<8; i++) {                if (extp->SuspendCmdSupport & (1<<i))                        printk("     - Unknown Bit %X:               supported\n", i);        }        printk("  Block Status Register Mask: %4.4X\n", extp->BlkStatusRegMask);        printk("     - Lock Bit Active:      %s\n", extp->BlkStatusRegMask&1?"yes":"no");        printk("     - Valid Bit Active:     %s\n", extp->BlkStatusRegMask&2?"yes":"no");        for (i=2; i<16; i++) {                if (extp->BlkStatusRegMask & (1<<i))                        printk("     - Unknown Bit %X Active: yes\n",i);        }        printk("  Vcc Logic Supply Optimum Program/Erase Voltage: %d.%d V\n",               extp->VccOptimal >> 8, extp->VccOptimal & 0xf);        if (extp->VppOptimal)                printk("  Vpp Programming Supply Optimum Program/Erase Voltage: %d.%d V\n",                       extp->VppOptimal >> 8, extp->VppOptimal & 0xf);}#endif/* This routine is made available to other mtd code via * inter_module_register.  It must only be accessed through * inter_module_get which will bump the use count of this module.  The * addresses passed back in cfi are valid as long as the use count of * this module is non-zero, i.e. between inter_module_get and * inter_module_put.  Keith Owens <kaos@ocs.com.au> 29 Oct 2000. */struct mtd_info *cfi_cmdset_0001(struct map_info *map, int primary){        struct cfi_private *cfi = map->fldrv_priv;        int i;        __u32 base = cfi->chips[0].start;        if (cfi->cfi_mode == CFI_MODE_CFI) {                /*                  * It's a real CFI chip, not one for which the probe                 * routine faked a CFI structure. So we read the feature                 * table from it.                 */                __u16 adr = primary?cfi->cfiq->P_ADR:cfi->cfiq->A_ADR;                struct cfi_pri_intelext *extp;                int ofs_factor = cfi->interleave * cfi->device_type;                //printk(" Intel/Sharp Extended Query Table at 0x%4.4X\n", adr);                if (!adr)                        return NULL;                /* Switch it into Query Mode */                cfi_send_gen_cmd(0x98, 0x55, base, map, cfi, cfi->device_type, NULL);                extp = mmalloc(sizeof(*extp));                if (!extp) {                        printk("Failed to allocate memory\n");                        return NULL;                }                         /* Read in the Extended Query Table */                for (i=0; i<sizeof(*extp); i++) {                        ((unsigned char *)extp)[i] =                                 cfi_read_query(map, (base+((adr+i)*ofs_factor)));                }                         if (extp->MajorVersion != '1' ||                      (extp->MinorVersion < '0' || extp->MinorVersion > '2')) {                         printk("  Unknown IntelExt Extended Query "                               "version %c.%c.\n",  extp->MajorVersion,                               extp->MinorVersion);                        mfree(extp);                        return NULL;                }                         /* Do some byteswapping if necessary */                extp->FeatureSupport = extp->FeatureSupport;                extp->BlkStatusRegMask = extp->BlkStatusRegMask;                extp->ProtRegAddr = extp->ProtRegAddr;         #ifdef CONFIG_DEBUG_CFI                /* Tell the user about it in lots of lovely detail */                cfi_tell_features(extp);#endif                /* Install our own private info structure */                cfi->cmdset_priv = extp;        }        for (i=0; i< cfi->numchips; i++) {                cfi->chips[i].word_write_time = 128;                cfi->chips[i].buffer_write_time = 128;                cfi->chips[i].erase_time = 1024;        }        /* Make sure it's in read mode */        cfi_send_gen_cmd(0xff, 0x55, base, map, cfi, cfi->device_type, NULL);        return cfi_intelext_setup(map);}static struct mtd_info *cfi_intelext_setup(struct map_info *map){	struct cfi_private *cfi = map->fldrv_priv;	struct mtd_info *mtd;	unsigned long offset = 0;	int i, j;	unsigned long devsize = (1 << cfi->cfiq->DevSize) * cfi->interleave;	mtd = mmalloc(sizeof(*mtd));	if (!mtd) {		printk("Failed to allocate memory for MTD device\n");		mfree(cfi->cmdset_priv);		return NULL;	}	memset(mtd, 0, sizeof(*mtd));	mtd->priv = map;	mtd->type = MTD_NORFLASH;	mtd->size = devsize * cfi->numchips;		mtd->numeraseregions = cfi->cfiq->NumEraseRegions * cfi->numchips;	mtd->eraseregions = mmalloc(sizeof(struct mtd_erase_region_info) 				    * mtd->numeraseregions);	if (!mtd->eraseregions) { 		printk("Failed to allocate memory for MTD erase region info\n");		mfree(cfi->cmdset_priv);		return NULL;	}	for (i = 0; i < cfi->cfiq->NumEraseRegions; i++) {		unsigned long ernum, ersize;		ersize = ((cfi->cfiq->EraseRegionInfo[i] >> 8) & ~0xff) * cfi->interleave;		ernum = (cfi->cfiq->EraseRegionInfo[i] & 0xffff) + 1;		if (mtd->erasesize < ersize) {			mtd->erasesize = ersize;		}		for (j = 0; j < cfi->numchips; j++) {			mtd->eraseregions[(j*cfi->cfiq->NumEraseRegions)+i].offset = (j*devsize)+offset;			mtd->eraseregions[(j*cfi->cfiq->NumEraseRegions)+i].erasesize = ersize;			mtd->eraseregions[(j*cfi->cfiq->NumEraseRegions)+i].numblocks = ernum;		}		offset += (ersize * ernum);	}	if (offset != devsize) {		/* Argh */		printk("Sum of region (%lx) != total size of set of interleave chips (%lx)\n", offset, devsize);		mfree(mtd->eraseregions);		mfree(cfi->cmdset_priv);		return NULL;	}	for (i = 0; i < mtd->numeraseregions; i++) {		printk("%d: offset = 0x%x, size = 0x%x, blocks = %d\n", 			i, mtd->eraseregions[i].offset,			mtd->eraseregions[i].erasesize,			mtd->eraseregions[i].numblocks);	}	/* Also select the correct geometry setup too */	mtd->erase = cfi_intelext_erase_varsize;#ifndef FORCE_WORD_WRTE	if (cfi->cfiq->BufWriteTimeoutTyp) {		printk("Using buffer write method\n");		mtd->write = cfi_intelext_write_buffers;	} else {#else	}#endif		printk("Using word write method\n");		mtd->write = cfi_intelext_write_words;	}	mtd->lock = cfi_intelext_lock;	mtd->unlock = cfi_intelext_unlock;	mtd->flags = MTD_CAP_NORFLASH;	mtd->name = map->name;	return mtd;}int do_write_oneword(struct map_info *map, struct flchip *chip,                      unsigned long adr, cfi_word datum){	struct cfi_private *cfi = map->fldrv_priv;	cfi_word status = 0, status_OK;	unsigned long timeo;	adr += chip->start;	/* Let's determine this according to the interleave only once */	status_OK = CMD(0x80);	/* 弊成 葷儈 沁瀾 - 2002-06-25 nandy */	timeo = cfi->cfiq->WordWriteTimeoutMax * 1000;	ENABLE_VPP(map);	cfi_write(map, CMD(0x40), adr);	cfi_write(map, datum, adr);	/* wait for it to be programmed */	while (timeo > 0) {		status = cfi_read(map, adr);		if ((status & status_OK) == status_OK)			break;		timeo--;	}	/* done */	DISABLE_VPP(map);	/* clear status */	cfi_write(map, CMD(0x50), adr);	/* report errors */	if (timeo <= 0) {		printk("\nFailed do_write_oneword() operation\n");		printk("  Offset = 0x%08lx, datum = 0x%08lx, status = 0x%08lx\n",			adr, datum, status);		cfi_write(map, CMD(0xff), adr);		return -EIO;	}	cfi_write(map, CMD(0xff), adr);	return 0;}static int cfi_intelext_write_words(struct mtd_info *mtd,  loff_t to, size_t len, size_t *retlen, const u_char *buf){	struct map_info *map = mtd->priv;	struct cfi_private *cfi = map->fldrv_priv;	int ret = 0;	int chipnum;	unsigned long ofs;		*retlen = 0;	if (!len)		return 0;	chipnum = to >> cfi->chipshift;	ofs = to - (chipnum << cfi->chipshift);	/* It it's not bus-aligned, do the first byte write */	if (ofs & (CFIDEV_BUSWIDTH-1)) {		unsigned long bus_ofs = ofs & ~(CFIDEV_BUSWIDTH-1);		int gap = ofs - bus_ofs;		int i = 0, n = 0;		u_char tmp_buf[8];		cfi_word datum;		while (gap--)			tmp_buf[i++] = 0xff;		while (len && i < CFIDEV_BUSWIDTH)			tmp_buf[i++] = buf[n++], len--;		while (i < CFIDEV_BUSWIDTH)			tmp_buf[i++] = 0xff;		if (cfi_buswidth_is_2()) {			datum = *(__u16*)tmp_buf;		} else if (cfi_buswidth_is_4()) {			datum = *(__u32*)tmp_buf;		} else if (cfi_buswidth_is_8()) {			datum = *(__u64*)tmp_buf;		} else {			return -EINVAL;	/* should never happen, but be safe */		}		ret = do_write_oneword(map, &cfi->chips[chipnum], bus_ofs, datum);		if (ret) return ret;		ofs += n;		buf += n;		(*retlen) += n;		if (ofs >> cfi->chipshift) {			chipnum++;			ofs = 0;			if (chipnum == cfi->numchips) 				return 0;		}	}	while (len >= CFIDEV_BUSWIDTH) {		cfi_word datum;		if (cfi_buswidth_is_1()) {			datum = *(__u8*)buf;		} else if (cfi_buswidth_is_2()) {			datum = *(__u16*)buf;		} else if (cfi_buswidth_is_4()) {			datum = *(__u32*)buf;		} else if (cfi_buswidth_is_8()) {			datum = *(__u64*)buf;		} else {			return -EINVAL;		}		ret = do_write_oneword(map, &cfi->chips[chipnum], ofs, datum);		if (ret) return ret;		ofs += CFIDEV_BUSWIDTH;		buf += CFIDEV_BUSWIDTH;		(*retlen) += CFIDEV_BUSWIDTH;		len -= CFIDEV_BUSWIDTH;		if (ofs >> cfi->chipshift) {			chipnum++;			ofs = 0;			if (chipnum == cfi->numchips)				return 0;		}	}	if (len & (CFIDEV_BUSWIDTH-1)) {		int i = 0, n = 0;		u_char tmp_buf[8];		cfi_word datum;		while (len--)			tmp_buf[i++] = buf[n++];		while (i < CFIDEV_BUSWIDTH)			tmp_buf[i++] = 0xff;		if (cfi_buswidth_is_2()) {			datum = *(__u16*)tmp_buf;		} else if (cfi_buswidth_is_4()) {			datum = *(__u32*)tmp_buf;		} else if (cfi_buswidth_is_8()) {			datum = *(__u64*)tmp_buf;		} else {			return -EINVAL;	/* should never happen, but be safe */		}		ret = do_write_oneword(map, &cfi->chips[chipnum], ofs, datum);		if (ret)			return ret;		(*retlen) += n;	}	return 0;}static int do_write_buffer(struct map_info *map, struct flchip *chip,                           unsigned long adr, const u_char *buf, int len){	struct cfi_private *cfi = map->fldrv_priv;	cfi_word status, status_OK;	unsigned long cmd_adr, timeo;	int wbufsize, z;	wbufsize = CFIDEV_INTERLEAVE << cfi->cfiq->MaxBufWriteSize;	adr += chip->start;	cmd_adr = adr & ~(wbufsize - 1);	/* Let's determinc this according to the interleave only once */	status_OK = CMD(0x80);	timeo = cfi->cfiq->BufWriteTimeoutMax * 1000;	ENABLE_VPP(map);	cfi_write(map, CMD(0xe8), cmd_adr);	for (;;) {		status = cfi_read(map, cmd_adr);		if ((status & status_OK) == status_OK)			break;		if (timeo < 0) {			/* Argh. Not ready for write to buffer */			cfi_write(map, CMD(0x70), cmd_adr);			DISABLE_VPP(map);			printk("Chip not ready for buffer write. Xstatus = 0x%llx, status = %llx\n", (__u64)status, (__u64)cfi_read(map, cmd_adr));			/* Odd. Clear status bits */			cfi_write(map, CMD(0x50), cmd_adr);			cfi_write(map, CMD(0x70), cmd_adr);			cfi_write(map, CMD(0xff), adr);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
hitomi一区二区三区精品| 日韩写真欧美这视频| 欧美狂野另类xxxxoooo| 26uuuu精品一区二区| 亚洲国产日韩精品| 99热精品一区二区| 久久九九全国免费| 日本中文字幕一区| 欧美日韩高清影院| 一区二区三区在线观看视频 | 成人avav影音| 26uuu精品一区二区三区四区在线| 亚洲一本大道在线| 色天使久久综合网天天| 国产欧美日韩在线视频| 国模冰冰炮一区二区| 日韩精品一区二区三区三区免费| 午夜一区二区三区视频| 91捆绑美女网站| 一区在线中文字幕| 大美女一区二区三区| 国产调教视频一区| 东方欧美亚洲色图在线| 久久综合色综合88| 国产一区视频网站| 久久日韩精品一区二区五区| 麻豆精品精品国产自在97香蕉| 欧美日韩1区2区| 日本中文字幕一区二区视频| 欧美久久久久久蜜桃| 日本中文字幕一区| 日韩女优av电影| 国产一区二区三区日韩| 亚洲国产精品二十页| 99视频国产精品| 一区二区在线观看av| 欧美综合欧美视频| 日韩精品欧美精品| 欧美xxxxx裸体时装秀| 国产一区在线不卡| 国产精品家庭影院| 91成人免费在线视频| 日韩中文字幕麻豆| 久久久综合激的五月天| 成人免费高清视频在线观看| 亚洲人成小说网站色在线| 在线观看www91| 久久国产精品色婷婷| 日本一区二区三级电影在线观看| 成人av在线资源网站| 亚洲黄色性网站| 在线播放中文一区| 国产成人亚洲综合色影视| 亚洲免费观看高清完整| 欧美性生活一区| 激情综合色播激情啊| 亚洲欧美综合另类在线卡通| 欧美日韩一区二区三区在线看| 日韩高清一级片| 国产精品丝袜一区| 欧美猛男超大videosgay| 国产原创一区二区三区| 一区二区不卡在线播放| 日韩欧美国产系列| 99re这里只有精品首页| 男女男精品视频| 日韩一区在线播放| 欧美一级国产精品| 91麻豆免费在线观看| 麻豆免费精品视频| 亚洲综合清纯丝袜自拍| 久久精品网站免费观看| 欧美性一区二区| 成人午夜激情片| 日本vs亚洲vs韩国一区三区二区| 国产精品久久久久永久免费观看| 91精品国产乱| 色又黄又爽网站www久久| 国产乱码字幕精品高清av | 亚洲精品乱码久久久久久久久| 日韩亚洲欧美在线观看| 99久久久久久99| 国产在线精品不卡| 免费一级片91| 亚洲午夜精品17c| 国产精品久久久久久久第一福利 | eeuss鲁片一区二区三区在线观看| 视频一区国产视频| 亚洲精品免费一二三区| 国产婷婷色一区二区三区四区| 91精品国产欧美一区二区| 色94色欧美sute亚洲13| caoporn国产精品| 国产盗摄一区二区| 狠狠色狠狠色合久久伊人| 亚洲国产综合视频在线观看| 亚洲婷婷综合久久一本伊一区 | 国产一区二区按摩在线观看| 亚洲第一成年网| 亚洲自拍偷拍麻豆| 亚洲精品视频在线| 亚洲人成网站在线| 自拍偷拍亚洲综合| 国产精品久久久久7777按摩| 国产视频一区不卡| 国产清纯美女被跳蛋高潮一区二区久久w| 欧美一级片在线看| 欧美精品久久久久久久多人混战| 精品视频色一区| 欧美日韩三级一区二区| 欧美视频精品在线| 欧美日韩亚洲综合在线| 欧美综合久久久| 欧美日韩一本到| 欧美一级高清片| 日韩欧美不卡在线观看视频| 欧美大片免费久久精品三p| 欧美一级日韩不卡播放免费| 日韩精品一区二区三区在线| 欧美成人高清电影在线| 久久亚洲综合色| 国产精品入口麻豆九色| 亚洲精品va在线观看| 亚洲伊人伊色伊影伊综合网| 图片区日韩欧美亚洲| 免费日本视频一区| 国产一区在线视频| www.视频一区| 91福利小视频| 欧美一级免费观看| 国产喂奶挤奶一区二区三区| 国产精品二区一区二区aⅴ污介绍| 亚洲精品欧美激情| 日韩成人免费电影| 国产成人精品影视| 91久久精品日日躁夜夜躁欧美| 欧美日韩国产在线播放网站| 欧美tickling网站挠脚心| 国产欧美日韩中文久久| 亚洲乱码国产乱码精品精的特点| 亚洲午夜一二三区视频| 国内精品写真在线观看| 91偷拍与自偷拍精品| 欧美一区二区三区日韩视频| 国产日韩欧美一区二区三区乱码| 亚洲三级小视频| 久久精品国产**网站演员| 成人午夜看片网址| 7777精品伊人久久久大香线蕉完整版| 亚洲精品一区二区三区99| 亚洲精品国产一区二区精华液| 日韩1区2区3区| 9人人澡人人爽人人精品| 欧美嫩在线观看| 综合久久一区二区三区| 久久精品国产一区二区三区免费看| jizz一区二区| 精品久久久久久久久久久久久久久| 国产精品福利电影一区二区三区四区| 日韩精品五月天| 91浏览器入口在线观看| 久久久激情视频| 奇米精品一区二区三区四区| 色综合天天狠狠| 国产清纯在线一区二区www| 日韩不卡手机在线v区| 99久久婷婷国产| 久久久久久久久蜜桃| 午夜精品久久久久久久久久久| 风间由美中文字幕在线看视频国产欧美| 欧美日韩久久一区二区| 亚洲色图视频网| 成人免费看黄yyy456| 久久久99精品免费观看| 免费人成黄页网站在线一区二区| 91成人网在线| 亚洲女女做受ⅹxx高潮| 成人午夜免费av| 久久蜜臀中文字幕| 国产在线一区二区| 日韩欧美一区二区三区在线| 午夜久久福利影院| 欧美系列日韩一区| 亚洲精品你懂的| 色综合天天综合在线视频| 中文字幕亚洲一区二区av在线 | 91精品福利在线一区二区三区 | 午夜激情久久久| 在线免费av一区| 一区二区免费视频| 欧美午夜影院一区| 亚洲综合一区二区三区| 91国偷自产一区二区三区成为亚洲经典 | 成人午夜av电影| 国产精品人人做人人爽人人添| 国产一区二区三区av电影| 2021久久国产精品不只是精品| 久久激情综合网| 国产亚洲视频系列| av欧美精品.com|