blob: 2da0cf0dcf9f4274118d8c4ed3eac1751126b902 [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
Patrick Delaunayb953ec22021-04-27 11:02:19 +02006#define LOG_CATEGORY UCLASS_SPI_FLASH
7
Simon Glass4c2dbef2014-10-13 23:42:06 -06008#include <common.h>
Simon Glass0c1f4a92023-01-17 10:48:03 -07009#include <bootdev.h>
Simon Glass4c2dbef2014-10-13 23:42:06 -060010#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070012#include <malloc.h>
Simon Glass4c2dbef2014-10-13 23:42:06 -060013#include <spi.h>
14#include <spi_flash.h>
Simon Glass401d1c42020-10-30 21:38:53 -060015#include <asm/global_data.h>
Simon Glass4c2dbef2014-10-13 23:42:06 -060016#include <dm/device-internal.h>
Simon Glass0c1f4a92023-01-17 10:48:03 -070017#include <test/test.h>
Simon Glass4c2dbef2014-10-13 23:42:06 -060018#include "sf_internal.h"
19
Michal Simek2588f2d2015-10-27 13:52:47 +010020DECLARE_GLOBAL_DATA_PTR;
21
Simon Glass8d987ab2015-03-26 09:29:25 -060022int spi_flash_read_dm(struct udevice *dev, u32 offset, size_t len, void *buf)
23{
Simon Glass5e24a2e2018-10-01 12:22:24 -060024 return log_ret(sf_get_ops(dev)->read(dev, offset, len, buf));
Simon Glass8d987ab2015-03-26 09:29:25 -060025}
26
27int spi_flash_write_dm(struct udevice *dev, u32 offset, size_t len,
28 const void *buf)
29{
Simon Glass5e24a2e2018-10-01 12:22:24 -060030 return log_ret(sf_get_ops(dev)->write(dev, offset, len, buf));
Simon Glass8d987ab2015-03-26 09:29:25 -060031}
32
33int spi_flash_erase_dm(struct udevice *dev, u32 offset, size_t len)
34{
Simon Glass5e24a2e2018-10-01 12:22:24 -060035 return log_ret(sf_get_ops(dev)->erase(dev, offset, len));
Simon Glass8d987ab2015-03-26 09:29:25 -060036}
37
Simon Glassb3b60f52021-03-15 18:11:17 +130038int spl_flash_get_sw_write_prot(struct udevice *dev)
39{
40 struct dm_spi_flash_ops *ops = sf_get_ops(dev);
41
42 if (!ops->get_sw_write_prot)
43 return -ENOSYS;
44 return log_ret(ops->get_sw_write_prot(dev));
45}
46
Simon Glass4c2dbef2014-10-13 23:42:06 -060047/*
48 * TODO(sjg@chromium.org): This is an old-style function. We should remove
49 * it when all SPI flash drivers use dm
50 */
Patrice Chotard3feea0b2022-03-30 09:33:14 +020051struct spi_flash *spi_flash_probe(unsigned int busnum, unsigned int cs,
Simon Glass4c2dbef2014-10-13 23:42:06 -060052 unsigned int max_hz, unsigned int spi_mode)
53{
Simon Glass4c2dbef2014-10-13 23:42:06 -060054 struct spi_slave *slave;
55 struct udevice *bus;
Simon Glass3c8fb122015-12-29 05:22:47 -070056 char *str;
Simon Glass4c2dbef2014-10-13 23:42:06 -060057
Simon Glass27084c02019-09-25 08:56:27 -060058#if defined(CONFIG_SPL_BUILD) && CONFIG_IS_ENABLED(USE_TINY_PRINTF)
Simon Glass3c8fb122015-12-29 05:22:47 -070059 str = "spi_flash";
60#else
61 char name[30];
62
Haikun.Wang@freescale.coma5e1bcd2015-05-06 10:37:43 +080063 snprintf(name, sizeof(name), "spi_flash@%d:%d", busnum, cs);
Simon Glass4c2dbef2014-10-13 23:42:06 -060064 str = strdup(name);
Simon Glass3c8fb122015-12-29 05:22:47 -070065#endif
Patrice Chotard3feea0b2022-03-30 09:33:14 +020066
67 if (_spi_get_bus_and_cs(busnum, cs, max_hz, spi_mode,
68 "jedec_spi_nor", str, &bus, &slave))
69 return NULL;
70
71 return dev_get_uclass_priv(slave->dev);
72}
73
74int spi_flash_probe_bus_cs(unsigned int busnum, unsigned int cs,
75 struct udevice **devp)
76{
77 struct spi_slave *slave;
78 struct udevice *bus;
79 int ret;
80
81 ret = spi_get_bus_and_cs(busnum, cs, &bus, &slave);
Simon Glass4c2dbef2014-10-13 23:42:06 -060082 if (ret)
83 return ret;
84
85 *devp = slave->dev;
86 return 0;
87}
88
Michal Simek2588f2d2015-10-27 13:52:47 +010089static int spi_flash_post_bind(struct udevice *dev)
90{
Simon Glass0c1f4a92023-01-17 10:48:03 -070091 int ret;
92
93 if (CONFIG_IS_ENABLED(BOOTDEV_SPI_FLASH) && test_sf_bootdev_enabled()) {
94 ret = bootdev_setup_for_dev(dev, "sf_bootdev");
95 if (ret)
96 return log_msg_ret("bd", ret);
97 }
98
Michal Simek2588f2d2015-10-27 13:52:47 +010099 return 0;
100}
101
Simon Glass4c2dbef2014-10-13 23:42:06 -0600102UCLASS_DRIVER(spi_flash) = {
103 .id = UCLASS_SPI_FLASH,
104 .name = "spi_flash",
Michal Simek2588f2d2015-10-27 13:52:47 +0100105 .post_bind = spi_flash_post_bind,
Simon Glassa1a8a632020-12-19 10:40:01 -0700106 .per_device_auto = sizeof(struct spi_nor),
Simon Glass4c2dbef2014-10-13 23:42:06 -0600107};