blob: a6bf734830a71956b8fdb292774cf6567a326672 [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/*
3 * SPI flash internal definitions
4 *
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 */
8
Jagannadha Sutradharudu Teki469146c2013-10-10 22:14:09 +05309#ifndef _SF_INTERNAL_H_
10#define _SF_INTERNAL_H_
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +020011
Simon Glassff0960f2014-10-13 23:42:04 -060012#include <linux/types.h>
13#include <linux/compiler.h>
14
Vignesh Rc4e88622019-02-05 11:29:23 +053015#define SPI_NOR_MAX_ID_LEN 6
16#define SPI_NOR_MAX_ADDR_WIDTH 4
Simon Glassff0960f2014-10-13 23:42:04 -060017
Vignesh Rc4e88622019-02-05 11:29:23 +053018struct flash_info {
Vignesh R778572d2019-02-05 11:29:25 +053019#if !CONFIG_IS_ENABLED(SPI_FLASH_TINY)
Vignesh Rc4e88622019-02-05 11:29:23 +053020 char *name;
Vignesh R778572d2019-02-05 11:29:25 +053021#endif
Jagan Tekif790ca72016-10-30 23:16:10 +053022
23 /*
24 * This array stores the ID bytes.
25 * The first three bytes are the JEDIC ID.
26 * JEDEC ID zero means "no ID" (mostly older chips).
27 */
Vignesh Rc4e88622019-02-05 11:29:23 +053028 u8 id[SPI_NOR_MAX_ID_LEN];
Jagan Tekif790ca72016-10-30 23:16:10 +053029 u8 id_len;
30
Vignesh Rc4e88622019-02-05 11:29:23 +053031 /* The size listed here is what works with SPINOR_OP_SE, which isn't
Jagan Tekif3bf2e52016-10-30 23:16:13 +053032 * necessarily called a "sector" by the vendor.
33 */
Vignesh Rc4e88622019-02-05 11:29:23 +053034 unsigned int sector_size;
35 u16 n_sectors;
Jagan Teki3632c8e2016-08-08 19:25:55 +053036
Jagan Tekif3bf2e52016-10-30 23:16:13 +053037 u16 page_size;
Vignesh Rc4e88622019-02-05 11:29:23 +053038 u16 addr_width;
Jagan Tekif790ca72016-10-30 23:16:10 +053039
Jagan Tekif3bf2e52016-10-30 23:16:13 +053040 u16 flags;
Vignesh Rc4e88622019-02-05 11:29:23 +053041#define SECT_4K BIT(0) /* SPINOR_OP_BE_4K works uniformly */
42#define SPI_NOR_NO_ERASE BIT(1) /* No erase command needed */
43#define SST_WRITE BIT(2) /* use SST byte programming */
44#define SPI_NOR_NO_FR BIT(3) /* Can't do fastread */
45#define SECT_4K_PMC BIT(4) /* SPINOR_OP_BE_4K_PMC works uniformly */
46#define SPI_NOR_DUAL_READ BIT(5) /* Flash supports Dual Read */
47#define SPI_NOR_QUAD_READ BIT(6) /* Flash supports Quad Read */
48#define USE_FSR BIT(7) /* use flag status register */
49#define SPI_NOR_HAS_LOCK BIT(8) /* Flash supports lock/unlock via SR */
50#define SPI_NOR_HAS_TB BIT(9) /*
51 * Flash SR has Top/Bottom (TB) protect
52 * bit. Must be used with
53 * SPI_NOR_HAS_LOCK.
54 */
55#define SPI_S3AN BIT(10) /*
56 * Xilinx Spartan 3AN In-System Flash
57 * (MFR cannot be used for probing
58 * because it has the same value as
59 * ATMEL flashes)
60 */
61#define SPI_NOR_4B_OPCODES BIT(11) /*
62 * Use dedicated 4byte address op codes
63 * to support memory size above 128Mib.
64 */
65#define NO_CHIP_ERASE BIT(12) /* Chip does not support chip erase */
66#define SPI_NOR_SKIP_SFDP BIT(13) /* Skip parsing of SFDP tables */
67#define USE_CLSR BIT(14) /* use CLSR command */
Simon Glassff0960f2014-10-13 23:42:04 -060068};
69
Vignesh Rc4e88622019-02-05 11:29:23 +053070extern const struct flash_info spi_nor_ids[];
71
72#define JEDEC_MFR(info) ((info)->id[0])
73#define JEDEC_ID(info) (((info)->id[1]) << 8 | ((info)->id[2]))
Simon Glassff0960f2014-10-13 23:42:04 -060074
Haavard Skinnemoend25ce7d2008-05-16 11:10:33 +020075/* Send a single-byte command to the device and read the response */
76int spi_flash_cmd(struct spi_slave *spi, u8 cmd, void *response, size_t len);
77
78/*
79 * Send a multi-byte command to the device and read the response. Used
80 * for flash array reads, etc.
81 */
82int spi_flash_cmd_read(struct spi_slave *spi, const u8 *cmd,
83 size_t cmd_len, void *data, size_t data_len);
84
85/*
86 * Send a multi-byte command to the device followed by (optional)
87 * data. Used for programming the flash array, etc.
88 */
89int spi_flash_cmd_write(struct spi_slave *spi, const u8 *cmd, size_t cmd_len,
90 const void *data, size_t data_len);
91
Mike Frysingerd4aa5002011-04-25 06:58:29 +000092
Simon Glassa58986c2018-11-06 15:21:41 -070093/* Get software write-protect value (BP bits) */
94int spi_flash_cmd_get_sw_write_prot(struct spi_flash *flash);
95
Jagannadha Sutradharudu Tekia5e81992013-10-02 19:38:49 +053096
Daniel Schwierzeck9fe6d872015-04-27 07:42:04 +020097#ifdef CONFIG_SPI_FLASH_MTD
98int spi_flash_mtd_register(struct spi_flash *flash);
99void spi_flash_mtd_unregister(void);
100#endif
Jagannadha Sutradharudu Teki469146c2013-10-10 22:14:09 +0530101#endif /* _SF_INTERNAL_H_ */