blob: 82fa1687a2d37253e4a63a4778934e68148c0872 [file] [log] [blame]
Lee Jones5549fbd2014-03-20 09:20:39 +00001/*
2 * Generic/SFDP Flash Commands and Device Capabilities
3 *
4 * Copyright (C) 2013 Lee Jones <lee.jones@lianro.org>
5 *
6 * This code is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 */
11
12#ifndef _MTD_SERIAL_FLASH_CMDS_H
13#define _MTD_SERIAL_FLASH_CMDS_H
14
15/* Generic Flash Commands/OPCODEs */
Brian Norris92d3af92014-04-08 18:56:06 -070016#define SPINOR_OP_WREN 0x06
17#define SPINOR_OP_WRDI 0x04
18#define SPINOR_OP_RDID 0x9f
19#define SPINOR_OP_RDSR 0x05
20#define SPINOR_OP_RDSR2 0x35
21#define SPINOR_OP_WRSR 0x01
22#define SPINOR_OP_SE_4K 0x20
23#define SPINOR_OP_SE_32K 0x52
24#define SPINOR_OP_SE 0xd8
25#define SPINOR_OP_CHIPERASE 0xc7
26#define SPINOR_OP_WRVCR 0x81
27#define SPINOR_OP_RDVCR 0x85
Lee Jones5549fbd2014-03-20 09:20:39 +000028
29/* JEDEC Standard - Serial Flash Discoverable Parmeters (SFDP) Commands */
Brian Norris92d3af92014-04-08 18:56:06 -070030#define SPINOR_OP_READ 0x03 /* READ */
31#define SPINOR_OP_READ_FAST 0x0b /* FAST READ */
32#define SPINOR_OP_READ_1_1_2 0x3b /* DUAL OUTPUT READ */
33#define SPINOR_OP_READ_1_2_2 0xbb /* DUAL I/O READ */
34#define SPINOR_OP_READ_1_1_4 0x6b /* QUAD OUTPUT READ */
35#define SPINOR_OP_READ_1_4_4 0xeb /* QUAD I/O READ */
Lee Jones5549fbd2014-03-20 09:20:39 +000036
Brian Norris92d3af92014-04-08 18:56:06 -070037#define SPINOR_OP_WRITE 0x02 /* PAGE PROGRAM */
38#define SPINOR_OP_WRITE_1_1_2 0xa2 /* DUAL INPUT PROGRAM */
39#define SPINOR_OP_WRITE_1_2_2 0xd2 /* DUAL INPUT EXT PROGRAM */
40#define SPINOR_OP_WRITE_1_1_4 0x32 /* QUAD INPUT PROGRAM */
41#define SPINOR_OP_WRITE_1_4_4 0x12 /* QUAD INPUT EXT PROGRAM */
Lee Jones5549fbd2014-03-20 09:20:39 +000042
Brian Norris92d3af92014-04-08 18:56:06 -070043#define SPINOR_OP_EN4B_ADDR 0xb7 /* Enter 4-byte address mode */
44#define SPINOR_OP_EX4B_ADDR 0xe9 /* Exit 4-byte address mode */
Lee Jones5549fbd2014-03-20 09:20:39 +000045
46/* READ commands with 32-bit addressing */
Brian Norris92d3af92014-04-08 18:56:06 -070047#define SPINOR_OP_READ4 0x13
48#define SPINOR_OP_READ4_FAST 0x0c
49#define SPINOR_OP_READ4_1_1_2 0x3c
50#define SPINOR_OP_READ4_1_2_2 0xbc
51#define SPINOR_OP_READ4_1_1_4 0x6c
52#define SPINOR_OP_READ4_1_4_4 0xec
Lee Jones5549fbd2014-03-20 09:20:39 +000053
54/* Configuration flags */
55#define FLASH_FLAG_SINGLE 0x000000ff
56#define FLASH_FLAG_READ_WRITE 0x00000001
57#define FLASH_FLAG_READ_FAST 0x00000002
58#define FLASH_FLAG_SE_4K 0x00000004
59#define FLASH_FLAG_SE_32K 0x00000008
60#define FLASH_FLAG_CE 0x00000010
61#define FLASH_FLAG_32BIT_ADDR 0x00000020
62#define FLASH_FLAG_RESET 0x00000040
63#define FLASH_FLAG_DYB_LOCKING 0x00000080
64
65#define FLASH_FLAG_DUAL 0x0000ff00
66#define FLASH_FLAG_READ_1_1_2 0x00000100
67#define FLASH_FLAG_READ_1_2_2 0x00000200
68#define FLASH_FLAG_READ_2_2_2 0x00000400
69#define FLASH_FLAG_WRITE_1_1_2 0x00001000
70#define FLASH_FLAG_WRITE_1_2_2 0x00002000
71#define FLASH_FLAG_WRITE_2_2_2 0x00004000
72
73#define FLASH_FLAG_QUAD 0x00ff0000
74#define FLASH_FLAG_READ_1_1_4 0x00010000
75#define FLASH_FLAG_READ_1_4_4 0x00020000
76#define FLASH_FLAG_READ_4_4_4 0x00040000
77#define FLASH_FLAG_WRITE_1_1_4 0x00100000
78#define FLASH_FLAG_WRITE_1_4_4 0x00200000
79#define FLASH_FLAG_WRITE_4_4_4 0x00400000
80
81#endif /* _MTD_SERIAL_FLASH_CMDS_H */