flash.h
来自「omap3 linux 2.6 用nocc去除了冗余代码」· C头文件 代码 · 共 52 行
H
52 行
/* * 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 + =
减小字号Ctrl + -
显示快捷键?