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

📄 tqm8xxl.c

📁 linux下的MTD设备驱动源代码,配合jffs2 yaffss2文件系统.
💻 C
字号:
/* * Handle mapping of the flash memory access routines * on TQM8xxL based devices. * * $Id: tqm8xxl.c,v 1.4 2002/06/20 13:41:20 mag Exp $ * * based on rpxlite.c * * Copyright(C) 2001 Kirk Lee <kirk@hpc.ee.ntu.edu.tw> * * This code is GPLed * *//* * According to TQM8xxL hardware manual, TQM8xxL series have * following flash memory organisations: *	| capacity |	| chip type |	| bank0 |	| bank1 | *	    2MiB	   512Kx16	  2MiB		   0 *	    4MiB	   1Mx16	  4MiB		   0 *	    8MiB	   1Mx16	  4MiB		   4MiB * Thus, we choose CONFIG_MTD_CFI_I2 & CONFIG_MTD_CFI_B4 at * kernel configuration. */#include <linux/config.h>#include <linux/module.h>#include <linux/types.h>#include <linux/kernel.h>#include <linux/init.h>#include <linux/slab.h>#include <asm/io.h>#include <linux/mtd/mtd.h>#include <linux/mtd/map.h>#ifdef CONFIG_MTD_PARTITIONS#include <linux/mtd/partitions.h>#endif/* #define  TQM_DEBUG	1 */#ifdef  TQM_DEBUG# define debugk(fmt,args...)	printk(fmt ,##args)#else# define debugk(fmt,args...)#endif#define FLASH_BANK_MAX 1/* trivial struct to describe partition information */struct mtd_part_def{	int nums;	unsigned char *type;	struct mtd_partition* mtd_part;};static struct mtd_info* mtd_banks[FLASH_BANK_MAX];static struct map_info* map_banks[FLASH_BANK_MAX];static struct mtd_part_def part_banks[FLASH_BANK_MAX];static unsigned long num_banks;static unsigned long start_scan_addr;/* * Here are partition information for all known TQM8xxL series devices. * See include/linux/mtd/partitions.h for definition of the mtd_partition * structure. * * The *_max_flash_size is the maximum possible mapped flash size which * is not necessarily the actual flash size.  It must correspond to the * value specified in the mapping definition defined by the * "struct map_desc *_io_desc" for the corresponding machine. */#ifdef CONFIG_MTD_PARTITIONSstatic struct mtd_partition tqm8xxl_partitions[] = {    /*     * partition definition for first flash bank     * also ref. to "drivers/char/flash_config.c"     */    {	name:	"u-boot",			/* U-Boot Firmware */	offset:	0x00000000,	size:	0x00040000,			/* 256 KB *//*	mask_flags: MTD_WRITEABLE,		/ * force read-only */    },    {	name:	"kernel",			/* default kernel image */	offset:	0x00040000,	size:	0x000C0000,/*	mask_flags: MTD_WRITEABLE,		/ * force read-only */    },    {	name:	"user",	offset:	0x00100000,	size:	0x00100000,    },    {	name:	"initrd",	offset:	0x00200000,	size:	0x00200000,    },    /*     * partition definition for second flash bank     * Note: the MTD code handles this a ONE (1) logical bank     */    {	name:	"cramfs",	offset:	0x00400000,	size:	0x00200000,    },    {	name:	"jffs",	offset:	0x00600000,	size:	0x00200000,/*	size:	MTDPART_SIZ_FULL, */    },    /* overlapping second flash bank with one big filesystem */    {	name:	"big_fs",	offset:	0x00400000,	size:	0x00400000,    },};#endif	/* CONFIG_MTD_PARTITIONS */#define NB_OF(x)  (sizeof(x)/sizeof(x[0]))int __init init_tqm_mtd(void){	int idx = 0, ret = 0;	unsigned long flash_addr, flash_size, mtd_size = 0;	/* pointer to TQM8xxL board info data */	bd_t *bd = (bd_t *)__res;#ifdef CONFIG_MTD_CMDLINE_PARTS	int n;	char mtdid[4];	const char *part_probes[] = { "cmdlinepart", NULL };#endif	flash_addr = bd->bi_flashstart;	flash_size = bd->bi_flashsize;	/* request maximum flash size address space */	start_scan_addr = (unsigned long)ioremap(flash_addr, flash_size);	if (!start_scan_addr) {		printk("%s: Failed to ioremap address: 0x%lx\n",			__FUNCTION__, flash_addr);		return -EIO;	}	for(idx = 0 ; idx < FLASH_BANK_MAX ; idx++) {		if (mtd_size >= flash_size)			break;		debugk ("%s: chip probing count %d\n", __FUNCTION__, idx);		map_banks[idx] = (struct map_info *)kmalloc(sizeof(struct map_info),							GFP_KERNEL);		if (map_banks[idx] == NULL) {			ret = -ENOMEM;			goto error_mem;		}		memset((void *)map_banks[idx], 0, sizeof(struct map_info));		map_banks[idx]->name = (char *)kmalloc(16, GFP_KERNEL);		if (map_banks[idx]->name == NULL) {			ret = -ENOMEM;			goto error_mem;		}		memset((void *)map_banks[idx]->name, 0, 16);		sprintf(map_banks[idx]->name, "TQM8xxL%d", idx);		map_banks[idx]->size	   = flash_size;		map_banks[idx]->buswidth   = 4;		simple_map_init(map_banks[idx]);		map_banks[idx]->virt =			start_scan_addr + ((idx > 0) ?			(mtd_banks[idx-1] ? mtd_banks[idx-1]->size : 0) : 0);		map_banks[idx]->phys =			flash_addr + ((idx > 0) ?			(mtd_banks[idx-1] ? mtd_banks[idx-1]->size : 0) : 0);		/* start to probe flash chips */		mtd_banks[idx] = do_map_probe("cfi_probe", map_banks[idx]);		if (mtd_banks[idx]) {			mtd_banks[idx]->owner = THIS_MODULE;			mtd_size += mtd_banks[idx]->size;			num_banks++;			debugk ("%s: bank %d, name: %s, size: %d bytes\n",				__FUNCTION__,				num_banks,				mtd_banks[idx]->name,				mtd_banks[idx]->size);		}	}	/* no supported flash chips found */	if (!num_banks) {		printk("TQM8xxL: No supported flash chips found!\n");		ret = -ENXIO;		goto error_mem;	}#ifdef CONFIG_MTD_PARTITIONS	/*	 * Select static partition definitions	 */	part_banks[0].mtd_part	= tqm8xxl_partitions;	part_banks[0].type	= "static image";	part_banks[0].nums	= NB_OF(tqm8xxl_partitions);	for(idx = 0; idx < num_banks ; idx++) {#ifdef CONFIG_MTD_CMDLINE_PARTS		sprintf(mtdid, "%d", idx);		n = parse_mtd_partitions(mtd_banks[idx],					 part_probes,					 &part_banks[idx].mtd_part,					 0);		debugk ("%s: %d command line partitions on bank %s\n",			__FUNCTION__, n, mtdid);		if (n > 0) {			part_banks[idx].type = "command line";			part_banks[idx].nums = n;		}#endif	/* CONFIG_MTD_CMDLINE_PARTS */		if (part_banks[idx].nums == 0) {		    printk (KERN_NOTICE			"TQM flash bank %d: no partition info available, "			"registering whole device\n",			idx);		    add_mtd_device(mtd_banks[idx]);		} else {		    printk (KERN_NOTICE			"TQM flash bank %d: Using %s partition definition\n",			idx,			part_banks[idx].type);		    add_mtd_partitions (mtd_banks[idx],					part_banks[idx].mtd_part,					part_banks[idx].nums);		}	}#else	/* ! CONFIG_MTD_PARTITIONS */	printk (KERN_NOTICE "TQM flash: registering %d flash banks at once\n",		num_banks);	for(idx = 0 ; idx < num_banks ; idx++) {		add_mtd_device(mtd_banks[idx]);	}#endif	/* CONFIG_MTD_PARTITIONS */	return 0;error_mem:	for (idx = 0 ; idx < FLASH_BANK_MAX ; idx++) {		if (map_banks[idx] != NULL) {			if (map_banks[idx]->name != NULL) {				kfree(map_banks[idx]->name);				map_banks[idx]->name = NULL;			}			kfree(map_banks[idx]);			map_banks[idx] = NULL;		}	}	iounmap((void *)start_scan_addr);	return ret;}static void __exit cleanup_tqm_mtd(void){	unsigned int idx = 0;	for(idx = 0 ; idx < num_banks ; idx++) {		/* destroy mtd_info previously allocated */		if (mtd_banks[idx]) {			del_mtd_partitions(mtd_banks[idx]);			map_destroy(mtd_banks[idx]);		}		/* release map_info not used anymore */		kfree(map_banks[idx]->name);		kfree(map_banks[idx]);	}	if (start_scan_addr) {		iounmap((void *)start_scan_addr);		start_scan_addr = 0;	}}module_init(init_tqm_mtd);module_exit(cleanup_tqm_mtd);MODULE_LICENSE("GPL");MODULE_AUTHOR("Kirk Lee <kirk@hpc.ee.ntu.edu.tw>");MODULE_DESCRIPTION("MTD map driver for TQM8xxL boards");

⌨️ 快捷键说明

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