2009-10-09 21:12:23 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2008, Network Appliance Inc.
|
|
|
|
* Author: Jason McMullan <mcmullan <at> netapp.com>
|
|
|
|
* Licensed under the GPL-2 or later.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <spi_flash.h>
|
|
|
|
|
|
|
|
#include "spi_flash_internal.h"
|
|
|
|
|
|
|
|
struct winbond_spi_flash_params {
|
|
|
|
uint16_t id;
|
2010-12-07 06:07:45 +00:00
|
|
|
uint16_t nr_blocks;
|
2009-10-09 21:12:23 +00:00
|
|
|
const char *name;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct winbond_spi_flash_params winbond_spi_flash_table[] = {
|
2011-07-15 06:12:51 +00:00
|
|
|
{
|
|
|
|
.id = 0x3013,
|
|
|
|
.nr_blocks = 8,
|
|
|
|
.name = "W25X40",
|
|
|
|
},
|
2009-10-09 21:12:23 +00:00
|
|
|
{
|
2010-12-07 06:07:45 +00:00
|
|
|
.id = 0x3015,
|
2009-10-09 21:12:23 +00:00
|
|
|
.nr_blocks = 32,
|
|
|
|
.name = "W25X16",
|
|
|
|
},
|
|
|
|
{
|
2010-12-07 06:07:45 +00:00
|
|
|
.id = 0x3016,
|
2009-10-09 21:12:23 +00:00
|
|
|
.nr_blocks = 64,
|
|
|
|
.name = "W25X32",
|
|
|
|
},
|
|
|
|
{
|
2010-12-07 06:07:45 +00:00
|
|
|
.id = 0x3017,
|
2009-10-09 21:12:23 +00:00
|
|
|
.nr_blocks = 128,
|
|
|
|
.name = "W25X64",
|
|
|
|
},
|
2012-05-24 11:38:34 +00:00
|
|
|
{
|
|
|
|
.id = 0x4014,
|
|
|
|
.nr_blocks = 16,
|
|
|
|
.name = "W25Q80BL",
|
|
|
|
},
|
2010-07-29 13:00:02 +00:00
|
|
|
{
|
2010-12-07 06:07:45 +00:00
|
|
|
.id = 0x4015,
|
|
|
|
.nr_blocks = 32,
|
|
|
|
.name = "W25Q16",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.id = 0x4016,
|
|
|
|
.nr_blocks = 64,
|
|
|
|
.name = "W25Q32",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.id = 0x4017,
|
2010-07-29 13:00:02 +00:00
|
|
|
.nr_blocks = 128,
|
|
|
|
.name = "W25Q64",
|
|
|
|
},
|
2010-12-07 06:07:45 +00:00
|
|
|
{
|
|
|
|
.id = 0x4018,
|
|
|
|
.nr_blocks = 256,
|
|
|
|
.name = "W25Q128",
|
|
|
|
},
|
2012-08-02 07:25:05 +00:00
|
|
|
{
|
|
|
|
.id = 0x5014,
|
|
|
|
.nr_blocks = 128,
|
|
|
|
.name = "W25Q80",
|
|
|
|
},
|
2013-01-23 12:29:29 +00:00
|
|
|
{
|
|
|
|
.id = 0x6017,
|
|
|
|
.nr_blocks = 128,
|
|
|
|
.name = "W25Q64DW",
|
|
|
|
},
|
2009-10-09 21:12:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct spi_flash *spi_flash_probe_winbond(struct spi_slave *spi, u8 *idcode)
|
|
|
|
{
|
|
|
|
const struct winbond_spi_flash_params *params;
|
2011-06-28 07:38:10 +00:00
|
|
|
struct spi_flash *flash;
|
2009-10-09 21:12:23 +00:00
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_SIZE(winbond_spi_flash_table); i++) {
|
|
|
|
params = &winbond_spi_flash_table[i];
|
|
|
|
if (params->id == ((idcode[1] << 8) | idcode[2]))
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == ARRAY_SIZE(winbond_spi_flash_table)) {
|
|
|
|
debug("SF: Unsupported Winbond ID %02x%02x\n",
|
|
|
|
idcode[1], idcode[2]);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-06-28 07:38:10 +00:00
|
|
|
flash = malloc(sizeof(*flash));
|
|
|
|
if (!flash) {
|
2009-10-09 21:12:23 +00:00
|
|
|
debug("SF: Failed to allocate memory\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-06-28 07:38:10 +00:00
|
|
|
flash->spi = spi;
|
|
|
|
flash->name = params->name;
|
2009-10-09 21:12:23 +00:00
|
|
|
|
2011-06-28 07:38:10 +00:00
|
|
|
flash->write = spi_flash_cmd_write_multi;
|
2012-03-05 03:35:50 +00:00
|
|
|
flash->erase = spi_flash_cmd_erase;
|
2011-06-28 07:38:10 +00:00
|
|
|
flash->read = spi_flash_cmd_read_fast;
|
2012-08-13 22:46:21 +00:00
|
|
|
flash->page_size = 256;
|
2012-03-05 03:56:52 +00:00
|
|
|
flash->sector_size = 4096;
|
|
|
|
flash->size = 4096 * 16 * params->nr_blocks;
|
2009-10-09 21:12:23 +00:00
|
|
|
|
2011-06-28 07:38:10 +00:00
|
|
|
return flash;
|
2009-10-09 21:12:23 +00:00
|
|
|
}
|