- Bring all the ftdi names inline in the cfg scripts. scripts will now work for eithe...
[openocd.git] / tcl / memory.tcl
1 # MEMORY
2 #
3 # All Memory regions have two components.
4 # (1) A count of regions, in the form N_NAME
5 # (2) An array within info about each region.
6 #
7 # The ARRAY
8 #
9 # <NAME>( RegionNumber , ATTRIBUTE )
10 #
11 # Where <NAME> is one of:
12 #
13 # N_FLASH & FLASH (internal memory)
14 # N_RAM & RAM (internal memory)
15 # N_MMREGS & MMREGS (for memory mapped registers)
16 # N_XMEM & XMEM (off chip memory, ie: flash on cs0, sdram on cs2)
17 # or N_UNKNOWN & UNKNOWN for things that do not exist.
18 #
19 # We have 1 unknown region.
20 set N_UNKNOWN 1
21 # All MEMORY regions must have these attributes
22 # CS - chip select (if internal, use -1)
23 set UNKNOWN(0,CHIPSELECT) -1
24 # BASE - base address in memory
25 set UNKNOWN(0,BASE) 0
26 # LEN - length in bytes
27 set UNKNOWN(0,LEN) $CPU_MAX_ADDRESS
28 # HUMAN - human name of the region
29 set UNKNOWN(0,HUMAN) "unknown"
30 # TYPE - one of:
31 # flash, ram, mmr, unknown
32 # For harvard arch:
33 # iflash, dflash, iram, dram
34 set UNKNOWN(0,TYPE) "unknown"
35 # RWX - access ablity
36 # unix style chmod bits
37 # 0 - no access
38 # 1 - execute
39 # 2 - write
40 # 4 - read
41 # hence: 7 - readwrite execute
42 set RWX_NO_ACCESS 0
43 set RWX_X_ONLY $BIT0
44 set RWX_W_ONLY $BIT1
45 set RWX_R_ONLY $BIT2
46 set RWX_RW [expr $RWX_R_ONLY + $RWX_W_ONLY]
47 set RWX_R_X [expr $RWX_R_ONLY + $RWX_X_ONLY]
48 set RWX_RWX [expr $RWX_R_ONLY + $RWX_W_ONLY + $RWX_X_ONLY]
49 set UNKNOWN(0,RWX) $RWX_NO_ACCESS
50
51 # WIDTH - access width
52 # 8,16,32 [0 means ANY]
53 set ACCESS_WIDTH_NONE 0
54 set ACCESS_WIDTH_8 $BIT0
55 set ACCESS_WIDTH_16 $BIT1
56 set ACCESS_WIDTH_32 $BIT2
57 set ACCESS_WIDTH_ANY [expr $ACCESS_WIDTH_8 + $ACCESS_WIDTH_16 + $ACCESS_WIDTH_32]
58 set UNKNOWN(0,ACCESS_WIDTH) $ACCESS_WIDTH_NONE
59
60 proc iswithin { ADDRESS BASE LEN } {
61 return [expr ((($ADDRESS - $BASE) > 0) && (($ADDRESS - $BASE + $LEN) > 0))]
62 }
63
64 proc address_info { ADDRESS } {
65
66 foreach WHERE { FLASH RAM MMREGS XMEM UNKNOWN } {
67 if { info exists $WHERE } {
68 set lmt [set N_[set WHERE]]
69 for { set region 0 } { $region < $lmt } { incr region } {
70 if { iswithin $ADDRESS $WHERE($region,BASE) $WHERE($region,LEN) } {
71 return "$WHERE $region";
72 }
73 }
74 }
75 }
76
77 # Return the 'unknown'
78 return "UNKNOWN 0"
79 }
80
81 proc memread32 {ADDR} {
82 set foo(0) 0
83 if ![ catch { ocd_mem2array foo 32 $ADDR 1 } msg ] {
84 return $foo(0)
85 } else {
86 error "memread32: $msg"
87 }
88 }
89
90 proc memread16 {ADDR} {
91 set foo(0) 0
92 if ![ catch { ocd_mem2array foo 16 $ADDR 1 } msg ] {
93 return $foo(0)
94 } else {
95 error "memread16: $msg"
96 }
97 }
98
99 proc memread8 {ADDR} {
100 set foo(0) 0
101 if ![ catch { ocd_mem2array foo 8 $ADDR 1 } msg ] {
102 return $foo(0)
103 } else {
104 error "memread8: $msg"
105 }
106 }
107
108 proc memwrite32 {ADDR DATA} {
109 set foo(0) $DATA
110 if ![ catch { ocd_array2mem foo 32 $ADDR 1 } msg ] {
111 return $foo(0)
112 } else {
113 error "memwrite32: $msg"
114 }
115 }
116
117 proc memwrite16 {ADDR DATA} {
118 set foo(0) $DATA
119 if ![ catch { ocd_array2mem foo 16 $ADDR 1 } msg ] {
120 return $foo(0)
121 } else {
122 error "memwrite16: $msg"
123 }
124 }
125
126 proc memwrite8 {ADDR DATA} {
127 set foo(0) $DATA
128 if ![ catch { ocd_array2mem foo 8 $ADDR 1 } msg ] {
129 return $foo(0)
130 } else {
131 error "memwrite8: $msg"
132 }
133 }

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)