Files
kernel/include/linux/mtd/physmap.h
T

32 lines
808 B
C
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0-or-later */
2005-04-16 15:20:36 -07:00
/*
* For boards with physically mapped flash and using
2005-04-16 15:20:36 -07:00
* drivers/mtd/maps/physmap.c mapping driver.
*
* Copyright (C) 2003 MontaVista Software Inc.
* Author: Jun Sun, jsun@mvista.com or jsun@junsun.net
*/
#ifndef __LINUX_MTD_PHYSMAP__
#define __LINUX_MTD_PHYSMAP__
2005-04-16 15:20:36 -07:00
#include <linux/mtd/mtd.h>
#include <linux/mtd/partitions.h>
struct map_info;
2011-05-23 11:37:09 -07:00
struct platform_device;
2006-05-07 17:16:36 +01:00
struct physmap_flash_data {
unsigned int width;
int (*init)(struct platform_device *);
void (*exit)(struct platform_device *);
void (*set_vpp)(struct platform_device *, int);
2006-05-07 17:16:36 +01:00
unsigned int nr_parts;
unsigned int pfow_base;
char *probe_type;
2006-05-07 17:16:36 +01:00
struct mtd_partition *parts;
2013-03-12 10:32:52 +02:00
const char * const *part_probe_types;
2006-05-07 17:16:36 +01:00
};
2005-04-16 15:20:36 -07:00
#endif /* __LINUX_MTD_PHYSMAP__ */