annotate python/stm32.py @ 217:8b2e5f3cd579

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