annotate python/stm32.py @ 131:04e45faafd1d

Added register view
author Windel Bouwman
date Sat, 19 Jan 2013 18:41:49 +0100
parents 654093a9a1e3
children 14e739ed03ab
rev   line source
128
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
1 import time
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
2 from devices import Device, registerDevice, STLinkException, Interface
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
3
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
4 # F4 specifics:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
5 STM32_FLASH_BASE = 0x08000000
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
6 STM32_SRAM_BASE = 0x20000000
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
7
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
8 # flash registers:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
9 FLASH_F4_REGS_ADDR = 0x40023c00
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
10 FLASH_F4_KEYR = FLASH_F4_REGS_ADDR + 0x04
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
11 FLASH_F4_SR = FLASH_F4_REGS_ADDR + 0x0c
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
12 FLASH_F4_CR = FLASH_F4_REGS_ADDR + 0x10
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
13
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
14 FLASH_F4_CR_START = 16
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
15 FLASH_F4_CR_LOCK = 31
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
16 FLASH_CR_PG = 0
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
17 FLASH_F4_CR_SER = 1
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
18 FLASH_CR_MER = 2
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
19 FLASH_F4_CR_SNB = 3
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
20 FLASH_F4_CR_SNB_MASK = 0x38
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
21 FLASH_F4_SR_BSY = 16
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
22
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
23 class Stm32F4(Device):
130
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
24 """
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
25 Implementation of the specifics of the STM32F4xx device series.
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
26 """
128
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
27 def __init__(self, iface):
129
9e350a7dde98 Changed architecture and updated the util
Windel Bouwman
parents: 128
diff changeset
28 super().__init__(iface)
9e350a7dde98 Changed architecture and updated the util
Windel Bouwman
parents: 128
diff changeset
29 def __str__(self):
130
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
30 return 'STM32F4 device size=0x{1:X} id=0x{0:X}'.format(\
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
31 self.UID, self.FlashSize)
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
32 def calculate_F4_sector(self, address):
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
33 sectorstarts = []
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
34 a = STM32_FLASH_BASE
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
35 for sectorsize in self.sectorsizes:
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
36 sectorstarts.append(a)
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
37 a += sectorsize
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
38 # linear search:
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
39 sec = 0
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
40 while sec < len(self.sectorsizes) and address >= sectorstarts[sec]:
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
41 sec += 1
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
42 sec -= 1 # one back.
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
43 return sec, self.sectorsizes[sec]
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
44
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
45 def calcSectors(self, address, size):
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
46 off = 0
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
47 sectors = []
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
48 while off < size:
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
49 sectornum, sectorsize = self.calculate_F4_sector(address + off)
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
50 sectors.append((sectornum, sectorsize))
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
51 off += sectorsize
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
52 return sectors
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
53 # Device registers:
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
54 @property
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
55 def UID(self):
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
56 uid_base = 0x1FFF7A10
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
57 uid1 = self.iface.read_debug32(uid_base)
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
58 uid2 = self.iface.read_debug32(uid_base + 0x4)
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
59 uid3 = self.iface.read_debug32(uid_base + 0x8)
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
60 return (uid3 << 64) | (uid2 << 32) | uid1
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
61 @property
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
62 def FlashSize(self):
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
63 f_id = self.iface.read_debug32(0x1FFF7A22)
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
64 f_id = f_id >> 16
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
65 return f_id * 1024
128
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
66 # flashing commands:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
67 def writeFlash(self, address, content):
130
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
68 flashsize = self.FlashSize
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
69 pagesize = min(self.sectorsizes)
128
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
70
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
71 # Check address range:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
72 if address < STM32_FLASH_BASE:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
73 raise STLinkException('Flashing below flash start')
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
74 if address + len(content) > STM32_FLASH_BASE + flashsize:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
75 raise STLinkException('Flashing above flash size')
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
76 if address & 1 == 1:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
77 raise STLinkException('Unaligned flash')
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
78 if len(content) & 1 == 1:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
79 print('unaligned length, padding with zero')
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
80 content += bytes([0])
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
81 if address & (pagesize - 1) != 0:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
82 raise STLinkException('Address not aligned with pagesize')
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
83 # erase required space
130
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
84 sectors = self.calcSectors(address, len(content))
128
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
85 print('erasing {0} sectors'.format(len(sectors)))
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
86 for sector, secsize in sectors:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
87 print('erasing sector {0} of {1} bytes'.format(sector, secsize))
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
88 self.eraseFlashSector(sector)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
89 # program pages:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
90 self.unlockFlashIf()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
91 self.writeFlashCrPsiz(2) # writes are 32 bits aligned
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
92 self.setFlashCrPg()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
93 print('writing {0} bytes'.format(len(content)), end='')
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
94 offset = 0
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
95 t1 = time.time()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
96 while offset < len(content):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
97 size = len(content) - offset
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
98 if size > 0x8000:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
99 size = 0x8000
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
100 chunk = content[offset:offset + size]
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
101 while len(chunk) % 4 != 0:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
102 chunk = chunk + bytes([0])
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
103 # Use simple mem32 writes:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
104 self.iface.write_mem32(address + offset, chunk)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
105 offset += size
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
106 print('.', end='', flush=True)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
107 t2 = time.time()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
108 print('Done!')
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
109 print('Speed: {0} bytes/second'.format(len(content)/(t2-t1)))
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
110 self.lockFlash()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
111 # verfify program:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
112 self.verifyFlash(address, content)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
113 def eraseFlashSector(self, sector):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
114 self.waitFlashBusy()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
115 self.unlockFlashIf()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
116 self.writeFlashCrSnb(sector)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
117 self.setFlashCrStart()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
118 self.waitFlashBusy()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
119 self.lockFlash()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
120 def eraseFlash(self):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
121 self.waitFlashBusy()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
122 self.unlockFlashIf()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
123 self.setFlashCrMer()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
124 self.setFlashCrStart()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
125 self.waitFlashBusy()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
126 self.clearFlashCrMer()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
127 self.lockFlash()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
128 def verifyFlash(self, address, content):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
129 device_content = self.readFlash(address, len(content))
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
130 ok = content == device_content
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
131 print('Verify:', ok)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
132 def readFlash(self, address, size):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
133 print('Reading {1} bytes from 0x{0:X}'.format(address, size), end='')
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
134 offset = 0
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
135 tmp_size = 0x1800
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
136 t1 = time.time()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
137 image = bytes()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
138 while offset < size:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
139 # Correct for last page:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
140 if offset + tmp_size > size:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
141 tmp_size = size - offset
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
142
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
143 # align size to 4 bytes:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
144 aligned_size = tmp_size
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
145 while aligned_size % 4 != 0:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
146 aligned_size += 1
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
147
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
148 mem = self.iface.read_mem32(address + offset, aligned_size)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
149 image += mem[:tmp_size]
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
150
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
151 # indicate progress:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
152 print('.', end='', flush=True)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
153
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
154 # increase for next piece:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
155 offset += tmp_size
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
156 t2 = time.time()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
157 assert size == len(image)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
158 print('Done!')
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
159 print('Speed: {0} bytes/second'.format(size/(t2-t1)))
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
160 return image
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
161
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
162 def waitFlashBusy(self):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
163 """ block until flash operation completes. """
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
164 while self.isFlashBusy():
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
165 pass
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
166 def isFlashLocked(self):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
167 cr = self.readFlashCr()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
168 mask = 1 << FLASH_F4_CR_LOCK
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
169 return cr & mask == mask
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
170 def unlockFlashIf(self):
130
654093a9a1e3 Added icons, improved device explorer
Windel Bouwman
parents: 129
diff changeset
171 FLASH_KEY1, FLASH_KEY2 = 0x45670123, 0xcdef89ab
128
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
172 if self.isFlashLocked():
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
173 self.iface.write_debug32(FLASH_F4_KEYR, FLASH_KEY1)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
174 self.iface.write_debug32(FLASH_F4_KEYR, FLASH_KEY2)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
175 if self.isFlashLocked():
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
176 raise STLinkException('Failed to unlock')
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
177 def lockFlash(self):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
178 x = self.readFlashCr() | (1 << FLASH_F4_CR_LOCK)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
179 self.writeFlashCr(x)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
180 def readFlashSr(self):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
181 return self.iface.read_debug32(FLASH_F4_SR)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
182 def readFlashCr(self):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
183 return self.iface.read_debug32(FLASH_F4_CR)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
184 def writeFlashCr(self, x):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
185 self.iface.write_debug32(FLASH_F4_CR, x)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
186 def writeFlashCrSnb(self, sector):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
187 x = self.readFlashCr()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
188 x &= ~FLASH_F4_CR_SNB_MASK
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
189 x |= sector << FLASH_F4_CR_SNB
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
190 x |= 1 << FLASH_F4_CR_SER
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
191 self.writeFlashCr(x)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
192 def setFlashCrMer(self):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
193 x = self.readFlashCr()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
194 x |= 1 << FLASH_CR_MER
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
195 self.writeFlashCr(x)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
196 def setFlashCrPg(self):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
197 x = self.readFlashCr()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
198 x |= 1 << FLASH_CR_PG
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
199 self.writeFlashCr(x)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
200 def writeFlashCrPsiz(self, n):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
201 x = self.readFlashCr()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
202 x &= (0x3 << 8)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
203 x |= n << 8
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
204 self.writeFlashCr(x)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
205 def clearFlashCrMer(self):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
206 x = self.readFlashCr()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
207 x &= ~(1 << FLASH_CR_MER)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
208 self.writeFlashCr(x)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
209 def setFlashCrStart(self):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
210 x = self.readFlashCr()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
211 x |= 1 << FLASH_F4_CR_START
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
212 self.writeFlashCr(x)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
213 def isFlashBusy(self):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
214 mask = 1 << FLASH_F4_SR_BSY
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
215 sr = self.readFlashSr()
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
216 # Check for error bits:
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
217 errorbits = {}
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
218 errorbits[7] = 'Programming sequence error'
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
219 errorbits[6] = 'Programming parallelism error'
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
220 errorbits[5] = 'Programming alignment error'
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
221 errorbits[4] = 'Write protection error'
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
222 errorbits[1] = 'Operation error'
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
223 #errorbits[0] = 'End of operation'
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
224 for bit, msg in errorbits.items():
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
225 if sr & (1 << bit) == (1 << bit):
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
226 raise STLinkException(msg)
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
227 return sr & mask == mask
51cc127648e4 Splitup in interface and device
Windel Bouwman
parents:
diff changeset
228
131
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
229 @registerDevice(0x10016413)
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
230 class Stm32F40x(Stm32F4):
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
231 """ STM32F40x and STM32F41x device series """
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
232 def __init__(self, iface):
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
233 super().__init__(iface)
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
234 # Assert the proper size for this device:
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
235 assert self.FlashSize == 0x100000
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
236 """
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
237 from 0x8000000 to 0x80FFFFF
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
238 4 sectors of 0x4000 (16 kB)
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
239 1 sector of 0x10000 (64 kB)
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
240 7 of 0x20000 (128 kB)
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
241 """
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
242 self.sectorsizes = [0x4000] * 4 + [0x10000] + [0x20000] * 7
04e45faafd1d Added register view
Windel Bouwman
parents: 130
diff changeset
243