add parallel flash driver

SVN-Revision: 16353
This commit is contained in:
Gabor Juhos
2009-06-06 08:41:47 +00:00
parent 7077028d45
commit ba08043ce4
9 changed files with 361 additions and 5 deletions

View File

@@ -68,7 +68,7 @@ static struct mtd_partition ap83_flash_partitions[] = {
};
#endif /* CONFIG_MTD_PARTITIONS */
static struct physmap_flash_data ap83_flash_data = {
static struct ar91xx_flash_platform_data ap83_flash_data = {
.width = 2,
#ifdef CONFIG_MTD_PARTITIONS
.parts = ap83_flash_partitions,
@@ -85,7 +85,7 @@ static struct resource ap83_flash_resources[] = {
};
static struct platform_device ap83_flash_device = {
.name = "physmap-flash",
.name = "ar91xx-flash",
.id = -1,
.resource = ap83_flash_resources,
.num_resources = ARRAY_SIZE(ap83_flash_resources),

View File

@@ -16,6 +16,8 @@
#include <linux/skbuff.h>
#include <linux/phy.h>
#include <linux/spi/spi.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/partitions.h>
struct ag71xx_platform_data {
phy_interface_t phy_if_mode;
@@ -51,4 +53,12 @@ struct ar71xx_spi_platform_data {
#define AR71XX_SPI_CS_INACTIVE 0
#define AR71XX_SPI_CS_ACTIVE 1
struct ar91xx_flash_platform_data {
unsigned int width;
#ifdef CONFIG_MTD_PARTITIONS
unsigned int nr_parts;
struct mtd_partition *parts;
#endif
};
#endif /* __ASM_MACH_AR71XX_PLATFORM_H */