lkml.org 
[lkml]   [2009]   [Jun]   [24]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRE: [spi-devel-general] [PATCH] SST25L (non JEDEC) SPI Flash driver
Date
From
On Sunday, June 21, 2009 8:59 PM, Ryan Mallon wrote:
>
> Add support for the non JEDEC SST25L SPI Flash devices.
>
> Signed-off-by: Andre Renaud <andre@bluewatersys.com>
> Signed-off-by: Ryan Mallon <ryan@bluewatersys.com>

> +struct flash_info {
> + const char *name;
> + u16 device_id;
> + unsigned page_size;
> + unsigned nr_pages;
> + unsigned erase_size;
> +};
> +
> +#define to_sst25l_flash(x) container_of(x, struct sst25l_flash, mtd)
> +
> +static struct flash_info __devinitdata sst25l_flash_info[] = {
> + {"sst25lf020a", 0xbf43, 256, 1024, 32 * 1024},
> + {"sst25lf040a", 0xbf44, 256, 2048, 32 * 1024},
> +};
> +

Ryan,

I finally got a chance to test this on my hardware. Previously
I was using a hacked version on the m25p80 driver to access the
SST23LF020A on my board.

The driver works fine but you are only supporting the block erase,
SST25L_CMD_BLOCK_ERASE (opcode 0x52). The SST25L chips also can do a
sector erase (opcode 0x20) and a full chip erase (opcode 0x60).

The full chip erase is not that important but might give a slight
performance increase on larger devices. Max block erase time is
listed as 25ms at 25MHz in the datasheet. The SST25LF020A contains
8 blocks so it's "typical" full chip erase time should be around
200ms. For comparison, the chip erase time is listed as 100ms.

The sector erase is a bigger deal. On the EDB93xx boards one of the
SPI flash uses is used to store the MAC address at offset 0x2000 (4K
offset). The board can also be configured to boot from offset 0x0000
in the SPI flash. This basically gives the user a three partition
setup:

static struct mtd_partition edb93xx_spi_flash_partitions[] = {
{
.name = "SPI bootstrap",
.offset = 0,
.size = SZ_4K,
}, {
.name = "Bootstrap config",
.offset = MTDPART_OFS_APPEND,
.size = SZ_4K,
}, {
.name = "unallocated",
.offset = MTDPART_OFS_APPEND,
.size = MTDPART_SIZ_FULL,
},
};

Without the sector erase this partition setup results in all of the
partitions being forced read-only.

Just my two cents...

Regards,
Hartley


\
 
 \ /
  Last update: 2009-06-25 03:43    [W:0.150 / U:0.036 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site