summaryrefslogtreecommitdiffstats
path: root/main/dont_set_time_if_no_debugger.patch
blob: f38a49a2d1f4ca0910f3835b3512a9c09a53c02d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
diff --git a/make.mk b/make.mk
index 5610c1f..3cc2d6f 100644
--- a/make.mk
+++ b/make.mk
@@ -124,6 +124,7 @@ SRCS += \
   $(TOP)/watch-library/hardware/watch/watch_deepsleep.c \
   $(TOP)/watch-library/hardware/watch/watch_private.c \
   $(TOP)/watch-library/hardware/watch/watch_private_cdc.c \
+  $(TOP)/watch-library/hardware/watch/m0FaultDispatch.c \
   $(TOP)/watch-library/hardware/watch/watch.c \
   $(TOP)/watch-library/hardware/hal/src/hal_atomic.c \
   $(TOP)/watch-library/hardware/hal/src/hal_delay.c \
diff --git a/movement/set_time.c b/movement/set_time.c
index 27cea25..0cea3d8 100644
--- a/movement/set_time.c
+++ b/movement/set_time.c
@@ -7,11 +7,27 @@
 #include "watch.h"
 #include "movement.h"
 #include "watch_utility.h"
+#include "m0FaultDispatch.h"
 
 #define SYS_TIME		0x11
 
 extern movement_state_t movement_state;
 
+void
+faultHandlerWithExcFrame (struct CortexExcFrame *exc, uint32_t reason,
+                          uint32_t addr, struct CortexPushedRegs *hiRegs)
+{
+
+    if (reason == EXC_m0_CAUSE_BKPT_HIT)
+      {
+          exc->pc += 4;
+          exc->r0_r3[0] = 0;
+          return;
+      }
+
+    while (1);
+}
+
 static inline int32_t
 get_tz_offset (movement_settings_t * settings)
 {
@@ -32,6 +48,9 @@ void __attribute__((used)) set_time (void)
 
     t = sys_time ();
 
+    if (!t)
+        return;
+
     watch_date_time wdt = watch_utility_date_time_from_unix_time (t,
                                                                   get_tz_offset
                                                                   (&movement_state.
diff --git a/watch-library/hardware/watch/m0FaultDispatch.c b/watch-library/hardware/watch/m0FaultDispatch.c
new file mode 100644
index 0000000..da00b73
--- /dev/null
+++ b/watch-library/hardware/watch/m0FaultDispatch.c
@@ -0,0 +1,460 @@
+#include "m0FaultDispatch.h"
+#include <stdbool.h>
+
+#define STR2(x)			#x
+#define STR(x)			STR2(x)
+
+
+
+static uint32_t analyzeInstr16PrvUtilGetReg(const struct CortexExcFrame* frm, struct CortexPushedRegs *moreRegs, uint32_t regNo)
+{
+	switch (regNo) {
+		case 0:		return frm->r0;
+		case 1:		return frm->r1;
+		case 2:		return frm->r2;
+		case 3:		return frm->r3;
+		case 4:		//fallthrough
+		case 5:		//fallthrough
+		case 6:		//fallthrough
+		case 7:		return moreRegs->regs4_7[regNo - 4];
+		case 8:		//fallthrough
+		case 9:		//fallthrough
+		case 10:	//fallthrough
+		case 11:	return moreRegs->regs8_11[regNo - 8];
+		case 12:	return frm->r12;
+		case 13:	return (uintptr_t)(frm + 1);
+		case 14:	return frm->lr;
+		case 15:	return frm->pc + 4;
+		default:	return 0xffffffff;
+	}
+}
+
+static bool load8(uint32_t addr, uint32_t *dstP)
+{
+	uint32_t tmp;
+	bool ret;
+	
+	asm volatile(
+		"	mov		%0, #1		\n\t"	//special formulation for our fault handler
+		"	ldrb	%1, [%2]	\n\t"
+		"	b		1f			\n\t"
+		"	mov		%0, #0		\n\t"
+		"1:						\n\t"
+		"	str		%1, [%3]	\n\t"
+	:"=&l"(ret), "=&l"(tmp)
+	:"l"(addr), "l"(dstP)
+	:"cc", "memory");
+	
+	return ret;
+}
+
+static bool store8(uint32_t addr, uint32_t val)
+{
+	bool ret;
+	
+	asm volatile(
+		"	mov		%0, #1		\n\t"	//special formulation for our fault handler
+		"	strb	%2, [%1]	\n\t"
+		"	b		1f			\n\t"
+		"	mov		%0, #0		\n\t"
+		"1:						\n\t"
+	:"=&l"(ret)
+	:"l"(addr), "l"(val)
+	:"cc", "memory");
+	
+	return ret;
+}
+
+static bool load16(uint32_t addr, uint32_t *dstP)
+{
+	uint32_t tmp;
+	bool ret;
+	
+	asm volatile(
+		"	mov		%0, #1		\n\t"	//special formulation for our fault handler
+		"	ldrh	%1, [%2]	\n\t"
+		"	b		1f			\n\t"
+		"	mov		%0, #0		\n\t"
+		"1:						\n\t"
+		"	str		%1, [%3]	\n\t"
+	:"=&l"(ret), "=&l"(tmp)
+	:"l"(addr), "l"(dstP)
+	:"cc", "memory");
+	
+	return ret;
+}
+
+static bool store16(uint32_t addr, uint32_t val)
+{
+	bool ret;
+	
+	asm volatile(
+		"	mov		%0, #1		\n\t"	//special formulation for our fault handler
+		"	strh	%2, [%1]	\n\t"
+		"	b		1f			\n\t"
+		"	mov		%0, #0		\n\t"
+		"1:						\n\t"
+	:"=&l"(ret)
+	:"l"(addr), "l"(val)
+	:"cc", "memory");
+	
+	return ret;
+}
+
+static bool load32(uint32_t addr, uint32_t *dstP)
+{
+	uint32_t tmp;
+	bool ret;
+	
+	asm volatile(
+		"	mov		%0, #1		\n\t"	//special formulation for our fault handler
+		"	ldr		%1, [%2]	\n\t"
+		"	b		1f			\n\t"
+		"	mov		%0, #0		\n\t"
+		"1:						\n\t"
+		"	str		%1, [%3]	\n\t"
+	:"=&l"(ret), "=&l"(tmp)
+	:"l"(addr), "l"(dstP)
+	:"cc", "memory");
+	
+	return ret;
+}
+
+static bool store32(uint32_t addr, uint32_t val)
+{
+	bool ret;
+	
+	asm volatile(
+		"	mov		%0, #1		\n\t"	//special formulation for our fault handler
+		"	str		%2, [%1]	\n\t"
+		"	b		1f			\n\t"
+		"	mov		%0, #0		\n\t"
+		"1:						\n\t"
+	:"=&l"(ret)
+	:"l"(addr), "l"(val)
+	:"cc", "memory");
+	
+	return ret;
+}
+
+//we also get a pointer to the hiregs since we need to reset them before we call faultHandlerWithExcFrame()
+// we get them in pushedRegs
+void __attribute__((used)) analyzeInstr16(struct CortexExcFrame* frm, uint16_t instr, struct CortexPushedRegs *pushedRegs)
+{
+	static const uint8_t popCntTab[] = {0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4};	//in a nibble
+	static bool (*const accessR[])(uint32_t addr, uint32_t *dstP) = {load8, load16, load32};
+	static bool (*const accessW[])(uint32_t addr, uint32_t val) = {store8, store16, store32};
+	uint_fast8_t excCause = EXC_m0_CAUSE_UNCLASSIFIABLE, accessSzLog = 0;
+	uint32_t addr, val, excExtraData = 0, ofst = 0, base = 0, i;
+	bool testStore = false;
+	
+	switch (instr >> 11) {
+		case 0b01000:
+			if ((instr & 0x05c0) == 0x0500)			//cmp.hi with both lo regs
+				excCause = EXC_m0_CAUSE_UNDEFINSTR16;
+			if ((instr >> 8) == 0x47) {				//BX or BLX
+				
+				if (instr & 7)						//SBZ bits not Z
+					excCause = EXC_m0_CAUSE_UNDEFINSTR16;
+				else if ((instr & 0x78) == 0x78)	//PC
+					excCause = EXC_m0_CAUSE_UNDEFINSTR16;
+			}
+			break;
+		
+		case 0b01001:	//load from literal pool (alignment guaranteed by instr)
+			addr = ((frm->pc + 4) &~ 3) + ((instr & 0xff) << 2);
+			if (!load32(addr, &val)) {
+				
+				excCause = EXC_m0_CAUSE_MEM_READ_ACCESS_FAIL;
+				excExtraData = addr;
+			}
+			break;
+		
+		case 0b01010:	//load/store register
+		case 0b01011:
+			switch ((instr >> 9) & 0x07) {
+				case 0b000:		//STR
+					testStore = true;
+					//fallthrough
+				case 0b100:		//LDR
+					accessSzLog = 2;
+					break;
+				case 0b001:		//STRH
+					testStore = true;
+					//fallthrough
+				case 0b101:		//LDRH
+				case 0b111:		//LDRSH
+					accessSzLog = 1;
+					break;
+				case 0b010:		//STRB
+					testStore = true;
+					//fallthrough
+				case 0b110:		//LDRB
+				case 0b011:		//LDRSB
+					accessSzLog = 0;
+					break;
+			}
+			ofst = analyzeInstr16PrvUtilGetReg(frm, pushedRegs, (instr >> 6) & 0x07);
+			goto load_store_check;
+			
+		case 0b01100:	//str imm
+			testStore = true;
+			//fallthrough
+		case 0b01101:	//ldr imm
+			accessSzLog = 2;
+			goto load_store_check_get_imm;
+
+		case 0b01110:	//strb imm
+			testStore = true;
+			//fallthrough
+		case 0b01111:	//ldrb imm
+			accessSzLog = 0;
+			goto load_store_check_get_imm;
+
+		case 0b10000:	//strh imm
+			testStore = true;
+			//fallthrough
+		
+		case 0b10001:	//ldrh imm
+			accessSzLog = 1;
+			goto load_store_check_get_imm;
+		
+load_store_check_get_imm:
+			ofst = ((instr >> 6) & 0x1f) << accessSzLog;
+
+load_store_check:
+			base = analyzeInstr16PrvUtilGetReg(frm, pushedRegs, (instr >> 3) & 0x07);
+
+load_store_check_have_base:
+			addr = base + ofst;
+			
+			if (addr << (32 - accessSzLog)) {
+				
+				excCause = EXC_m0_CAUSE_DATA_UNALIGNED;
+				excExtraData = addr;
+			}
+			else if (!accessR[accessSzLog](addr, &val)) {
+				
+				excCause = EXC_m0_CAUSE_MEM_READ_ACCESS_FAIL;
+				excExtraData = addr;
+			}
+			else if (testStore && !accessW[accessSzLog](addr, val)) {
+				
+				excCause = EXC_m0_CAUSE_MEM_WRITE_ACCESS_FAIL;
+				excExtraData = addr;
+			}
+			//if we have not faulted by now, we do not know why this load/store faulted
+			break;
+		
+		case 0b10010:	//sp-based store
+			testStore = true;
+			//fallthrough
+		
+		case 0b10011:	//sp-based load
+			ofst = (instr & 0xff) * 4;
+			accessSzLog = 3;
+			base = analyzeInstr16PrvUtilGetReg(frm, pushedRegs, 13);
+			goto load_store_check_have_base;
+		
+		case 0b10111:
+			if ((instr & 0x0700) == 0x0600)
+				excCause = EXC_m0_CAUSE_BKPT_HIT;
+			//push/pop are here too, but if they fail, we'd fail to stash and not ever get here
+			break;
+		
+		case 0b11000:	//STMIA
+			testStore = true;
+			//fallthrough
+		case 0b11001:	//LDMIA
+			base = analyzeInstr16PrvUtilGetReg(frm, pushedRegs, (instr >> 8) & 0x07);
+			if (base & 3) {							//unaligned base
+				excExtraData = base;
+				excCause = EXC_m0_CAUSE_DATA_UNALIGNED;
+			}
+			else if (!(instr & 0xff))				//LDM/STM with empty reg set
+				excCause = EXC_m0_CAUSE_UNDEFINSTR16;
+			else {
+				i = popCntTab[instr & 0x0f] + popCntTab[(instr >> 4) & 0x0f];
+				
+				do {
+					
+					addr = base;
+					base += 4;
+					
+					if (!load32(addr, &val)) {
+						
+						excCause = EXC_m0_CAUSE_MEM_READ_ACCESS_FAIL;
+						excExtraData = addr;
+					}
+					else if (testStore && !store32(addr, val)) {
+						
+						excCause = EXC_m0_CAUSE_MEM_WRITE_ACCESS_FAIL;
+						excExtraData = addr;
+					}
+					else
+						continue;
+					
+					break;	//one fault found is enough
+					
+				} while (--i);
+				//if we have not faulted by now, we do not know why this ldm/stm faulted
+			}
+			break;
+		
+		case 0b11011:
+			if ((instr & 0x0700) == 0x0600)			//UDF
+				excCause = EXC_m0_CAUSE_UNDEFINSTR16;
+			break;
+	}
+	
+	faultHandlerWithExcFrame(frm, excCause, excExtraData, pushedRegs);
+}
+
+void __attribute__((used,naked)) iHardFault_Handler(void)
+{
+	asm volatile(
+		
+		//grab the appropriate SP
+		"	mov   r0, lr										\n\t"
+		"	lsr   r0, #3										\n\t"
+		"	bcs   1f											\n\t"
+		"	mrs   r0, msp										\n\t"
+		"	b     2f											\n\t"
+		"1:														\n\t"
+		"	mrs   r0, psp										\n\t"
+		"2:														\n\t"
+		
+		//check for ARM mode
+		"	ldr   r1, [r0, #4 * 7]								\n\t"	//load pushed flags
+		"	mov   r3, #1										\n\t"
+		"	lsl   r3, #24										\n\t"	//T flag
+		"	tst   r1, r3										\n\t"	//check for T bit
+		"	bne   not_arm_mode									\n\t"	//if it is set, further testing to be done here
+		"is_arm_mode:											\n\t"
+		"	movs  r1, #" STR(EXC_m0_CAUSE_BAD_CPU_MODE) "		\n\t"
+		"	b     call_handler_no_pushed_regs					\n\t"
+		
+		//check if re-entry
+		"not_arm_mode:											\n\t"
+		"	ldr   r2, [r0, #4 * 7]								\n\t"
+		"	lsl   r2, #32 - 6									\n\t"
+		"	lsr   r2, #32 - 6									\n\t"
+		"	cmp   r2, #4										\n\t"
+		"	bne   not_reentry									\n\t"
+		
+		//is re-entry from our own code only (should only be memory access issues)
+		//our memory accesses are crafted specially and we detect that
+		//we also assume here that Pc in our exclusive mode is valid
+		"	ldr   r3, [r0, #4 * 6]								\n\t"	//exc.PC
+		"	ldrh  r1, [r3, #2]									\n\t"	//should be a "B . +4" = 0xe000
+		"	mov   r2, #0xe0										\n\t"
+		"   lsl   r2, #8										\n\t"
+		"	cmp   r1, r2										\n\t"
+		"	bne   bug_in_classifier								\n\t"
+		"	ldrh  r2, [r3, #4]									\n\t"	//should be a "MOV R?, #??" = 0x46f6
+		"	lsr   r2, #11										\n\t"
+		"	cmp   r2, #0x04										\n\t"
+		"	bne   bug_in_classifier								\n\t"
+		
+		//re-entry from our own code - skip the load/store and the next instruction
+		"	add   r3, #4										\n\t"
+		"	str   r3, [r0, #4 * 6]								\n\t"	//exc.PC
+		"	bx    lr											\n\t"
+		
+		//re-entry from our code but not a specially-instrumented load/store instr
+		"bug_in_classifier:										\n\t"
+		"	mov   r1, #" STR(EXC_m0_CAUSE_CLASSIFIER_ERROR) "	\n\t"
+		"	b     call_handler_no_pushed_regs					\n\t"
+		
+		"access_fail_plus_4:									\n\t"
+		"	add   r2, #2										\n\t"
+		"access_fail_plus_2:									\n\t"
+		"	add   r2, #2										\n\t"
+		"access_fail:											\n\t"	//expects address in r2
+		"	mov   r1, #" STR(EXC_m0_CAUSE_MEM_READ_ACCESS_FAIL) "\n\t"
+		"call_handler_no_pushed_regs:							\n\t"
+		"	push  {r4-r7, lr}									\n\t"
+		"	mov   r4, r8										\n\t"
+		"	mov   r5, r9										\n\t"
+		"	mov   r6, r10										\n\t"
+		"	mov   r7, r11										\n\t"
+		"	push  {r4-r7}										\n\t"
+		"	mov   r3, sp										\n\t"
+		"	bl    faultHandlerWithExcFrame						\n\t"
+		"	pop   {r4-r7}										\n\t"
+		"	mov   r8, r4										\n\t"
+		"	mov   r9, r5										\n\t"
+		"	mov   r10, r6										\n\t"
+		"	mov   r11, r7										\n\t"
+		"	pop   {r4-r7, pc}									\n\t"
+		
+		//not re-entry, r3 still has T bit
+		"not_reentry:											\n\t"
+		//further checks will take place in another context - go there now
+		"	ldr   r2, [r0, #4 * 6]								\n\t"	//exc.PC
+		"   adr   r1, check_more_in_custom_mode					\n\t"	//stashed PC
+		"	add   r3, r3, #4									\n\t"	//desired SR
+		"	push  {r1, r3}										\n\t"
+		"	mov   r1, r12										\n\t"	//stashed r12
+		"	push  {r1, lr}										\n\t"	//and stashed lr
+		"	push  {r0-r3}										\n\t"	//stashed r0..r3
+		"	mov   r2, #0x0e										\n\t"
+		"	mvn   r2, r2										\n\t"	//get an lr to go to (handler mode, main stack) -> 0xfffffff1
+		"	bx    r2											\n\t"
+		
+		//check more in a safer space (r0 = exc; r2 = exc->pc; lr & sp set for direct return to original exc cause)
+		
+		".balign 4												\n\t"
+		"check_more_in_custom_mode:								\n\t"
+		"	cmp   r0, r0										\n\t"	//set Z
+		"	ldrh  r1, [r2]										\n\t"	//load instr, on failure, branch is skipped too
+		"	b     1f											\n\t"
+		"	mov   r1, #1										\n\t"	//clear Z. only executed on access failure
+		"1:														\n\t"	//Z flag is clear on failure, due to the mov above, which is skipped on a succesful read
+		"	bne   access_fail									\n\t"
+		"	lsr   r3, r1, #11									\n\t"
+		"	cmp   r3, #0x1C										\n\t"
+		"	bls   instr_is_16bits_long							\n\t"
+		
+		//let's read the second half of a 32-bit instr
+		"instr_is_32_bits_long:									\n\t"
+		"	mov   r12, r2										\n\t"	//save exc.pc
+		"	cmp   r0, r0										\n\t"	//set Z
+		"	ldrh  r2, [r2, #2]									\n\t"	//load instr part 2, on failure, branch is skipped too
+		"	b     1f											\n\t"
+		"	mov   r1, #1										\n\t"	//clear Z. only executed on access failure
+		"1:														\n\t"	//Z flag is clear on failure, due to the mov above, which is skipped on a succesful read
+		"	bne   access_fail_plus_2							\n\t"
+		
+		//32-bit instr. C-M0 has none that are valid AND can cause an exception, so this is definitely an UNDEF INSTR case
+		"	mov   r1, #" STR(EXC_m0_CAUSE_UNDEFINSTR32) "		\n\t"
+		"	b     call_handler_no_pushed_regs					\n\t"
+		
+		//it was a 16 bit instr. instr is in r1, pc is in r2
+		"instr_is_16bits_long:									\n\t"
+		//more triage will be done in C (r0 = excFrame, r1 = instr16, r2 = pc)
+		"	push  {r4-r7, lr}									\n\t"
+		"	mov   r4, r8										\n\t"
+		"	mov   r5, r9										\n\t"
+		"	mov   r6, r10										\n\t"
+		"	mov   r7, r11										\n\t"
+		"	push  {r4-r7}										\n\t"
+		"	mov   r2, sp										\n\t"
+		"	bl    analyzeInstr16								\n\t"
+		"	pop   {r4-r7}										\n\t"
+		"	mov   r8, r4										\n\t"
+		"	mov   r9, r5										\n\t"
+		"	mov   r10, r6										\n\t"
+		"	mov   r11, r7										\n\t"
+		"	pop   {r4-r7, pc}									\n\t"
+		".ltorg													\n\t"
+		:
+		:
+		: "cc", "memory", "r0", "r1", "r2", "r3", "r12" //yes gcc needs this list...
+	);
+}
+
+
+
+
+
diff --git a/watch-library/shared/watch/m0FaultDispatch.h b/watch-library/shared/watch/m0FaultDispatch.h
new file mode 100644
index 0000000..207f5d4
--- /dev/null
+++ b/watch-library/shared/watch/m0FaultDispatch.h
@@ -0,0 +1,38 @@
+#ifndef _M0_FAULT_DISPATCH_
+#define _M0_FAULT_DISPATCH_
+
+#include <stdint.h>
+
+
+#define EXC_m0_CAUSE_MEM_READ_ACCESS_FAIL		1	//address provided
+#define EXC_m0_CAUSE_MEM_WRITE_ACCESS_FAIL		2	//address provided
+#define EXC_m0_CAUSE_BAD_CPU_MODE				3	//arm mode entered
+#define EXC_m0_CAUSE_DATA_UNALIGNED				4	//addres provided
+#define EXC_m0_CAUSE_UNDEFINSTR16				5
+#define EXC_m0_CAUSE_UNDEFINSTR32				6
+#define EXC_m0_CAUSE_BKPT_HIT					7
+#define EXC_m0_CAUSE_CLASSIFIER_ERROR			8	//classifier itself crashed
+#define EXC_m0_CAUSE_UNCLASSIFIABLE				9	//classification failed
+
+struct CortexExcFrame {
+	union {
+		struct {
+			uint32_t r0, r1, r2, r3;
+		};
+		uint32_t r0_r3[3];
+	};
+	uint32_t r12, lr, pc, sr;
+};
+
+struct CortexPushedRegs {	//when we push regs, we push them in this order. here for unification
+	uint32_t regs8_11[4];
+	uint32_t regs4_7[4];
+};
+
+//fault handling code, cause is EXC_m0_CAUSE_, extraData is usually an address. both unused on C-M3
+void faultHandlerWithExcFrame(struct CortexExcFrame *exc, uint32_t cause, uint32_t extraData, struct CortexPushedRegs *pushedRegs);
+
+
+
+
+#endif