2018-05-06 17:58:06 -04:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-10-13 23:42:06 -06:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2014 Google, Inc
|
|
|
|
*/
|
|
|
|
|
2021-04-27 11:02:19 +02:00
|
|
|
#define LOG_CATEGORY UCLASS_SPI_FLASH
|
|
|
|
|
2014-10-13 23:42:06 -06:00
|
|
|
#include <common.h>
|
|
|
|
#include <dm.h>
|
2020-05-10 11:40:05 -06:00
|
|
|
#include <log.h>
|
2020-02-03 07:36:16 -07:00
|
|
|
#include <malloc.h>
|
2014-10-13 23:42:06 -06:00
|
|
|
#include <spi.h>
|
|
|
|
#include <spi_flash.h>
|
2020-10-30 21:38:53 -06:00
|
|
|
#include <asm/global_data.h>
|
2014-10-13 23:42:06 -06:00
|
|
|
#include <dm/device-internal.h>
|
|
|
|
#include "sf_internal.h"
|
|
|
|
|
2015-10-27 13:52:47 +01:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2015-03-26 09:29:25 -06:00
|
|
|
int spi_flash_read_dm(struct udevice *dev, u32 offset, size_t len, void *buf)
|
|
|
|
{
|
2018-10-01 12:22:24 -06:00
|
|
|
return log_ret(sf_get_ops(dev)->read(dev, offset, len, buf));
|
2015-03-26 09:29:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
int spi_flash_write_dm(struct udevice *dev, u32 offset, size_t len,
|
|
|
|
const void *buf)
|
|
|
|
{
|
2018-10-01 12:22:24 -06:00
|
|
|
return log_ret(sf_get_ops(dev)->write(dev, offset, len, buf));
|
2015-03-26 09:29:25 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
int spi_flash_erase_dm(struct udevice *dev, u32 offset, size_t len)
|
|
|
|
{
|
2018-10-01 12:22:24 -06:00
|
|
|
return log_ret(sf_get_ops(dev)->erase(dev, offset, len));
|
2015-03-26 09:29:25 -06:00
|
|
|
}
|
|
|
|
|
2021-03-15 18:11:17 +13:00
|
|
|
int spl_flash_get_sw_write_prot(struct udevice *dev)
|
|
|
|
{
|
|
|
|
struct dm_spi_flash_ops *ops = sf_get_ops(dev);
|
|
|
|
|
|
|
|
if (!ops->get_sw_write_prot)
|
|
|
|
return -ENOSYS;
|
|
|
|
return log_ret(ops->get_sw_write_prot(dev));
|
|
|
|
}
|
|
|
|
|
2014-10-13 23:42:06 -06:00
|
|
|
/*
|
|
|
|
* TODO(sjg@chromium.org): This is an old-style function. We should remove
|
|
|
|
* it when all SPI flash drivers use dm
|
|
|
|
*/
|
2022-03-30 09:33:14 +02:00
|
|
|
struct spi_flash *spi_flash_probe(unsigned int busnum, unsigned int cs,
|
2014-10-13 23:42:06 -06:00
|
|
|
unsigned int max_hz, unsigned int spi_mode)
|
|
|
|
{
|
|
|
|
struct spi_slave *slave;
|
|
|
|
struct udevice *bus;
|
2015-12-29 05:22:47 -07:00
|
|
|
char *str;
|
2014-10-13 23:42:06 -06:00
|
|
|
|
2019-09-25 08:56:27 -06:00
|
|
|
#if defined(CONFIG_SPL_BUILD) && CONFIG_IS_ENABLED(USE_TINY_PRINTF)
|
2015-12-29 05:22:47 -07:00
|
|
|
str = "spi_flash";
|
|
|
|
#else
|
|
|
|
char name[30];
|
|
|
|
|
2015-05-06 10:37:43 +08:00
|
|
|
snprintf(name, sizeof(name), "spi_flash@%d:%d", busnum, cs);
|
2014-10-13 23:42:06 -06:00
|
|
|
str = strdup(name);
|
2015-12-29 05:22:47 -07:00
|
|
|
#endif
|
2022-03-30 09:33:14 +02:00
|
|
|
|
|
|
|
if (_spi_get_bus_and_cs(busnum, cs, max_hz, spi_mode,
|
|
|
|
"jedec_spi_nor", str, &bus, &slave))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return dev_get_uclass_priv(slave->dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
int spi_flash_probe_bus_cs(unsigned int busnum, unsigned int cs,
|
|
|
|
struct udevice **devp)
|
|
|
|
{
|
|
|
|
struct spi_slave *slave;
|
|
|
|
struct udevice *bus;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = spi_get_bus_and_cs(busnum, cs, &bus, &slave);
|
2014-10-13 23:42:06 -06:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
*devp = slave->dev;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-10-27 13:52:47 +01:00
|
|
|
static int spi_flash_post_bind(struct udevice *dev)
|
|
|
|
{
|
|
|
|
#if defined(CONFIG_NEEDS_MANUAL_RELOC)
|
|
|
|
struct dm_spi_flash_ops *ops = sf_get_ops(dev);
|
|
|
|
static int reloc_done;
|
|
|
|
|
|
|
|
if (!reloc_done) {
|
|
|
|
if (ops->read)
|
|
|
|
ops->read += gd->reloc_off;
|
|
|
|
if (ops->write)
|
|
|
|
ops->write += gd->reloc_off;
|
|
|
|
if (ops->erase)
|
|
|
|
ops->erase += gd->reloc_off;
|
|
|
|
|
|
|
|
reloc_done++;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-10-13 23:42:06 -06:00
|
|
|
UCLASS_DRIVER(spi_flash) = {
|
|
|
|
.id = UCLASS_SPI_FLASH,
|
|
|
|
.name = "spi_flash",
|
2015-10-27 13:52:47 +01:00
|
|
|
.post_bind = spi_flash_post_bind,
|
2020-12-19 10:40:01 -07:00
|
|
|
.per_device_auto = sizeof(struct spi_nor),
|
2014-10-13 23:42:06 -06:00
|
|
|
};
|