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

📄 flash.h

📁 omap3 linux 2.6 用nocc去除了冗余代码
💻 H
字号:
/* *  linux/include/asm-arm/mach/flash.h * *  Copyright (C) 2003 Russell King, All Rights Reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */#define ASMARM_MACH_FLASH_Hstruct mtd_partition;struct mtd_info;/* * map_name:	the map probe function name * name:	flash device name (eg, as used with mtdparts=) * width:	width of mapped device * init:	method called at driver/device initialisation * exit:	method called at driver/device removal * set_vpp:	method called to enable or disable VPP * mmcontrol:	method called to enable or disable Sync. Burst Read in OneNAND * parts:	optional array of mtd_partitions for static partitioning * nr_parts:	number of mtd_partitions for static partitoning */struct flash_platform_data {	const char	*map_name;	const char	*name;	unsigned int	width;	int		(*init)(void);	void		(*exit)(void);	void		(*set_vpp)(int on);	void		(*mmcontrol)(struct mtd_info *mtd, int sync_read);	struct mtd_partition *parts;	unsigned int	nr_parts;};/** * struct nand_platform_data - platform data describing NAND flash banks * @dev_ready:	tests if the NAND flash is ready (READY signal is high) * @options:	bitmask for nand_chip.options * @parts:	optional array of mtd_partitions for static partitioning * @nr_parts:	number of mtd_partitions for static partitoning */struct nand_platform_data {	int		(*dev_ready)(struct nand_platform_data *data);	unsigned int	options;	struct mtd_partition *parts;	unsigned int	nr_parts;};

⌨️ 快捷键说明

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