2012-05-10 20:27:32 +02:00
|
|
|
/*
|
|
|
|
* Interface to SPI flash
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Atmel Corporation
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2013-02-20 13:21:20 +01:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-05-10 20:27:32 +02:00
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
#ifndef _SPI_FLASH_H_
|
|
|
|
#define _SPI_FLASH_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
2016-12-06 05:32:24 +01:00
|
|
|
#include <spi-generic.h>
|
2015-01-08 19:29:19 +01:00
|
|
|
#include <boot/coreboot_tables.h>
|
2012-05-10 20:27:32 +02:00
|
|
|
|
2016-11-22 20:43:58 +01:00
|
|
|
/* SPI Flash opcodes */
|
|
|
|
#define SPI_OPCODE_WREN 0x06
|
|
|
|
#define SPI_OPCODE_FAST_READ 0x0b
|
|
|
|
|
2012-05-10 20:27:32 +02:00
|
|
|
struct spi_flash {
|
2016-12-06 05:32:24 +01:00
|
|
|
struct spi_slave spi;
|
2016-11-21 06:04:00 +01:00
|
|
|
const char *name;
|
|
|
|
u32 size;
|
|
|
|
u32 sector_size;
|
2017-05-12 09:19:56 +02:00
|
|
|
u32 page_size;
|
2016-11-21 06:04:00 +01:00
|
|
|
u8 erase_cmd;
|
|
|
|
u8 status_cmd;
|
|
|
|
/*
|
|
|
|
* Internal functions are expected to be called ONLY by spi flash
|
|
|
|
* driver. External components should only use the public API calls
|
|
|
|
* spi_flash_{read,write,erase,status,volatile_group_begin,
|
|
|
|
* volatile_group_end}.
|
|
|
|
*/
|
|
|
|
int (*internal_read)(const struct spi_flash *flash, u32 offset,
|
2012-05-10 20:27:32 +02:00
|
|
|
size_t len, void *buf);
|
2016-11-21 06:04:00 +01:00
|
|
|
int (*internal_write)(const struct spi_flash *flash, u32 offset,
|
2012-05-10 20:27:32 +02:00
|
|
|
size_t len, const void *buf);
|
2016-11-21 06:04:00 +01:00
|
|
|
int (*internal_erase)(const struct spi_flash *flash, u32 offset,
|
2012-05-10 20:27:32 +02:00
|
|
|
size_t len);
|
2016-11-21 06:04:00 +01:00
|
|
|
int (*internal_status)(const struct spi_flash *flash, u8 *reg);
|
2012-05-10 20:27:32 +02:00
|
|
|
};
|
|
|
|
|
2016-11-21 06:04:00 +01:00
|
|
|
void lb_spi_flash(struct lb_header *header);
|
|
|
|
|
|
|
|
/* SPI Flash Driver Public API */
|
2017-05-15 23:35:15 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Probe for SPI flash chip on given SPI bus and chip select and fill info in
|
|
|
|
* spi_flash structure.
|
|
|
|
*
|
|
|
|
* Params:
|
|
|
|
* bus = SPI Bus # for the flash chip
|
|
|
|
* cs = Chip select # for the flash chip
|
|
|
|
* flash = Pointer to spi flash structure that needs to be filled
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* 0 = success
|
|
|
|
* non-zero = error
|
|
|
|
*/
|
|
|
|
int spi_flash_probe(unsigned int bus, unsigned int cs, struct spi_flash *flash);
|
2016-11-18 05:38:07 +01:00
|
|
|
/*
|
|
|
|
* Specialized probing performed by platform. This is a weak function which can
|
|
|
|
* be overriden by platform driver.
|
2017-05-15 23:35:15 +02:00
|
|
|
*
|
|
|
|
* Params:
|
2016-11-18 05:38:07 +01:00
|
|
|
* spi = Pointer to spi_slave structure.
|
|
|
|
* force = Indicates if the platform driver can skip specialized probing.
|
2017-05-15 23:35:15 +02:00
|
|
|
* flash = Pointer to spi_flash structure that needs to be filled.
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* 0 = success
|
|
|
|
* non-zero = error
|
2016-11-18 05:38:07 +01:00
|
|
|
*/
|
2017-05-16 08:28:41 +02:00
|
|
|
int spi_flash_programmer_probe(const struct spi_slave *spi, int force,
|
2017-05-15 23:35:15 +02:00
|
|
|
struct spi_flash *flash);
|
2012-05-10 20:27:32 +02:00
|
|
|
|
2016-11-21 06:04:00 +01:00
|
|
|
/* All the following functions return 0 on success and non-zero on error. */
|
|
|
|
int spi_flash_read(const struct spi_flash *flash, u32 offset, size_t len,
|
|
|
|
void *buf);
|
|
|
|
int spi_flash_write(const struct spi_flash *flash, u32 offset, size_t len,
|
|
|
|
const void *buf);
|
|
|
|
int spi_flash_erase(const struct spi_flash *flash, u32 offset, size_t len);
|
|
|
|
int spi_flash_status(const struct spi_flash *flash, u8 *reg);
|
|
|
|
/*
|
|
|
|
* Some SPI controllers require exclusive access to SPI flash when volatile
|
|
|
|
* operations like erase or write are being performed. In such cases,
|
|
|
|
* volatile_group_begin will gain exclusive access to SPI flash if not already
|
|
|
|
* acquired and volatile_group_end will end exclusive access if this was the
|
|
|
|
* last request in the group. spi_flash_{write,erase} operations call
|
|
|
|
* volatile_group_begin at the start of function and volatile_group_end after
|
|
|
|
* erase/write operation is performed. These functions can also be used by any
|
|
|
|
* components that wish to club multiple volatile operations into a single
|
|
|
|
* group.
|
|
|
|
*/
|
|
|
|
int spi_flash_volatile_group_begin(const struct spi_flash *flash);
|
|
|
|
int spi_flash_volatile_group_end(const struct spi_flash *flash);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* These are callbacks for marking the start and end of volatile group as
|
|
|
|
* handled by the chipset. Not every chipset requires this special handling. So,
|
|
|
|
* these functions are expected to be implemented in Kconfig option for volatile
|
|
|
|
* group is enabled (SPI_FLASH_HAS_VOLATILE_GROUP).
|
|
|
|
*/
|
|
|
|
int chipset_volatile_group_begin(const struct spi_flash *flash);
|
|
|
|
int chipset_volatile_group_end(const struct spi_flash *flash);
|
2015-01-08 19:29:19 +01:00
|
|
|
|
2016-12-04 00:04:06 +01:00
|
|
|
/* Return spi_flash object reference for the boot device. This is only valid
|
|
|
|
* if CONFIG_BOOT_DEVICE_SPI_FLASH is enabled. */
|
|
|
|
const struct spi_flash *boot_device_spi_flash(void);
|
|
|
|
|
2012-05-10 20:27:32 +02:00
|
|
|
#endif /* _SPI_FLASH_H_ */
|