blob: 3d747c925b9e60c40875f9eb59645fe6a4f273c7 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +02002/*
Jagannadha Sutradharudu Tekia5e81992013-10-02 19:38:49 +05303 * Common SPI flash Interface
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +02004 *
5 * Copyright (C) 2008 Atmel Corporation
Jagannadha Sutradharudu Tekia5e81992013-10-02 19:38:49 +05306 * Copyright (C) 2013 Jagannadha Sutradharudu Teki, Xilinx Inc.
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +02007 */
Jagannadha Sutradharudu Tekia5e81992013-10-02 19:38:49 +05308
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +02009#ifndef _SPI_FLASH_H_
10#define _SPI_FLASH_H_
11
Mike Frysingere06ab652009-11-03 11:36:39 -050012#include <linux/types.h>
Vignesh Rc4e88622019-02-05 11:29:23 +053013#include <linux/mtd/spi-nor.h>
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +020014
Simon Glassa00867b2020-07-19 10:15:40 -060015struct udevice;
16
Patrick Delaunayabe66b12019-02-27 15:20:38 +010017/* by default ENV use the same parameters than SF command */
18#ifndef CONFIG_ENV_SPI_BUS
19# define CONFIG_ENV_SPI_BUS CONFIG_SF_DEFAULT_BUS
20#endif
21#ifndef CONFIG_ENV_SPI_CS
22# define CONFIG_ENV_SPI_CS CONFIG_SF_DEFAULT_CS
23#endif
24#ifndef CONFIG_ENV_SPI_MAX_HZ
25# define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
26#endif
27#ifndef CONFIG_ENV_SPI_MODE
28# define CONFIG_ENV_SPI_MODE CONFIG_SF_DEFAULT_MODE
29#endif
30
Simon Glassff0960f2014-10-13 23:42:04 -060031struct spi_slave;
Jagannadha Sutradharudu Teki33adfb52013-12-23 23:34:42 +053032
Simon Glass4c2dbef2014-10-13 23:42:06 -060033struct dm_spi_flash_ops {
34 int (*read)(struct udevice *dev, u32 offset, size_t len, void *buf);
35 int (*write)(struct udevice *dev, u32 offset, size_t len,
36 const void *buf);
37 int (*erase)(struct udevice *dev, u32 offset, size_t len);
Simon Glassb3b60f52021-03-15 18:11:17 +130038 /**
39 * get_sw_write_prot() - Check state of software write-protect feature
40 *
41 * SPI flash chips can lock a region of the flash defined by a
42 * 'protected area'. This function checks if this protected area is
43 * defined.
44 *
45 * @dev: SPI flash device
46 * @return 0 if no region is write-protected, 1 if a region is
47 * write-protected, -ENOSYS if the driver does not implement this,
48 * other -ve value on error
49 */
50 int (*get_sw_write_prot)(struct udevice *dev);
Simon Glass4c2dbef2014-10-13 23:42:06 -060051};
52
53/* Access the serial operations for a device */
54#define sf_get_ops(dev) ((struct dm_spi_flash_ops *)(dev)->driver->ops)
55
Lukasz Majewski56c40462020-06-04 23:11:53 +080056#if CONFIG_IS_ENABLED(DM_SPI_FLASH)
Simon Glass8d987ab2015-03-26 09:29:25 -060057/**
58 * spi_flash_read_dm() - Read data from SPI flash
59 *
60 * @dev: SPI flash device
61 * @offset: Offset into device in bytes to read from
62 * @len: Number of bytes to read
63 * @buf: Buffer to put the data that is read
64 * @return 0 if OK, -ve on error
65 */
66int spi_flash_read_dm(struct udevice *dev, u32 offset, size_t len, void *buf);
67
68/**
69 * spi_flash_write_dm() - Write data to SPI flash
70 *
71 * @dev: SPI flash device
72 * @offset: Offset into device in bytes to write to
73 * @len: Number of bytes to write
74 * @buf: Buffer containing bytes to write
75 * @return 0 if OK, -ve on error
76 */
77int spi_flash_write_dm(struct udevice *dev, u32 offset, size_t len,
78 const void *buf);
79
80/**
81 * spi_flash_erase_dm() - Erase blocks of the SPI flash
82 *
83 * Note that @len must be a muiltiple of the flash sector size.
84 *
85 * @dev: SPI flash device
86 * @offset: Offset into device in bytes to start erasing
87 * @len: Number of bytes to erase
88 * @return 0 if OK, -ve on error
89 */
90int spi_flash_erase_dm(struct udevice *dev, u32 offset, size_t len);
91
Simon Glassa58986c2018-11-06 15:21:41 -070092/**
Simon Glassb3b60f52021-03-15 18:11:17 +130093 * spl_flash_get_sw_write_prot() - Check state of software write-protect feature
94 *
95 * SPI flash chips can lock a region of the flash defined by a
96 * 'protected area'. This function checks if this protected area is
97 * defined.
98 *
99 * @dev: SPI flash device
100 * @return 0 if no region is write-protected, 1 if a region is
101 * write-protected, -ENOSYS if the driver does not implement this,
102 * other -ve value on error
103 */
104int spl_flash_get_sw_write_prot(struct udevice *dev);
105
106/**
Simon Glass4806fce2019-12-06 21:42:50 -0700107 * spi_flash_std_probe() - Probe a SPI flash device
108 *
109 * This is the standard internal method for probing a SPI flash device to
110 * determine its type. It can be used in chip-specific drivers which need to
111 * do this, typically with of-platdata
112 *
113 * @dev: SPI-flash device to probe
114 * @return 0 if OK, -ve on error
115 */
116int spi_flash_std_probe(struct udevice *dev);
117
Simon Glass4c2dbef2014-10-13 23:42:06 -0600118int spi_flash_probe_bus_cs(unsigned int busnum, unsigned int cs,
119 unsigned int max_hz, unsigned int spi_mode,
120 struct udevice **devp);
121
122/* Compatibility function - this is the old U-Boot API */
123struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
124 unsigned int max_hz, unsigned int spi_mode);
125
126/* Compatibility function - this is the old U-Boot API */
Heinrich Schuchardtb09c74f2021-03-10 18:23:57 +0100127static inline void spi_flash_free(struct spi_flash *flash)
128{
129}
Simon Glass4c2dbef2014-10-13 23:42:06 -0600130
Simon Glass4c2dbef2014-10-13 23:42:06 -0600131static inline int spi_flash_read(struct spi_flash *flash, u32 offset,
Simon Glass8d987ab2015-03-26 09:29:25 -0600132 size_t len, void *buf)
Simon Glass4c2dbef2014-10-13 23:42:06 -0600133{
Simon Glass8d987ab2015-03-26 09:29:25 -0600134 return spi_flash_read_dm(flash->dev, offset, len, buf);
Simon Glass4c2dbef2014-10-13 23:42:06 -0600135}
136
137static inline int spi_flash_write(struct spi_flash *flash, u32 offset,
Simon Glass8d987ab2015-03-26 09:29:25 -0600138 size_t len, const void *buf)
Simon Glass4c2dbef2014-10-13 23:42:06 -0600139{
Simon Glass8d987ab2015-03-26 09:29:25 -0600140 return spi_flash_write_dm(flash->dev, offset, len, buf);
Simon Glass4c2dbef2014-10-13 23:42:06 -0600141}
142
143static inline int spi_flash_erase(struct spi_flash *flash, u32 offset,
Simon Glass8d987ab2015-03-26 09:29:25 -0600144 size_t len)
Simon Glass4c2dbef2014-10-13 23:42:06 -0600145{
Simon Glass8d987ab2015-03-26 09:29:25 -0600146 return spi_flash_erase_dm(flash->dev, offset, len);
Simon Glass4c2dbef2014-10-13 23:42:06 -0600147}
148
149struct sandbox_state;
150
151int sandbox_sf_bind_emul(struct sandbox_state *state, int busnum, int cs,
Simon Glass008dcdd2018-06-11 13:07:16 -0600152 struct udevice *bus, ofnode node, const char *spec);
Simon Glass4c2dbef2014-10-13 23:42:06 -0600153
154void sandbox_sf_unbind_emul(struct sandbox_state *state, int busnum, int cs);
155
156#else
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200157struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
158 unsigned int max_hz, unsigned int spi_mode);
Simon Glass0efc0242013-12-03 16:43:24 -0700159
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200160void spi_flash_free(struct spi_flash *flash);
161
162static inline int spi_flash_read(struct spi_flash *flash, u32 offset,
163 size_t len, void *buf)
164{
Vignesh Rc4e88622019-02-05 11:29:23 +0530165 struct mtd_info *mtd = &flash->mtd;
166 size_t retlen;
167
168 return mtd->_read(mtd, offset, len, &retlen, buf);
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200169}
170
171static inline int spi_flash_write(struct spi_flash *flash, u32 offset,
172 size_t len, const void *buf)
173{
Vignesh Rc4e88622019-02-05 11:29:23 +0530174 struct mtd_info *mtd = &flash->mtd;
175 size_t retlen;
176
177 return mtd->_write(mtd, offset, len, &retlen, buf);
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200178}
179
180static inline int spi_flash_erase(struct spi_flash *flash, u32 offset,
181 size_t len)
182{
Vignesh Rc4e88622019-02-05 11:29:23 +0530183 struct mtd_info *mtd = &flash->mtd;
184 struct erase_info instr;
185
186 if (offset % mtd->erasesize || len % mtd->erasesize) {
187 printf("SF: Erase offset/length not multiple of erase size\n");
188 return -EINVAL;
189 }
190
191 memset(&instr, 0, sizeof(instr));
192 instr.addr = offset;
193 instr.len = len;
194
195 return mtd->_erase(mtd, &instr);
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200196}
Simon Glass4c2dbef2014-10-13 23:42:06 -0600197#endif
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200198
Fabio Estevamc3c016c2015-11-05 12:43:42 -0200199static inline int spi_flash_protect(struct spi_flash *flash, u32 ofs, u32 len,
200 bool prot)
201{
Bin Meng439fcb92015-11-13 02:46:26 -0800202 if (!flash->flash_lock || !flash->flash_unlock)
Fabio Estevamc3c016c2015-11-05 12:43:42 -0200203 return -EOPNOTSUPP;
204
205 if (prot)
206 return flash->flash_lock(flash, ofs, len);
207 else
208 return flash->flash_unlock(flash, ofs, len);
209}
210
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200211#endif /* _SPI_FLASH_H_ */