-
Notifications
You must be signed in to change notification settings - Fork 1
/
eeprom.c
623 lines (532 loc) · 14.6 KB
/
eeprom.c
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
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
/*
* eeprom.c
*
* Created on: 12.07.2012
*****************************************************************************
* MCmega - Firmware for the Motorola MC micro radio
* to use it as an Amateur-Radio transceiver
*
* Copyright (C) 2013 Felix Erckenbrecht, DG1YFE
*
* ( AVR port of "MC70"
* Copyright (C) 2004 - 2013 Felix Erckenbrecht, DG1YFE)
*
* This file is part of MCmega.
*
* MCmega is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* MCmega is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MCmega. If not, see <http://www.gnu.org/licenses/>.
*
****************************************************************************
*/
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <avr/io.h>
#include <avr/eeprom.h>
#include <util/crc16.h>
#include <alloca.h>
#include "regmem.h"
#include "FreeRTOS.h"
#include "task.h"
#include "semphr.h"
#include "io.h"
#include "display.h"
#include "macros.h"
#include "regmem.h"
#include "firmware.h"
char eep_read(char flags, char * data);
/*
;***************************
; E E P R A N D R E A D
;***************************
;
; Liest ein beliebiges Byte aus dem gew�hlten EEPROM
;
;
; Parameter: B - Datenadresse im EEPROM (Byte Adresse)
; A - NoSTOP-Flag(MSB), Device&Page Adresse (3 Bit, LSB)
; Wenn das MSB gesetzt ist, wird KEINE STOP Condition
; generiert.
;
; Ergebnis : B - gelesenes Byte
; A - Status: 0 - OK
; 1 - Kein ACK nach Device/Pageadresse (kein EEPROM mit der Adresse vorhanden?)
; 2 - Kein ACK nach Byteadresse
; 3 - Kein ACK nach Device/Pageadresse in "eep_current_read"
;
;
; changed Regs : A,B
;
*
*/
char eep_rand_read(unsigned int address, char * data)
{
char buf;
char err;
xSemaphoreTakeRecursive(SerialBusMutex, portMAX_DELAY);
tasksw_en++;
i2c_start();
buf = (address >> 7) & 0xe;
buf |= 0xa0;
i2c_tx(buf);
if((err=i2c_tstack()))
return 1;
i2c_tx( (char) address);
if((err=i2c_tstack()))
return 2;
buf = (address >> 8);
buf |= 0x80; // No stop flag
err=eep_read(buf, data);
if(err)
return err;
if(!(address & 0x8000))
i2c_stop();
err = 0;
tasksw_en--;
xSemaphoreGiveRecursive(SerialBusMutex);
return 0;
}
/*
;*****************
; E E P R E A D
;*****************
;
; Liest das Byte an der aktuellen Adresse im gew�hlten EEPROM mittels "current address read"
;
;
; Parameter: A - NoSTOP-Flag(MSB), Device&Page Adresse (3 Bit, LSB)
; Wenn das MSB gesetzt ist, wird KEINE STOP Condition
; generiert.
;
; Ergebnis : B - gelesenes Byte
; A - Status: 0 - OK
; 3 - Kein ACK nach Device/Pageadresse
;
*/
char eep_read(char flags, char * data)
{
char buf;
xSemaphoreTakeRecursive(SerialBusMutex, portMAX_DELAY);
tasksw_en++;
// Start I2C comm
i2c_start();
// shift device/page address, include read bit and 0101 nibble
buf = flags<<1;
buf &= 0xe;
buf |= 0xa1;
i2c_tx(buf);
if(i2c_tstack())
return 3;
// read byte from I2C
*data = i2c_rx();
if(!(flags & 0x80))
i2c_stop(); // Send I2C stop, if flag was not set
xSemaphoreGiveRecursive(SerialBusMutex);
tasksw_en--;
return 0;
}
/*
*
;******************************
; E E P S E Q R E A D
;******************************
;
; Transferiert einen Block vorgegebener Gr��e aus dem/den EEPROM(s) ins RAM,
; dabei wird innerhalb einer Page mittels "sequential read" gelesen, was einen
; Geschwindigkeitsvorteil gegen�ber Random Read bringt, da Device- ,Page- und Startadresse
; nur einmal pro Page transferiert werden m�ssen.
;
; EEP SEQ READ funktioniert device�bergreifend: Mehrere EEPROMs werden als ein Speicherblock
; betrachtet, solange ihre Deviceadressen entsprechend gesetzt sind.
;
;
; Parameter: A - Device&Page Adresse (3 Bit)
; B - Startadresse
; X - Bytecount
; STACK - Zieladresse (im RAM)
;
; Ergebnis : A - Status: 0 - OK
; 1 - Kein ACK nach Device/Pageadresse
; (kein EEPROM mit der Adresse vorhanden?)
; 2 - Kein ACK nach Byteadresse
; 3 - Kein ACK nach Device/Pageadresse in "eep_current_read"
;
; X - Zahl der tats�chlich gelesenen Bytes
;
*
*/
char eep_seq_read(unsigned int address, unsigned int bytecount,
void * dest, unsigned int * bytesread)
{
char buf;
char err;
xSemaphoreTakeRecursive(SerialBusMutex, portMAX_DELAY);
tasksw_en++;
if(bytesread)
*bytesread = 0;
err = 0;
while(!err && bytecount)
{
// begin with random read to set address
if((err=eep_rand_read(address | 0x8000, (char *) dest)))
return err;
// increase destination address, and decrease bytecount
dest++;
bytecount--;
if(bytesread)
(*bytesread)++;
// while there are bytes to copy
while(bytecount)
{
// check if address reached a page or device boundary
if(!(++address & 0xff))
{ // send I2C stop on page boundary, continue with random read
break;
}
else
{ // send ack
i2c_ack();
// read next byte using sequential read
buf = i2c_rx();
*((char *)dest++) = buf;
bytecount--;
if(bytesread)
(*bytesread)++;
}
}
i2c_stop();
}
xSemaphoreGiveRecursive(SerialBusMutex);
tasksw_en--;
return 0;
}
/*
;*****************************
; E E P W R I T E
;*****************************
;
; Parameter: B - zu schreibendes Byte
;
; STACK (1 / 6) - Datenadresse im EEPROM (Byte Adresse)
; STACK (0 / 5) - Device&Page Adresse (3 Bit, LSB)
;
; Ergebnis : A - Status: 0 - OK
; 1 - Kein ACK nach Device/Pageadresse
; (kein EEPROM mit der Adresse vorhanden?)
; 2 - Kein ACK nach Byteadresse
; 3 - Kein ACK nach Datenbyte
; 4 - Timeout beim ACK Polling nach Schreibvorgang
*/
char eep_write(unsigned int address, char * data)
{
char buf;
char err;
xSemaphoreTakeRecursive(SerialBusMutex, portMAX_DELAY);
tasksw_en++;
i2c_start();
buf = ((address >> 7) & 0xae) | 0xa0;
i2c_tx(buf);
if((err=i2c_tstack()))
return 1;
buf = (uint8_t) address;
i2c_tx(buf);
if((err=i2c_tstack()))
return 2;
i2c_tx(*data);
if((err=i2c_tstack()))
return 3;
i2c_stop();
// wait at max 21 ms for write to finish (PCD8572 specifies 20 ms for 1 Byte write)
ui_timer=21;
err=1;
while(ui_timer && err)
{
i2c_start();
buf = ((address >> 7) & 0xae) | 0xa0;
i2c_tx(buf);
// check for ACK (ACK = write finished)
err=i2c_tstack();
}
if(err)
err = 4;
i2c_stop();
tasksw_en--;
xSemaphoreGiveRecursive(SerialBusMutex);
return err;
}
/*
*
;***************************
; E E P W R I T E S E Q
;***************************
;
; Mehrere Bytes hintereinander schreiben (maximal 256)
;
; Parameter: STACK(4)(9) - Datenadresse im Speicher
; STACK(3)(8) - Datenadresse im EEPROM (Byte Adresse)
; STACK(2)(7) - Device&Page Adresse (3 Bit, LSB)
; STACK(0)(5) - Bytecount
;
; Ergebnis : A - Status: 0 - OK
; 1 - Kein ACK nach Device/Pageadresse
; (kein EEPROM mit der Adresse vorhanden?)
; 2 - Kein ACK nach Byteadresse
; 3 - Kein ACK nach Datenbyte
; 4 - Timeout beim ACK Polling nach Schreibvorgang
;
;
*
*/
char eep_write_seq(unsigned int address, char bytecount, void * data)
{
char err;
xSemaphoreTakeRecursive(SerialBusMutex, portMAX_DELAY);
tasksw_en++;
err=0;
while(bytecount-- && !(err))
{
err = eep_write(address++, data++);
}
tasksw_en--;
xSemaphoreGiveRecursive(SerialBusMutex);
return err;
}
unsigned int eep_get_size()
{
unsigned int addr;
char dummy;
addr = 0;
do
{
if(eep_rand_read(addr, &dummy))
break;
addr += 0x80;
}while(addr < 0x0800);
return addr;
}
char eep_chk_crc()
{
return 0;
}
char eep_write_crc()
{
return 0;
}
char eep_rd_ch_freq(uint8_t slot, unsigned long * f)
{
void * buf;
long fbuf;
uint16_t eep_address;
buf = alloca((size_t)3);
if(slot > 24)
return -1;
eep_address = (uint16_t) slot * 10;
eep_address += 0x100;
eeprom_read_block(buf,(void *) eep_address, 3);
// get channel
fbuf = *((uint16_t *) buf);
fbuf >>=3; // 13 significant Bits
fbuf *= 1250; // multiply by 1250 to obtain frequency
fbuf += FBASE; // add Base frequency
*f = fbuf;
return 0;
}
uint8_t eep_rd_memch(uint8_t slot, uint32_t * f, uint32_t * offset, uint8_t * flags)
{
long fbuf;
uint16_t eep_address;
void * buf;
buf = alloca((size_t)3);
if(slot > 24)
return -1;
eep_address = (uint16_t) slot * 10;
eep_address += 0x100;
eeprom_read_block((void *)buf,(void *) eep_address, 3);
// get channel
if(f)
{
fbuf = *((uint16_t *) buf);
fbuf >>=3; // 13 significant Bits
fbuf *= 1250; // multiply by 1250 to obtain frequency
fbuf += FBASE; // add Base frequency
*f = fbuf;
}
if(offset)
{
buf++;
fbuf = *((uint16_t *) buf);
fbuf >>=5;
fbuf *= 25000;
}
return 0;
}
void eep_enable(uint8_t enable)
{
if(enable)
{
PORT_EEP_DISABLE &= ~BIT_EEP_DISABLE;
}
else
{
PORT_EEP_DISABLE |= BIT_EEP_DISABLE;
}
}
/*
;***********************
; E E P C H K C R C *BROKEN*
;***********************
;
; Bildet CRC �ber den Config Bereich
;
; Parameter: keine
;
; Ergebnis : A - Read Status : 0 = OK
; 1 = CRC Error
; >8 = Lesefehler:
;
;
;
;
; X - CRC
;
; changed Regs : A, X
;
eep_chk_crc
pshb
tsx
xgdx
; subd #EP_CONF_MEM ; Platz f�r Config auf dem Stack schaffen
xgdx
txs
ldx #0 ;
pshx ; CRC auf 0 initialisieren
xgdx ; Start im EEPROM bei Adresse 0 (EEPROM Adresse in A:B)
tsx
xgdx
; subd #EP_CONF_MEM
xgdx
txs ; 52 Byte auf dem Stack reservieren
pshx ; Adresse auf Stack
; ldx #EP_CONF_MEM ; 52 Byte lesen (nur den Config Bereich + CRC)
jsr eep_seq_read ; Block lesen
ins
ins ; Adresse vom Stack l�schen
; cpx #EP_CONF_MEM ; komplette Config gelesen ?
bne ecc_read_err ; Nein? Dann Fehler
xgdx ; Bytecount nach D
tsx ; Startadresse im RAM
pshb ;
ldab #2 ; f�r CRC Calc
abx ; berechnen (Daten liegen auf Stack)
pulb ; B wiederholen (Bytecount/LoByte)
; Auf Stack liegt CRC Init Wert bzw.
jsr crc16 ; CRC �ber den Block berechnen
xgdx ; CRC nach X
cpx #0 ; CRC =0?
bne ecc_crc_err ; Nein? Dann CRC Error
clra ; kein Lese Fehler aufgetreten
ecc_end
tsx
xgdx
; addd #EP_CONF_MEM+2; Stack bereinigen
xgdx
txs
pulb ; B wiederherstellen
rts
ecc_read_err
oraa #8 ; Lesefehler
bra ecc_end
ecc_crc_err
ldaa #1
bra ecc_end
;***************************
; E E P W R I T E C R C *BROKEN*
;***************************
;
; CRC16 �ber Config Block bilden und schreiben
;
; Parameter: keine
;
; Ergebnis : X - CRC
; : A - Read Status : 0 = OK
; >= 8 = Read-Error
; >=16 = Write-Error
;
eep_write_crc
pshb
psha
pshx
tsx
xgdx
subd #50 ; 50 Byte Platz auf dem Stack schaffen
xgdx
txs
ldx #0 ;
pshx ; CRC auf 0 initialisieren
xgdx ; Start im EEPROM bei Adresse 0 (EEPROM Adresse in A:B)
ewc_loop
pshb ; Daten aus EEPROM sollen auf
tsx ;
xgdx
subd
ldab #4 ; den Stack gelegt werden,
abx ; dazu die Adresse berechnen
pulb
pshx ; Bytecount auf Stack
ldx #50 ; 50 Byte lesen (nur den Config Bereich)
jsr eep_seq_read ; Block lesen
ins
ins ; Bytecount vom Stack l�schen
cpx #50 ; 50 Bytes gelesen ?
bne ewc_read_err ; Nein? Dann Fehler
xgdx ; Bytecount nach D
tsx ; Startadresse im RAM
pshb ;
ldab #2 ; f�r CRC Calc
abx ; berechnen (Daten liegen auf Stack)
pulb ; B wiederholen (Bytecount/LoByte)
; Auf Stack liegt CRC Init Wert
jsr crc16 ; CRC �ber den Block berechnen
; CRC liegt auf Stack, zuerst LoByte ins EEPROM schreiben
pulb
ldx #50
pshx
jsr eep_write ; Byte schreiben
pulx
tsta
bne ewc_write_err ; Schreibfehler
pulb
ldx #51
pshx
jsr eep_write ; Byte schreiben
pulx
tsta
bne ewc_write_err ; Schreibfehler
ewc_end
tsx
xgdx
addd #51 ; Stack bereinigen
xgdx
txs
pula
pulb
pulx
rts
ewc_read_err
oraa #$8
bra ewc_end
ewc_write_err
oraa #$10
bra ewc_end
*/