cfi_probe.c

来自「omap3 linux 2.6 用nocc去除了冗余代码」· C语言 代码 · 共 266 行

C
266
字号
/*   Common Flash Interface probe code.   (C) 2000 Red Hat. GPL'd.   $Id: cfi_probe.c,v 1.86 2005/11/29 14:48:31 gleixner Exp $*/#include <linux/module.h>#include <linux/types.h>#include <linux/kernel.h>#include <linux/init.h>#include <asm/io.h>#include <asm/byteorder.h>#include <linux/errno.h>#include <linux/slab.h>#include <linux/interrupt.h>#include <linux/mtd/xip.h>#include <linux/mtd/map.h>#include <linux/mtd/cfi.h>#include <linux/mtd/gen_probe.h>//#define DEBUG_CFIstatic int cfi_probe_chip(struct map_info *map, __u32 base,			  unsigned long *chip_map, struct cfi_private *cfi);static int cfi_chip_setup(struct map_info *map, struct cfi_private *cfi);struct mtd_info *cfi_probe(struct map_info *map);#define xip_disable()			do { } while (0)#define xip_allowed(base, map)		do { } while (0)#define xip_enable(base, map, cfi)	do { } while (0)#define xip_disable_qry(base, map, cfi) do { } while (0)/* check for QRY.   in: interleave,type,mode   ret: table index, <0 for error */static int __xipram qry_present(struct map_info *map, __u32 base,				struct cfi_private *cfi){	int osf = cfi->interleave * cfi->device_type;	// scale factor	map_word val[3];	map_word qry[3];	qry[0] = cfi_build_cmd('Q', map, cfi);	qry[1] = cfi_build_cmd('R', map, cfi);	qry[2] = cfi_build_cmd('Y', map, cfi);	val[0] = map_read(map, base + osf*0x10);	val[1] = map_read(map, base + osf*0x11);	val[2] = map_read(map, base + osf*0x12);	if (!map_word_equal(map, qry[0], val[0]))		return 0;	if (!map_word_equal(map, qry[1], val[1]))		return 0;	if (!map_word_equal(map, qry[2], val[2]))		return 0;	return 1; 	// "QRY" found}static int __xipram cfi_probe_chip(struct map_info *map, __u32 base,				   unsigned long *chip_map, struct cfi_private *cfi){	int i;	if ((base + 0) >= map->size) {		printk(KERN_NOTICE			"Probe at base[0x00](0x%08lx) past the end of the map(0x%08lx)\n",			(unsigned long)base, map->size -1);		return 0;	}	if ((base + 0xff) >= map->size) {		printk(KERN_NOTICE			"Probe at base[0x55](0x%08lx) past the end of the map(0x%08lx)\n",			(unsigned long)base + 0x55, map->size -1);		return 0;	}	xip_disable();	cfi_send_gen_cmd(0xF0, 0, base, map, cfi, cfi->device_type, NULL);	cfi_send_gen_cmd(0xFF, 0, base, map, cfi, cfi->device_type, NULL);	cfi_send_gen_cmd(0x98, 0x55, base, map, cfi, cfi->device_type, NULL);	if (!qry_present(map,base,cfi)) {		xip_enable(base, map, cfi);		return 0;	}	if (!cfi->numchips) {		/* This is the first time we're called. Set up the CFI		   stuff accordingly and return */		return cfi_chip_setup(map, cfi);	}	/* Check each previous chip to see if it's an alias */ 	for (i=0; i < (base >> cfi->chipshift); i++) { 		unsigned long start; 		if(!test_bit(i, chip_map)) {			/* Skip location; no valid chip at this address */ 			continue; 		} 		start = i << cfi->chipshift;		/* This chip should be in read mode if it's one		   we've already touched. */		if (qry_present(map, start, cfi)) {			/* Eep. This chip also had the QRY marker.			 * Is it an alias for the new one? */			cfi_send_gen_cmd(0xF0, 0, start, map, cfi, cfi->device_type, NULL);			cfi_send_gen_cmd(0xFF, 0, start, map, cfi, cfi->device_type, NULL);			/* If the QRY marker goes away, it's an alias */			if (!qry_present(map, start, cfi)) {				xip_allowed(base, map);				printk(KERN_DEBUG "%s: Found an alias at 0x%x for the chip at 0x%lx\n",				       map->name, base, start);				return 0;			}			/* Yes, it's actually got QRY for data. Most			 * unfortunate. Stick the new chip in read mode			 * too and if it's the same, assume it's an alias. */			/* FIXME: Use other modes to do a proper check */			cfi_send_gen_cmd(0xF0, 0, base, map, cfi, cfi->device_type, NULL);			cfi_send_gen_cmd(0xFF, 0, start, map, cfi, cfi->device_type, NULL);			if (qry_present(map, base, cfi)) {				xip_allowed(base, map);				printk(KERN_DEBUG "%s: Found an alias at 0x%x for the chip at 0x%lx\n",				       map->name, base, start);				return 0;			}		}	}	/* OK, if we got to here, then none of the previous chips appear to	   be aliases for the current one. */	set_bit((base >> cfi->chipshift), chip_map); /* Update chip map */	cfi->numchips++;	/* Put it back into Read Mode */	cfi_send_gen_cmd(0xF0, 0, base, map, cfi, cfi->device_type, NULL);	cfi_send_gen_cmd(0xFF, 0, base, map, cfi, cfi->device_type, NULL);	xip_allowed(base, map);	printk(KERN_INFO "%s: Found %d x%d devices at 0x%x in %d-bit bank\n",	       map->name, cfi->interleave, cfi->device_type*8, base,	       map->bankwidth*8);	return 1;}static int __xipram cfi_chip_setup(struct map_info *map,				   struct cfi_private *cfi){	int ofs_factor = cfi->interleave*cfi->device_type;	__u32 base = 0;	int num_erase_regions = cfi_read_query(map, base + (0x10 + 28)*ofs_factor);	int i;	xip_enable(base, map, cfi);	if (!num_erase_regions)		return 0;	cfi->cfiq = kmalloc(sizeof(struct cfi_ident) + num_erase_regions * 4, GFP_KERNEL);	if (!cfi->cfiq) {		printk(KERN_WARNING "%s: kmalloc failed for CFI ident structure\n", map->name);		return 0;	}	memset(cfi->cfiq,0,sizeof(struct cfi_ident));	cfi->cfi_mode = CFI_MODE_CFI;	/* Read the CFI info structure */	xip_disable_qry(base, map, cfi);	for (i=0; i<(sizeof(struct cfi_ident) + num_erase_regions * 4); i++)		((unsigned char *)cfi->cfiq)[i] = cfi_read_query(map,base + (0x10 + i)*ofs_factor);	/* Note we put the device back into Read Mode BEFORE going into Auto	 * Select Mode, as some devices support nesting of modes, others	 * don't. This way should always work.	 * On cmdset 0001 the writes of 0xaa and 0x55 are not needed, and	 * so should be treated as nops or illegal (and so put the device	 * back into Read Mode, which is a nop in this case).	 */	cfi_send_gen_cmd(0xf0,     0, base, map, cfi, cfi->device_type, NULL);	cfi_send_gen_cmd(0xaa, 0x555, base, map, cfi, cfi->device_type, NULL);	cfi_send_gen_cmd(0x55, 0x2aa, base, map, cfi, cfi->device_type, NULL);	cfi_send_gen_cmd(0x90, 0x555, base, map, cfi, cfi->device_type, NULL);	cfi->mfr = cfi_read_query16(map, base);	cfi->id = cfi_read_query16(map, base + ofs_factor);	/* Put it back into Read Mode */	cfi_send_gen_cmd(0xF0, 0, base, map, cfi, cfi->device_type, NULL);	/* ... even if it's an Intel chip */	cfi_send_gen_cmd(0xFF, 0, base, map, cfi, cfi->device_type, NULL);	xip_allowed(base, map);	/* Do any necessary byteswapping */	cfi->cfiq->P_ID = le16_to_cpu(cfi->cfiq->P_ID);	cfi->cfiq->P_ADR = le16_to_cpu(cfi->cfiq->P_ADR);	cfi->cfiq->A_ID = le16_to_cpu(cfi->cfiq->A_ID);	cfi->cfiq->A_ADR = le16_to_cpu(cfi->cfiq->A_ADR);	cfi->cfiq->InterfaceDesc = le16_to_cpu(cfi->cfiq->InterfaceDesc);	cfi->cfiq->MaxBufWriteSize = le16_to_cpu(cfi->cfiq->MaxBufWriteSize);	for (i=0; i<cfi->cfiq->NumEraseRegions; i++) {		cfi->cfiq->EraseRegionInfo[i] = le32_to_cpu(cfi->cfiq->EraseRegionInfo[i]);	}	printk(KERN_INFO "%s: Found %d x%d devices at 0x%x in %d-bit bank\n",	       map->name, cfi->interleave, cfi->device_type*8, base,	       map->bankwidth*8);	return 1;}static struct chip_probe cfi_chip_probe = {	.name		= "CFI",	.probe_chip	= cfi_probe_chip};struct mtd_info *cfi_probe(struct map_info *map){	/*	 * Just use the generic probe stuff to call our CFI-specific	 * chip_probe routine in all the possible permutations, etc.	 */	return mtd_do_chip_probe(map, &cfi_chip_probe);}static struct mtd_chip_driver cfi_chipdrv = {	.probe		= cfi_probe,	.name		= "cfi_probe",	.module		= THIS_MODULE};static int __init cfi_probe_init(void){	register_mtd_chip_driver(&cfi_chipdrv);	return 0;}static void __exit cfi_probe_exit(void){	unregister_mtd_chip_driver(&cfi_chipdrv);}module_init(cfi_probe_init);module_exit(cfi_probe_exit);MODULE_LICENSE("GPL");MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org> et al.");MODULE_DESCRIPTION("Probe code for CFI-compliant flash chips");

⌨️ 快捷键说明

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