blob: 5ebcca590a2795b8db187889d2dfb9f61e90a0bc [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass4c2dbef2014-10-13 23:42:06 -06002/*
3 * Copyright (c) 2014 Google, Inc
Simon Glass4c2dbef2014-10-13 23:42:06 -06004 */
5
6#include <common.h>
7#include <dm.h>
Simon Glass336d4612020-02-03 07:36:16 -07008#include <malloc.h>
Simon Glass4c2dbef2014-10-13 23:42:06 -06009#include <spi.h>
10#include <spi_flash.h>
11#include <dm/device-internal.h>
12#include "sf_internal.h"
13
Michal Simek2588f2d2015-10-27 13:52:47 +010014DECLARE_GLOBAL_DATA_PTR;
15
Simon Glass8d987ab2015-03-26 09:29:25 -060016int spi_flash_read_dm(struct udevice *dev, u32 offset, size_t len, void *buf)
17{
Simon Glass5e24a2e2018-10-01 12:22:24 -060018 return log_ret(sf_get_ops(dev)->read(dev, offset, len, buf));
Simon Glass8d987ab2015-03-26 09:29:25 -060019}
20
21int spi_flash_write_dm(struct udevice *dev, u32 offset, size_t len,
22 const void *buf)
23{
Simon Glass5e24a2e2018-10-01 12:22:24 -060024 return log_ret(sf_get_ops(dev)->write(dev, offset, len, buf));
Simon Glass8d987ab2015-03-26 09:29:25 -060025}
26
27int spi_flash_erase_dm(struct udevice *dev, u32 offset, size_t len)
28{
Simon Glass5e24a2e2018-10-01 12:22:24 -060029 return log_ret(sf_get_ops(dev)->erase(dev, offset, len));
Simon Glass8d987ab2015-03-26 09:29:25 -060030}
31
Simon Glassa58986c2018-11-06 15:21:41 -070032int spl_flash_get_sw_write_prot(struct udevice *dev)
33{
34 struct dm_spi_flash_ops *ops = sf_get_ops(dev);
35
36 if (!ops->get_sw_write_prot)
37 return -ENOSYS;
38 return log_ret(ops->get_sw_write_prot(dev));
39}
40
Simon Glass4c2dbef2014-10-13 23:42:06 -060041/*
42 * TODO(sjg@chromium.org): This is an old-style function. We should remove
43 * it when all SPI flash drivers use dm
44 */
45struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
46 unsigned int max_hz, unsigned int spi_mode)
47{
48 struct udevice *dev;
49
50 if (spi_flash_probe_bus_cs(bus, cs, max_hz, spi_mode, &dev))
51 return NULL;
52
Simon Glasse564f052015-03-05 12:25:20 -070053 return dev_get_uclass_priv(dev);
Simon Glass4c2dbef2014-10-13 23:42:06 -060054}
55
56void spi_flash_free(struct spi_flash *flash)
57{
Stefan Roese706865a2017-03-20 12:51:48 +010058 device_remove(flash->spi->dev, DM_REMOVE_NORMAL);
Simon Glass4c2dbef2014-10-13 23:42:06 -060059}
60
61int spi_flash_probe_bus_cs(unsigned int busnum, unsigned int cs,
62 unsigned int max_hz, unsigned int spi_mode,
63 struct udevice **devp)
64{
65 struct spi_slave *slave;
66 struct udevice *bus;
Simon Glass3c8fb122015-12-29 05:22:47 -070067 char *str;
Simon Glass4c2dbef2014-10-13 23:42:06 -060068 int ret;
69
Simon Glass27084c02019-09-25 08:56:27 -060070#if defined(CONFIG_SPL_BUILD) && CONFIG_IS_ENABLED(USE_TINY_PRINTF)
Simon Glass3c8fb122015-12-29 05:22:47 -070071 str = "spi_flash";
72#else
73 char name[30];
74
Haikun.Wang@freescale.coma5e1bcd2015-05-06 10:37:43 +080075 snprintf(name, sizeof(name), "spi_flash@%d:%d", busnum, cs);
Simon Glass4c2dbef2014-10-13 23:42:06 -060076 str = strdup(name);
Simon Glass3c8fb122015-12-29 05:22:47 -070077#endif
Simon Glass4c2dbef2014-10-13 23:42:06 -060078 ret = spi_get_bus_and_cs(busnum, cs, max_hz, spi_mode,
79 "spi_flash_std", str, &bus, &slave);
80 if (ret)
81 return ret;
82
83 *devp = slave->dev;
84 return 0;
85}
86
Michal Simek2588f2d2015-10-27 13:52:47 +010087static int spi_flash_post_bind(struct udevice *dev)
88{
89#if defined(CONFIG_NEEDS_MANUAL_RELOC)
90 struct dm_spi_flash_ops *ops = sf_get_ops(dev);
91 static int reloc_done;
92
93 if (!reloc_done) {
94 if (ops->read)
95 ops->read += gd->reloc_off;
96 if (ops->write)
97 ops->write += gd->reloc_off;
98 if (ops->erase)
99 ops->erase += gd->reloc_off;
100
101 reloc_done++;
102 }
103#endif
104 return 0;
105}
106
Simon Glass4c2dbef2014-10-13 23:42:06 -0600107UCLASS_DRIVER(spi_flash) = {
108 .id = UCLASS_SPI_FLASH,
109 .name = "spi_flash",
Michal Simek2588f2d2015-10-27 13:52:47 +0100110 .post_bind = spi_flash_post_bind,
Simon Glass4c2dbef2014-10-13 23:42:06 -0600111 .per_device_auto_alloc_size = sizeof(struct spi_flash),
112};