]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/spi_flash.h
Convert CONFIG_DEFAULT_SPI_* to Kconfig
[thirdparty/u-boot.git] / include / spi_flash.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0 */
d25ce7d2 2/*
a5e8199a 3 * Common SPI flash Interface
d25ce7d2
HS
4 *
5 * Copyright (C) 2008 Atmel Corporation
a5e8199a 6 * Copyright (C) 2013 Jagannadha Sutradharudu Teki, Xilinx Inc.
d25ce7d2 7 */
a5e8199a 8
d25ce7d2
HS
9#ifndef _SPI_FLASH_H_
10#define _SPI_FLASH_H_
11
4c2dbefd 12#include <dm.h> /* Because we dereference struct udevice here */
e06ab654 13#include <linux/types.h>
c4e88623 14#include <linux/mtd/spi-nor.h>
d25ce7d2 15
ff0960f9 16struct spi_slave;
33adfb5f 17
4c2dbefd
SG
18struct dm_spi_flash_ops {
19 int (*read)(struct udevice *dev, u32 offset, size_t len, void *buf);
20 int (*write)(struct udevice *dev, u32 offset, size_t len,
21 const void *buf);
22 int (*erase)(struct udevice *dev, u32 offset, size_t len);
a58986ca
SG
23 /**
24 * get_sw_write_prot() - Check state of software write-protect feature
25 *
26 * SPI flash chips can lock a region of the flash defined by a
27 * 'protected area'. This function checks if this protected area is
28 * defined.
29 *
30 * @dev: SPI flash device
31 * @return 0 if no region is write-protected, 1 if a region is
32 * write-protected, -ENOSYS if the driver does not implement this,
33 * other -ve value on error
34 */
35 int (*get_sw_write_prot)(struct udevice *dev);
d25ce7d2
HS
36};
37
4c2dbefd
SG
38/* Access the serial operations for a device */
39#define sf_get_ops(dev) ((struct dm_spi_flash_ops *)(dev)->driver->ops)
40
41#ifdef CONFIG_DM_SPI_FLASH
8d987abc
SG
42/**
43 * spi_flash_read_dm() - Read data from SPI flash
44 *
45 * @dev: SPI flash device
46 * @offset: Offset into device in bytes to read from
47 * @len: Number of bytes to read
48 * @buf: Buffer to put the data that is read
49 * @return 0 if OK, -ve on error
50 */
51int spi_flash_read_dm(struct udevice *dev, u32 offset, size_t len, void *buf);
52
53/**
54 * spi_flash_write_dm() - Write data to SPI flash
55 *
56 * @dev: SPI flash device
57 * @offset: Offset into device in bytes to write to
58 * @len: Number of bytes to write
59 * @buf: Buffer containing bytes to write
60 * @return 0 if OK, -ve on error
61 */
62int spi_flash_write_dm(struct udevice *dev, u32 offset, size_t len,
63 const void *buf);
64
65/**
66 * spi_flash_erase_dm() - Erase blocks of the SPI flash
67 *
68 * Note that @len must be a muiltiple of the flash sector size.
69 *
70 * @dev: SPI flash device
71 * @offset: Offset into device in bytes to start erasing
72 * @len: Number of bytes to erase
73 * @return 0 if OK, -ve on error
74 */
75int spi_flash_erase_dm(struct udevice *dev, u32 offset, size_t len);
76
a58986ca
SG
77/**
78 * spl_flash_get_sw_write_prot() - Check state of software write-protect feature
79 *
80 * SPI flash chips can lock a region of the flash defined by a
81 * 'protected area'. This function checks if this protected area is
82 * defined.
83 *
84 * @dev: SPI flash device
85 * @return 0 if no region is write-protected, 1 if a region is
86 * write-protected, -ENOSYS if the driver does not implement this,
87 * other -ve value on error
88 */
89int spl_flash_get_sw_write_prot(struct udevice *dev);
90
4c2dbefd
SG
91int spi_flash_probe_bus_cs(unsigned int busnum, unsigned int cs,
92 unsigned int max_hz, unsigned int spi_mode,
93 struct udevice **devp);
94
95/* Compatibility function - this is the old U-Boot API */
96struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
97 unsigned int max_hz, unsigned int spi_mode);
98
99/* Compatibility function - this is the old U-Boot API */
100void spi_flash_free(struct spi_flash *flash);
101
4c2dbefd 102static inline int spi_flash_read(struct spi_flash *flash, u32 offset,
8d987abc 103 size_t len, void *buf)
4c2dbefd 104{
8d987abc 105 return spi_flash_read_dm(flash->dev, offset, len, buf);
4c2dbefd
SG
106}
107
108static inline int spi_flash_write(struct spi_flash *flash, u32 offset,
8d987abc 109 size_t len, const void *buf)
4c2dbefd 110{
8d987abc 111 return spi_flash_write_dm(flash->dev, offset, len, buf);
4c2dbefd
SG
112}
113
114static inline int spi_flash_erase(struct spi_flash *flash, u32 offset,
8d987abc 115 size_t len)
4c2dbefd 116{
8d987abc 117 return spi_flash_erase_dm(flash->dev, offset, len);
4c2dbefd
SG
118}
119
120struct sandbox_state;
121
122int sandbox_sf_bind_emul(struct sandbox_state *state, int busnum, int cs,
008dcddf 123 struct udevice *bus, ofnode node, const char *spec);
4c2dbefd
SG
124
125void sandbox_sf_unbind_emul(struct sandbox_state *state, int busnum, int cs);
126
127#else
d25ce7d2
HS
128struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
129 unsigned int max_hz, unsigned int spi_mode);
0efc0249 130
d25ce7d2
HS
131void spi_flash_free(struct spi_flash *flash);
132
133static inline int spi_flash_read(struct spi_flash *flash, u32 offset,
134 size_t len, void *buf)
135{
c4e88623
V
136 struct mtd_info *mtd = &flash->mtd;
137 size_t retlen;
138
139 return mtd->_read(mtd, offset, len, &retlen, buf);
d25ce7d2
HS
140}
141
142static inline int spi_flash_write(struct spi_flash *flash, u32 offset,
143 size_t len, const void *buf)
144{
c4e88623
V
145 struct mtd_info *mtd = &flash->mtd;
146 size_t retlen;
147
148 return mtd->_write(mtd, offset, len, &retlen, buf);
d25ce7d2
HS
149}
150
151static inline int spi_flash_erase(struct spi_flash *flash, u32 offset,
152 size_t len)
153{
c4e88623
V
154 struct mtd_info *mtd = &flash->mtd;
155 struct erase_info instr;
156
157 if (offset % mtd->erasesize || len % mtd->erasesize) {
158 printf("SF: Erase offset/length not multiple of erase size\n");
159 return -EINVAL;
160 }
161
162 memset(&instr, 0, sizeof(instr));
163 instr.addr = offset;
164 instr.len = len;
165
166 return mtd->_erase(mtd, &instr);
d25ce7d2 167}
4c2dbefd 168#endif
d25ce7d2 169
c3c016cf
FE
170static inline int spi_flash_protect(struct spi_flash *flash, u32 ofs, u32 len,
171 bool prot)
172{
439fcb9b 173 if (!flash->flash_lock || !flash->flash_unlock)
c3c016cf
FE
174 return -EOPNOTSUPP;
175
176 if (prot)
177 return flash->flash_lock(flash, ofs, len);
178 else
179 return flash->flash_unlock(flash, ofs, len);
180}
181
d25ce7d2 182#endif /* _SPI_FLASH_H_ */