f37fc323d62b82db70084bd336bdde90d82c49e1
[openocd.git] / src / flash / nand / mx3.h
1
2 /***************************************************************************
3 * Copyright (C) 2009 by Alexei Babich *
4 * Rezonans plc., Chelyabinsk, Russia *
5 * impatt@mail.ru *
6 * *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
11 * *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program; if not, write to the *
19 * Free Software Foundation, Inc., *
20 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
21 ***************************************************************************/
22
23 /*
24 * Freescale iMX3* OpenOCD NAND Flash controller support.
25 *
26 * Many thanks to Ben Dooks for writing s3c24xx driver.
27 */
28
29 #define MX3_NF_BASE_ADDR 0xb8000000
30 #define MX3_NF_BUFSIZ (MX3_NF_BASE_ADDR + 0xe00)
31 #define MX3_NF_BUFADDR (MX3_NF_BASE_ADDR + 0xe04)
32 #define MX3_NF_FADDR (MX3_NF_BASE_ADDR + 0xe06)
33 #define MX3_NF_FCMD (MX3_NF_BASE_ADDR + 0xe08)
34 #define MX3_NF_BUFCFG (MX3_NF_BASE_ADDR + 0xe0a)
35 #define MX3_NF_ECCSTATUS (MX3_NF_BASE_ADDR + 0xe0c)
36 #define MX3_NF_ECCMAINPOS (MX3_NF_BASE_ADDR + 0xe0e)
37 #define MX3_NF_ECCSPAREPOS (MX3_NF_BASE_ADDR + 0xe10)
38 #define MX3_NF_FWP (MX3_NF_BASE_ADDR + 0xe12)
39 #define MX3_NF_LOCKSTART (MX3_NF_BASE_ADDR + 0xe14)
40 #define MX3_NF_LOCKEND (MX3_NF_BASE_ADDR + 0xe16)
41 #define MX3_NF_FWPSTATUS (MX3_NF_BASE_ADDR + 0xe18)
42 /*
43 * all bits not marked as self-clearing bit
44 */
45 #define MX3_NF_CFG1 (MX3_NF_BASE_ADDR + 0xe1a)
46 #define MX3_NF_CFG2 (MX3_NF_BASE_ADDR + 0xe1c)
47
48 #define MX3_NF_MAIN_BUFFER0 (MX3_NF_BASE_ADDR + 0x0000)
49 #define MX3_NF_MAIN_BUFFER1 (MX3_NF_BASE_ADDR + 0x0200)
50 #define MX3_NF_MAIN_BUFFER2 (MX3_NF_BASE_ADDR + 0x0400)
51 #define MX3_NF_MAIN_BUFFER3 (MX3_NF_BASE_ADDR + 0x0600)
52 #define MX3_NF_SPARE_BUFFER0 (MX3_NF_BASE_ADDR + 0x0800)
53 #define MX3_NF_SPARE_BUFFER1 (MX3_NF_BASE_ADDR + 0x0810)
54 #define MX3_NF_SPARE_BUFFER2 (MX3_NF_BASE_ADDR + 0x0820)
55 #define MX3_NF_SPARE_BUFFER3 (MX3_NF_BASE_ADDR + 0x0830)
56 #define MX3_NF_MAIN_BUFFER_LEN 512
57 #define MX3_NF_SPARE_BUFFER_LEN 16
58 #define MX3_NF_LAST_BUFFER_ADDR ((MX3_NF_SPARE_BUFFER3) + MX3_NF_SPARE_BUFFER_LEN - 2)
59
60 /* bits in MX3_NF_CFG1 register */
61 #define MX3_NF_BIT_SPARE_ONLY_EN (1<<2)
62 #define MX3_NF_BIT_ECC_EN (1<<3)
63 #define MX3_NF_BIT_INT_DIS (1<<4)
64 #define MX3_NF_BIT_BE_EN (1<<5)
65 #define MX3_NF_BIT_RESET_EN (1<<6)
66 #define MX3_NF_BIT_FORCE_CE (1<<7)
67
68 /* bits in MX3_NF_CFG2 register */
69
70 /*Flash Command Input*/
71 #define MX3_NF_BIT_OP_FCI (1<<0)
72 /*
73 * Flash Address Input
74 */
75 #define MX3_NF_BIT_OP_FAI (1<<1)
76 /*
77 * Flash Data Input
78 */
79 #define MX3_NF_BIT_OP_FDI (1<<2)
80
81 /* see "enum mx_dataout_type" below */
82 #define MX3_NF_BIT_DATAOUT_TYPE(x) ((x)<<3)
83 #define MX3_NF_BIT_OP_DONE (1<<15)
84
85 #define MX3_CCM_CGR2 0x53f80028
86 #define MX3_GPR 0x43fac008
87 #define MX3_PCSR 0x53f8000c
88
89 enum mx_dataout_type
90 {
91 MX3_NF_DATAOUT_PAGE = 1,
92 MX3_NF_DATAOUT_NANDID = 2,
93 MX3_NF_DATAOUT_NANDSTATUS = 4,
94 };
95 enum mx_nf_finalize_action
96 {
97 MX3_NF_FIN_NONE,
98 MX3_NF_FIN_DATAOUT,
99 };
100
101 struct mx3_nf_flags
102 {
103 unsigned host_little_endian:1;
104 unsigned target_little_endian:1;
105 unsigned nand_readonly:1;
106 unsigned one_kb_sram:1;
107 unsigned hw_ecc_enabled:1;
108 };
109
110 struct mx3_nf_controller
111 {
112 struct target *target;
113 enum mx_dataout_type optype;
114 enum mx_nf_finalize_action fin;
115 struct mx3_nf_flags flags;
116 };

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)