blob: cfce00ef548e753463a0baa442592833a136231d [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 Glassf7ae49f2020-05-10 11:40:05 -06008#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -07009#include <malloc.h>
Simon Glass4c2dbef2014-10-13 23:42:06 -060010#include <spi.h>
11#include <spi_flash.h>
Simon Glass401d1c42020-10-30 21:38:53 -060012#include <asm/global_data.h>
Simon Glass4c2dbef2014-10-13 23:42:06 -060013#include <dm/device-internal.h>
14#include "sf_internal.h"
15
Michal Simek2588f2d2015-10-27 13:52:47 +010016DECLARE_GLOBAL_DATA_PTR;
17
Simon Glass8d987ab2015-03-26 09:29:25 -060018int spi_flash_read_dm(struct udevice *dev, u32 offset, size_t len, void *buf)
19{
Simon Glass5e24a2e2018-10-01 12:22:24 -060020 return log_ret(sf_get_ops(dev)->read(dev, offset, len, buf));
Simon Glass8d987ab2015-03-26 09:29:25 -060021}
22
23int spi_flash_write_dm(struct udevice *dev, u32 offset, size_t len,
24 const void *buf)
25{
Simon Glass5e24a2e2018-10-01 12:22:24 -060026 return log_ret(sf_get_ops(dev)->write(dev, offset, len, buf));
Simon Glass8d987ab2015-03-26 09:29:25 -060027}
28
29int spi_flash_erase_dm(struct udevice *dev, u32 offset, size_t len)
30{
Simon Glass5e24a2e2018-10-01 12:22:24 -060031 return log_ret(sf_get_ops(dev)->erase(dev, offset, len));
Simon Glass8d987ab2015-03-26 09:29:25 -060032}
33
Simon Glassb3b60f52021-03-15 18:11:17 +130034int spl_flash_get_sw_write_prot(struct udevice *dev)
35{
36 struct dm_spi_flash_ops *ops = sf_get_ops(dev);
37
38 if (!ops->get_sw_write_prot)
39 return -ENOSYS;
40 return log_ret(ops->get_sw_write_prot(dev));
41}
42
Simon Glass4c2dbef2014-10-13 23:42:06 -060043/*
44 * TODO(sjg@chromium.org): This is an old-style function. We should remove
45 * it when all SPI flash drivers use dm
46 */
47struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
48 unsigned int max_hz, unsigned int spi_mode)
49{
50 struct udevice *dev;
51
52 if (spi_flash_probe_bus_cs(bus, cs, max_hz, spi_mode, &dev))
53 return NULL;
54
Simon Glasse564f052015-03-05 12:25:20 -070055 return dev_get_uclass_priv(dev);
Simon Glass4c2dbef2014-10-13 23:42:06 -060056}
57
Simon Glass4c2dbef2014-10-13 23:42:06 -060058int spi_flash_probe_bus_cs(unsigned int busnum, unsigned int cs,
59 unsigned int max_hz, unsigned int spi_mode,
60 struct udevice **devp)
61{
62 struct spi_slave *slave;
63 struct udevice *bus;
Simon Glass3c8fb122015-12-29 05:22:47 -070064 char *str;
Simon Glass4c2dbef2014-10-13 23:42:06 -060065 int ret;
66
Simon Glass27084c02019-09-25 08:56:27 -060067#if defined(CONFIG_SPL_BUILD) && CONFIG_IS_ENABLED(USE_TINY_PRINTF)
Simon Glass3c8fb122015-12-29 05:22:47 -070068 str = "spi_flash";
69#else
70 char name[30];
71
Haikun.Wang@freescale.coma5e1bcd2015-05-06 10:37:43 +080072 snprintf(name, sizeof(name), "spi_flash@%d:%d", busnum, cs);
Simon Glass4c2dbef2014-10-13 23:42:06 -060073 str = strdup(name);
Simon Glass3c8fb122015-12-29 05:22:47 -070074#endif
Simon Glass4c2dbef2014-10-13 23:42:06 -060075 ret = spi_get_bus_and_cs(busnum, cs, max_hz, spi_mode,
Walter Lozanoe3e24702020-06-25 01:10:04 -030076 "jedec_spi_nor", str, &bus, &slave);
Simon Glass4c2dbef2014-10-13 23:42:06 -060077 if (ret)
78 return ret;
79
80 *devp = slave->dev;
81 return 0;
82}
83
Michal Simek2588f2d2015-10-27 13:52:47 +010084static int spi_flash_post_bind(struct udevice *dev)
85{
86#if defined(CONFIG_NEEDS_MANUAL_RELOC)
87 struct dm_spi_flash_ops *ops = sf_get_ops(dev);
88 static int reloc_done;
89
90 if (!reloc_done) {
91 if (ops->read)
92 ops->read += gd->reloc_off;
93 if (ops->write)
94 ops->write += gd->reloc_off;
95 if (ops->erase)
96 ops->erase += gd->reloc_off;
97
98 reloc_done++;
99 }
100#endif
101 return 0;
102}
103
Simon Glass4c2dbef2014-10-13 23:42:06 -0600104UCLASS_DRIVER(spi_flash) = {
105 .id = UCLASS_SPI_FLASH,
106 .name = "spi_flash",
Michal Simek2588f2d2015-10-27 13:52:47 +0100107 .post_bind = spi_flash_post_bind,
Simon Glassa1a8a632020-12-19 10:40:01 -0700108 .per_device_auto = sizeof(struct spi_nor),
Simon Glass4c2dbef2014-10-13 23:42:06 -0600109};