blob: 7f691e8559cde003fc4e0dc2d4011e3304f4112c [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
Simon Glass4c2dbef2014-10-13 23:42:06 -060012#include <dm.h> /* Because we dereference struct udevice here */
Mike Frysingere06ab652009-11-03 11:36:39 -050013#include <linux/types.h>
Vignesh Rc4e88622019-02-05 11:29:23 +053014#include <linux/mtd/spi-nor.h>
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +020015
Nikita Kiryanov88e34e52014-08-20 15:08:48 +030016#ifndef CONFIG_SF_DEFAULT_SPEED
17# define CONFIG_SF_DEFAULT_SPEED 1000000
18#endif
19#ifndef CONFIG_SF_DEFAULT_MODE
20# define CONFIG_SF_DEFAULT_MODE SPI_MODE_3
21#endif
22#ifndef CONFIG_SF_DEFAULT_CS
23# define CONFIG_SF_DEFAULT_CS 0
24#endif
25#ifndef CONFIG_SF_DEFAULT_BUS
26# define CONFIG_SF_DEFAULT_BUS 0
27#endif
28
Simon Glassff0960f2014-10-13 23:42:04 -060029struct spi_slave;
Jagannadha Sutradharudu Teki33adfb52013-12-23 23:34:42 +053030
Simon Glass4c2dbef2014-10-13 23:42:06 -060031struct dm_spi_flash_ops {
32 int (*read)(struct udevice *dev, u32 offset, size_t len, void *buf);
33 int (*write)(struct udevice *dev, u32 offset, size_t len,
34 const void *buf);
35 int (*erase)(struct udevice *dev, u32 offset, size_t len);
Simon Glassa58986c2018-11-06 15:21:41 -070036 /**
37 * get_sw_write_prot() - Check state of software write-protect feature
38 *
39 * SPI flash chips can lock a region of the flash defined by a
40 * 'protected area'. This function checks if this protected area is
41 * defined.
42 *
43 * @dev: SPI flash device
44 * @return 0 if no region is write-protected, 1 if a region is
45 * write-protected, -ENOSYS if the driver does not implement this,
46 * other -ve value on error
47 */
48 int (*get_sw_write_prot)(struct udevice *dev);
Simon Glass4c2dbef2014-10-13 23:42:06 -060049};
50
51/* Access the serial operations for a device */
52#define sf_get_ops(dev) ((struct dm_spi_flash_ops *)(dev)->driver->ops)
53
54#ifdef CONFIG_DM_SPI_FLASH
Simon Glass8d987ab2015-03-26 09:29:25 -060055/**
56 * spi_flash_read_dm() - Read data from SPI flash
57 *
58 * @dev: SPI flash device
59 * @offset: Offset into device in bytes to read from
60 * @len: Number of bytes to read
61 * @buf: Buffer to put the data that is read
62 * @return 0 if OK, -ve on error
63 */
64int spi_flash_read_dm(struct udevice *dev, u32 offset, size_t len, void *buf);
65
66/**
67 * spi_flash_write_dm() - Write data to SPI flash
68 *
69 * @dev: SPI flash device
70 * @offset: Offset into device in bytes to write to
71 * @len: Number of bytes to write
72 * @buf: Buffer containing bytes to write
73 * @return 0 if OK, -ve on error
74 */
75int spi_flash_write_dm(struct udevice *dev, u32 offset, size_t len,
76 const void *buf);
77
78/**
79 * spi_flash_erase_dm() - Erase blocks of the SPI flash
80 *
81 * Note that @len must be a muiltiple of the flash sector size.
82 *
83 * @dev: SPI flash device
84 * @offset: Offset into device in bytes to start erasing
85 * @len: Number of bytes to erase
86 * @return 0 if OK, -ve on error
87 */
88int spi_flash_erase_dm(struct udevice *dev, u32 offset, size_t len);
89
Simon Glassa58986c2018-11-06 15:21:41 -070090/**
91 * spl_flash_get_sw_write_prot() - Check state of software write-protect feature
92 *
93 * SPI flash chips can lock a region of the flash defined by a
94 * 'protected area'. This function checks if this protected area is
95 * defined.
96 *
97 * @dev: SPI flash device
98 * @return 0 if no region is write-protected, 1 if a region is
99 * write-protected, -ENOSYS if the driver does not implement this,
100 * other -ve value on error
101 */
102int spl_flash_get_sw_write_prot(struct udevice *dev);
103
Simon Glass4c2dbef2014-10-13 23:42:06 -0600104int spi_flash_probe_bus_cs(unsigned int busnum, unsigned int cs,
105 unsigned int max_hz, unsigned int spi_mode,
106 struct udevice **devp);
107
108/* Compatibility function - this is the old U-Boot API */
109struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
110 unsigned int max_hz, unsigned int spi_mode);
111
112/* Compatibility function - this is the old U-Boot API */
113void spi_flash_free(struct spi_flash *flash);
114
Simon Glass4c2dbef2014-10-13 23:42:06 -0600115static inline int spi_flash_read(struct spi_flash *flash, u32 offset,
Simon Glass8d987ab2015-03-26 09:29:25 -0600116 size_t len, void *buf)
Simon Glass4c2dbef2014-10-13 23:42:06 -0600117{
Simon Glass8d987ab2015-03-26 09:29:25 -0600118 return spi_flash_read_dm(flash->dev, offset, len, buf);
Simon Glass4c2dbef2014-10-13 23:42:06 -0600119}
120
121static inline int spi_flash_write(struct spi_flash *flash, u32 offset,
Simon Glass8d987ab2015-03-26 09:29:25 -0600122 size_t len, const void *buf)
Simon Glass4c2dbef2014-10-13 23:42:06 -0600123{
Simon Glass8d987ab2015-03-26 09:29:25 -0600124 return spi_flash_write_dm(flash->dev, offset, len, buf);
Simon Glass4c2dbef2014-10-13 23:42:06 -0600125}
126
127static inline int spi_flash_erase(struct spi_flash *flash, u32 offset,
Simon Glass8d987ab2015-03-26 09:29:25 -0600128 size_t len)
Simon Glass4c2dbef2014-10-13 23:42:06 -0600129{
Simon Glass8d987ab2015-03-26 09:29:25 -0600130 return spi_flash_erase_dm(flash->dev, offset, len);
Simon Glass4c2dbef2014-10-13 23:42:06 -0600131}
132
133struct sandbox_state;
134
135int sandbox_sf_bind_emul(struct sandbox_state *state, int busnum, int cs,
Simon Glass008dcdd2018-06-11 13:07:16 -0600136 struct udevice *bus, ofnode node, const char *spec);
Simon Glass4c2dbef2014-10-13 23:42:06 -0600137
138void sandbox_sf_unbind_emul(struct sandbox_state *state, int busnum, int cs);
139
140#else
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200141struct spi_flash *spi_flash_probe(unsigned int bus, unsigned int cs,
142 unsigned int max_hz, unsigned int spi_mode);
Simon Glass0efc0242013-12-03 16:43:24 -0700143
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200144void spi_flash_free(struct spi_flash *flash);
145
146static inline int spi_flash_read(struct spi_flash *flash, u32 offset,
147 size_t len, void *buf)
148{
Vignesh Rc4e88622019-02-05 11:29:23 +0530149 struct mtd_info *mtd = &flash->mtd;
150 size_t retlen;
151
152 return mtd->_read(mtd, offset, len, &retlen, buf);
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200153}
154
155static inline int spi_flash_write(struct spi_flash *flash, u32 offset,
156 size_t len, const void *buf)
157{
Vignesh Rc4e88622019-02-05 11:29:23 +0530158 struct mtd_info *mtd = &flash->mtd;
159 size_t retlen;
160
161 return mtd->_write(mtd, offset, len, &retlen, buf);
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200162}
163
164static inline int spi_flash_erase(struct spi_flash *flash, u32 offset,
165 size_t len)
166{
Vignesh Rc4e88622019-02-05 11:29:23 +0530167 struct mtd_info *mtd = &flash->mtd;
168 struct erase_info instr;
169
170 if (offset % mtd->erasesize || len % mtd->erasesize) {
171 printf("SF: Erase offset/length not multiple of erase size\n");
172 return -EINVAL;
173 }
174
175 memset(&instr, 0, sizeof(instr));
176 instr.addr = offset;
177 instr.len = len;
178
179 return mtd->_erase(mtd, &instr);
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200180}
Simon Glass4c2dbef2014-10-13 23:42:06 -0600181#endif
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200182
Fabio Estevamc3c016c2015-11-05 12:43:42 -0200183static inline int spi_flash_protect(struct spi_flash *flash, u32 ofs, u32 len,
184 bool prot)
185{
Bin Meng439fcb92015-11-13 02:46:26 -0800186 if (!flash->flash_lock || !flash->flash_unlock)
Fabio Estevamc3c016c2015-11-05 12:43:42 -0200187 return -EOPNOTSUPP;
188
189 if (prot)
190 return flash->flash_lock(flash, ofs, len);
191 else
192 return flash->flash_unlock(flash, ofs, len);
193}
194
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +0200195#endif /* _SPI_FLASH_H_ */