diff options
| author | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2013-09-24 16:03:45 +0530 | 
|---|---|---|
| committer | Jagannadha Sutradharudu Teki <jaganna@xilinx.com> | 2013-10-07 17:55:46 +0530 | 
| commit | af1679bc30b11b90f9f6650d211b3fe350f4044f (patch) | |
| tree | 4eb45c96c0033170478422648ae42eb40ac41d96 /drivers/mtd/spi/ramtron.c | |
| parent | 7ab35d922d80e151f9fe6a785a736b0d8612c589 (diff) | |
| download | olio-uboot-2014.01-af1679bc30b11b90f9f6650d211b3fe350f4044f.tar.xz olio-uboot-2014.01-af1679bc30b11b90f9f6650d211b3fe350f4044f.zip | |
sf: ramtron: Add support for separate flash driver
Compared to other spi flashes, ramtron has a different
probing and implementation on flash ops, hence moved
ramtron probe code into ramtron driver.
Signed-off-by: Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
Diffstat (limited to 'drivers/mtd/spi/ramtron.c')
| -rw-r--r-- | drivers/mtd/spi/ramtron.c | 123 | 
1 files changed, 121 insertions, 2 deletions
| diff --git a/drivers/mtd/spi/ramtron.c b/drivers/mtd/spi/ramtron.c index 38f9d6916..c9701d05b 100644 --- a/drivers/mtd/spi/ramtron.c +++ b/drivers/mtd/spi/ramtron.c @@ -214,7 +214,8 @@ static int ramtron_erase(struct spi_flash *flash, u32 offset, size_t len)   * nore: we are called here with idcode pointing to the first non-0x7f byte   * already!   */ -struct spi_flash *spi_fram_probe_ramtron(struct spi_slave *spi, u8 *idcode) +static struct spi_flash *spi_fram_probe_ramtron(struct spi_slave *spi, +		u8 *idcode)  {  	const struct ramtron_spi_fram_params *params;  	struct ramtron_spi_fram *sn; @@ -270,7 +271,7 @@ struct spi_flash *spi_fram_probe_ramtron(struct spi_slave *spi, u8 *idcode)  	return NULL;  found: -	sn = spi_flash_alloc(struct ramtron_spi_fram, spi, params->name); +	sn = malloc(sizeof(*sn));  	if (!sn) {  		debug("SF: Failed to allocate memory\n");  		return NULL; @@ -285,3 +286,121 @@ found:  	return &sn->flash;  } + +/* + * The following table holds all device probe functions + * (All flashes are removed and implemented a common probe at + *  spi_flash_probe.c) + * + * shift:  number of continuation bytes before the ID + * idcode: the expected IDCODE or 0xff for non JEDEC devices + * probe:  the function to call + * + * Non JEDEC devices should be ordered in the table such that + * the probe functions with best detection algorithms come first. + * + * Several matching entries are permitted, they will be tried + * in sequence until a probe function returns non NULL. + * + * IDCODE_CONT_LEN may be redefined if a device needs to declare a + * larger "shift" value.  IDCODE_PART_LEN generally shouldn't be + * changed.  This is the max number of bytes probe functions may + * examine when looking up part-specific identification info. + * + * Probe functions will be given the idcode buffer starting at their + * manu id byte (the "idcode" in the table below).  In other words, + * all of the continuation bytes will be skipped (the "shift" below). + */ +#define IDCODE_CONT_LEN 0 +#define IDCODE_PART_LEN 5 +static const struct { +	const u8 shift; +	const u8 idcode; +	struct spi_flash *(*probe) (struct spi_slave *spi, u8 *idcode); +} flashes[] = { +	/* Keep it sorted by define name */ +#ifdef CONFIG_SPI_FRAM_RAMTRON +	{ 6, 0xc2, spi_fram_probe_ramtron, }, +# undef IDCODE_CONT_LEN +# define IDCODE_CONT_LEN 6 +#endif +#ifdef CONFIG_SPI_FRAM_RAMTRON_NON_JEDEC +	{ 0, 0xff, spi_fram_probe_ramtron, }, +#endif +}; +#define IDCODE_LEN (IDCODE_CONT_LEN + IDCODE_PART_LEN) + +struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs, +		unsigned int max_hz, unsigned int spi_mode) +{ +	struct spi_slave *spi; +	struct spi_flash *flash = NULL; +	int ret, i, shift; +	u8 idcode[IDCODE_LEN], *idp; + +	spi = spi_setup_slave(bus, cs, max_hz, spi_mode); +	if (!spi) { +		printf("SF: Failed to set up slave\n"); +		return NULL; +	} + +	ret = spi_claim_bus(spi); +	if (ret) { +		debug("SF: Failed to claim SPI bus: %d\n", ret); +		goto err_claim_bus; +	} + +	/* Read the ID codes */ +	ret = spi_flash_cmd(spi, CMD_READ_ID, idcode, sizeof(idcode)); +	if (ret) +		goto err_read_id; + +#ifdef DEBUG +	printf("SF: Got idcodes\n"); +	print_buffer(0, idcode, 1, sizeof(idcode), 0); +#endif + +	/* count the number of continuation bytes */ +	for (shift = 0, idp = idcode; +	     shift < IDCODE_CONT_LEN && *idp == 0x7f; +	     ++shift, ++idp) +		continue; + +	/* search the table for matches in shift and id */ +	for (i = 0; i < ARRAY_SIZE(flashes); ++i) +		if (flashes[i].shift == shift && flashes[i].idcode == *idp) { +			/* we have a match, call probe */ +			flash = flashes[i].probe(spi, idp); +			if (flash) +				break; +		} + +	if (!flash) { +		printf("SF: Unsupported manufacturer %02x\n", *idp); +		goto err_manufacturer_probe; +	} + +	printf("SF: Detected %s with page size ", flash->name); +	print_size(flash->sector_size, ", total "); +	print_size(flash->size, ""); +	if (flash->memory_map) +		printf(", mapped at %p", flash->memory_map); +	puts("\n"); + +	spi_release_bus(spi); + +	return flash; + +err_manufacturer_probe: +err_read_id: +	spi_release_bus(spi); +err_claim_bus: +	spi_free_slave(spi); +	return NULL; +} + +void spi_flash_free(struct spi_flash *flash) +{ +	spi_free_slave(flash->spi); +	free(flash); +} |