]> Git Repo - J-u-boot.git/blame - include/spi_flash.h
Merge patch series "Universal Payload initial series"
[J-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
e06ab654 12#include <linux/types.h>
c4e88623 13#include <linux/mtd/spi-nor.h>
d25ce7d2 14
a00867b4
SG
15struct udevice;
16
ff0960f9 17struct spi_slave;
33adfb5f 18
4c2dbefd
SG
19struct dm_spi_flash_ops {
20 int (*read)(struct udevice *dev, u32 offset, size_t len, void *buf);
21 int (*write)(struct udevice *dev, u32 offset, size_t len,
22 const void *buf);
23 int (*erase)(struct udevice *dev, u32 offset, size_t len);
b3b60f59
SG
24 /**
25 * get_sw_write_prot() - Check state of software write-protect feature
26 *
27 * SPI flash chips can lock a region of the flash defined by a
28 * 'protected area'. This function checks if this protected area is
29 * defined.
30 *
31 * @dev: SPI flash device
32 * @return 0 if no region is write-protected, 1 if a region is
33 * write-protected, -ENOSYS if the driver does not implement this,
34 * other -ve value on error
35 */
36 int (*get_sw_write_prot)(struct udevice *dev);
d25ce7d2
HS
37};
38
4c2dbefd
SG
39/* Access the serial operations for a device */
40#define sf_get_ops(dev) ((struct dm_spi_flash_ops *)(dev)->driver->ops)
41
56c40460 42#if CONFIG_IS_ENABLED(DM_SPI_FLASH)
8d987abc
SG
43/**
44 * spi_flash_read_dm() - Read data from SPI flash
45 *
46 * @dev: SPI flash device
47 * @offset: Offset into device in bytes to read from
48 * @len: Number of bytes to read
49 * @buf: Buffer to put the data that is read
185f812c 50 * Return: 0 if OK, -ve on error
8d987abc
SG
51 */
52int spi_flash_read_dm(struct udevice *dev, u32 offset, size_t len, void *buf);
53
54/**
55 * spi_flash_write_dm() - Write data to SPI flash
56 *
57 * @dev: SPI flash device
58 * @offset: Offset into device in bytes to write to
59 * @len: Number of bytes to write
60 * @buf: Buffer containing bytes to write
185f812c 61 * Return: 0 if OK, -ve on error
8d987abc
SG
62 */
63int spi_flash_write_dm(struct udevice *dev, u32 offset, size_t len,
64 const void *buf);
65
66/**
67 * spi_flash_erase_dm() - Erase blocks of the SPI flash
68 *
69 * Note that @len must be a muiltiple of the flash sector size.
70 *
71 * @dev: SPI flash device
72 * @offset: Offset into device in bytes to start erasing
73 * @len: Number of bytes to erase
185f812c 74 * Return: 0 if OK, -ve on error
8d987abc
SG
75 */
76int spi_flash_erase_dm(struct udevice *dev, u32 offset, size_t len);
77
b3b60f59
SG
78/**
79 * spl_flash_get_sw_write_prot() - Check state of software write-protect feature
80 *
81 * SPI flash chips can lock a region of the flash defined by a
82 * 'protected area'. This function checks if this protected area is
83 * defined.
84 *
85 * @dev: SPI flash device
185f812c 86 * Return: 0 if no region is write-protected, 1 if a region is
b3b60f59
SG
87 * write-protected, -ENOSYS if the driver does not implement this,
88 * other -ve value on error
89 */
90int spl_flash_get_sw_write_prot(struct udevice *dev);
91
4806fcea
SG
92/**
93 * spi_flash_std_probe() - Probe a SPI flash device
94 *
95 * This is the standard internal method for probing a SPI flash device to
96 * determine its type. It can be used in chip-specific drivers which need to
97 * do this, typically with of-platdata
98 *
99 * @dev: SPI-flash device to probe
185f812c 100 * Return: 0 if OK, -ve on error
4806fcea
SG
101 */
102int spi_flash_std_probe(struct udevice *dev);
103
4c2dbefd 104int spi_flash_probe_bus_cs(unsigned int busnum, unsigned int cs,
4c2dbefd
SG
105 struct udevice **devp);
106
107/* Compatibility function - this is the old U-Boot API */
108struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
109 unsigned int max_hz, unsigned int spi_mode);
110
111/* Compatibility function - this is the old U-Boot API */
b09c74f6
HS
112static inline void spi_flash_free(struct spi_flash *flash)
113{
114}
4c2dbefd 115
4c2dbefd 116static inline int spi_flash_read(struct spi_flash *flash, u32 offset,
8d987abc 117 size_t len, void *buf)
4c2dbefd 118{
8d987abc 119 return spi_flash_read_dm(flash->dev, offset, len, buf);
4c2dbefd
SG
120}
121
122static inline int spi_flash_write(struct spi_flash *flash, u32 offset,
8d987abc 123 size_t len, const void *buf)
4c2dbefd 124{
8d987abc 125 return spi_flash_write_dm(flash->dev, offset, len, buf);
4c2dbefd
SG
126}
127
128static inline int spi_flash_erase(struct spi_flash *flash, u32 offset,
8d987abc 129 size_t len)
4c2dbefd 130{
8d987abc 131 return spi_flash_erase_dm(flash->dev, offset, len);
4c2dbefd
SG
132}
133
134struct sandbox_state;
135
136int sandbox_sf_bind_emul(struct sandbox_state *state, int busnum, int cs,
008dcddf 137 struct udevice *bus, ofnode node, const char *spec);
4c2dbefd
SG
138
139void sandbox_sf_unbind_emul(struct sandbox_state *state, int busnum, int cs);
140
141#else
d25ce7d2
HS
142struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
143 unsigned int max_hz, unsigned int spi_mode);
0efc0249 144
d25ce7d2
HS
145void spi_flash_free(struct spi_flash *flash);
146
147static inline int spi_flash_read(struct spi_flash *flash, u32 offset,
148 size_t len, void *buf)
149{
c4e88623
V
150 struct mtd_info *mtd = &flash->mtd;
151 size_t retlen;
152
a67b3719
MB
153 if (!len)
154 return 0;
155
c4e88623 156 return mtd->_read(mtd, offset, len, &retlen, buf);
d25ce7d2
HS
157}
158
159static inline int spi_flash_write(struct spi_flash *flash, u32 offset,
160 size_t len, const void *buf)
161{
c4e88623
V
162 struct mtd_info *mtd = &flash->mtd;
163 size_t retlen;
164
a67b3719
MB
165 if (!len)
166 return 0;
167
c4e88623 168 return mtd->_write(mtd, offset, len, &retlen, buf);
d25ce7d2
HS
169}
170
171static inline int spi_flash_erase(struct spi_flash *flash, u32 offset,
172 size_t len)
173{
c4e88623
V
174 struct mtd_info *mtd = &flash->mtd;
175 struct erase_info instr;
176
177 if (offset % mtd->erasesize || len % mtd->erasesize) {
178 printf("SF: Erase offset/length not multiple of erase size\n");
179 return -EINVAL;
180 }
181
a67b3719
MB
182 if (!len)
183 return 0;
184
c4e88623
V
185 memset(&instr, 0, sizeof(instr));
186 instr.addr = offset;
187 instr.len = len;
188
189 return mtd->_erase(mtd, &instr);
d25ce7d2 190}
4c2dbefd 191#endif
d25ce7d2 192
c3c016cf
FE
193static inline int spi_flash_protect(struct spi_flash *flash, u32 ofs, u32 len,
194 bool prot)
195{
439fcb9b 196 if (!flash->flash_lock || !flash->flash_unlock)
c3c016cf
FE
197 return -EOPNOTSUPP;
198
199 if (prot)
200 return flash->flash_lock(flash, ofs, len);
201 else
202 return flash->flash_unlock(flash, ofs, len);
203}
204
d25ce7d2 205#endif /* _SPI_FLASH_H_ */
This page took 0.902591 seconds and 4 git commands to generate.