blob: 2ce6558bf3f8757db8ec852ee4bb8d7b81e1ad82 [file] [log] [blame]
David Brownell1d6432f2006-01-08 13:34:22 -08001#ifndef LINUX_SPI_FLASH_H
2#define LINUX_SPI_FLASH_H
3
4struct mtd_partition;
5
6/**
7 * struct flash_platform_data: board-specific flash data
8 * @name: optional flash device name (eg, as used with mtdparts=)
9 * @parts: optional array of mtd_partitions for static partitioning
10 * @nr_parts: number of mtd_partitions for static partitoning
11 *
12 * Board init code (in arch/.../mach-xxx/board-yyy.c files) can
13 * provide information about SPI flash parts (such as DataFlash) to
14 * help set up the device and its appropriate default partitioning.
15 *
16 * Note that for DataFlash, sizes for pages, blocks, and sectors are
17 * rarely powers of two; and partitions should be sector-aligned.
18 */
19struct flash_platform_data {
20 char *name;
21 struct mtd_partition *parts;
22 unsigned int nr_parts;
23
24 /* we'll likely add more ... use JEDEC IDs, etc */
25};
26
27#endif