more changes to TX test code
[goodfet] / client / GoodFETMCPCANCommunication.py
1 #!/usr/bin/env python
2 # GoodFET SPI Flash Client
3 #
4 # (C) 2012 Travis Goodspeed <travis at radiantmachines.com>
5 #
6 #
7 # Ted's working copy
8 #   1) getting hot reads on frequency
9 #   2) allow sniffing in "normal" mode to get ack bits
10 #       --check if that's whats causing error flags in board-to-board transmission
11 #
12 #
13
14 import sys;
15 import binascii;
16 import array;
17 import csv, time, argparse;
18 import datetime
19 import os
20 from random import randrange
21 from GoodFETMCPCAN import GoodFETMCPCAN;
22 from intelhex import IntelHex;
23
24 class GoodFETMCPCANCommunication:
25     
26     def __init__(self):
27        self.client=GoodFETMCPCAN();
28        self.client.serInit()
29        self.client.MCPsetup();
30        self.DATALOCATION = "../../contrib/ThayerData/"
31        
32
33     
34     def printInfo(self):
35         
36         self.client.MCPreqstatConfiguration();
37         
38         print "MCP2515 Info:\n\n";
39         
40         print "Mode: %s" % self.client.MCPcanstatstr();
41         print "Read Status: %02x" % self.client.MCPreadstatus();
42         print "Rx Status:   %02x" % self.client.MCPrxstatus();
43         print "Error Flags:  %02x" % self.client.peek8(0x2D);
44         print "Tx Errors:  %3d" % self.client.peek8(0x1c);
45         print "Rx Errors:  %3d\n" % self.client.peek8(0x1d);
46         
47         print "Timing Info:";
48         print "CNF1: %02x" %self.client.peek8(0x2a);
49         print "CNF2: %02x" %self.client.peek8(0x29);
50         print "CNF3: %02x\n" %self.client.peek8(0x28);
51         print "RXB0 CTRL: %02x" %self.client.peek8(0x60);
52         print "RXB1 CTRL: %02x" %self.client.peek8(0x70);
53         
54         print "RX Info:";
55         print "RXB0: %02x" %self.client.peek8(0x60);
56         print "RXB1: %02x" %self.client.peek8(0x70);
57         print "RXB0 masks: %02x, %02x, %02x, %02x" %(self.client.peek8(0x20), self.client.peek8(0x21), self.client.peek8(0x22), self.client.peek8(0x23));
58         print "RXB1 masks: %02x, %02x, %02x, %02x" %(self.client.peek8(0x24), self.client.peek8(0x25), self.client.peek8(0x26), self.client.peek8(0x27));
59
60         
61         print "RX Buffers:"
62         packet0=self.client.readrxbuffer(0);
63         packet1=self.client.readrxbuffer(1);
64         for foo in [packet0, packet1]:
65            print self.client.packet2str(foo);
66            
67     def reset(self):
68         self.client.MCPsetup();
69     
70     
71     ##########################
72     #   SNIFF
73     ##########################
74          
75     def sniff(self,freq,duration,description, verbose=True, comment=None, filename=None, standardid=None, debug=False, faster=False):
76         
77         #reset eveything on the chip
78         self.client.serInit() 
79         self.reset()
80           
81         #### ON-CHIP FILTERING
82         if(standardid != None):
83             if( comment == None):
84                 comment = ""
85             self.client.MCPreqstatConfiguration();  
86             self.client.poke8(0x60,0x26); # set RXB0 CTRL register to ONLY accept STANDARD messages with filter match (RXM1=0, RMX0=1, BUKT=1)
87             self.client.poke8(0x20,0xFF); #set buffer 0 mask 1 (SID 10:3) to FF
88             self.client.poke8(0x21,0xE0); #set buffer 0 mask 2 bits 7:5 (SID 2:0) to 1s
89             if(len(standardid)>2):
90                self.client.poke8(0x70,0x20); # set RXB1 CTRL register to ONLY accept STANDARD messages with filter match (RXM1=0, RMX0=1)
91                self.client.poke8(0x24,0xFF); #set buffer 1 mask 1 (SID 10:3) to FF
92                self.client.poke8(0x25,0xE0); #set buffer 1 mask 2 bits 7:5 (SID 2:0) to 1s 
93             
94             for filter,ID in enumerate(standardid):
95         
96                if (filter==0):
97                 RXFSIDH = 0x00;
98                 RXFSIDL = 0x01;
99                elif (filter==1):
100                 RXFSIDH = 0x04;
101                 RXFSIDL = 0x05;
102                elif (filter==2):
103                 RXFSIDH = 0x08;
104                 RXFSIDL = 0x09;
105                elif (filter==3):
106                 RXFSIDH = 0x10;
107                 RXFSIDL = 0x11;
108                elif (filter==4):
109                 RXFSIDH = 0x14;
110                 RXFSIDL = 0x15;
111                else:
112                 RXFSIDH = 0x18;
113                 RXFSIDL = 0x19;
114         
115                #### split SID into different regs
116                SIDlow = (ID & 0x03) << 5;  # get SID bits 2:0, rotate them to bits 7:5
117                SIDhigh = (ID >> 3) & 0xFF; # get SID bits 10:3, rotate them to bits 7:0
118                
119                #write SID to regs 
120                self.client.poke8(RXFSIDH,SIDhigh);
121                self.client.poke8(RXFSIDL, SIDlow);
122         
123                if (verbose == True):
124                    print "Filtering for SID %d (0x%02xh) with filter #%d"%(ID, ID, filter);
125                comment = comment + ("f%d" %(ID))
126         
127         
128         self.client.MCPsetrate(freq);
129         
130         # This will handle the files so that we do not loose them. each day we will create a new csv file
131         if( filename==None):
132             #get folder information (based on today's date)
133             now = datetime.datetime.now()
134             datestr = now.strftime("%Y%m%d")
135             path = self.DATALOCATION+datestr+".csv"
136             filename = path
137             
138         
139         outfile = open(filename,'a');
140         dataWriter = csv.writer(outfile,delimiter=',');
141         dataWriter.writerow(['# Time     Error        Bytes 1-13']);
142         dataWriter.writerow(['#' + description])
143         
144         self.client.MCPreqstatNormal();
145         print "Listening...";
146         packetcount = 0;
147         starttime = time.time();
148         
149         while((time.time()-starttime < duration)):
150             
151             if(faster):
152                 packet=self.client.fastrxpacket();
153             else:
154                 packet=self.client.rxpacket();
155             
156             if(debug == True):
157                 #check packet status
158                 MCPstatusReg = self.client.MCPrxstatus();
159                 messagestat=MCPstatusReg&0xC0;
160                 messagetype=MCPstatusReg&0x18;
161                 if(messagestat == 0xC0):
162                     print "Message in both buffers; message type is %02x (0x00 is standard data, 0x08 is standard remote)." %messagetype
163                 elif(messagestat == 0x80):
164                     print "Message in RXB1; message type is %02x (0x00 is standard data, 0x08 is standard remote)." %messagetype
165                 elif(messagestat == 0x40):
166                     print "Message in RXB0; message type is %02x (0x00 is standard data, 0x08 is standard remote)." %messagetype
167                 elif(messagestat == 0x00):
168                     print "No messages in buffers."
169             
170             if packet!=None:
171                 
172                 packetcount+=1;
173                 row = [];
174                 row.append("%f"%time.time());
175                 
176                 if( verbose==True):
177                     print self.client.packet2str(packet)
178                 
179                 if(debug == True):
180                     
181                     #check overflow
182                     MCPeflgReg=self.client.peek8(0x2D);
183                     print"EFLG register equals: %x" %MCPeflgReg;
184                     if((MCPeflgReg & 0xC0)==0xC0):
185                         print "WARNING: BOTH overflow flags set. Missed a packet. Clearing and proceeding."
186                     elif(MCPeflgReg & 0x80):
187                         print "WARNING: RXB1 overflow flag set. A packet has been missed. Clearing and proceeding."
188                     elif(MCPeflgReg & 0x40):
189                         print "WARNING: RXB0 overflow flag set. A packet has been missed. Clearing and proceeding."
190                     self.client.MCPbitmodify(0x2D,0xC0,0x00);
191                     print"EFLG register set to: %x" % self.client.peek(0x2D);
192                 
193                     #check for errors
194                     if (self.client.peek8(0x2C) & 0x80):
195                         self.client.MCPbitmodify(0x2C,0x80,0x00);
196                         print "ERROR: Malformed packet recieved: " + self.client.packet2str(packet);
197                         row.append(1);
198                     else:
199                         row.append(0);
200                 else:
201                     row.append(0);  #since we don't check for errors if we're not in debug mode...
202                             
203                 row.append(comment)
204                 #how long the sniff was for
205                 row.append(duration)
206                 #boolean that tells us if there was filtering. 0 == no filters, 1 == filters
207                 if(standardid != None):
208                     row.append(1)
209                 else:
210                     row.append(0)
211                 #write packet to file
212                 for byte in packet:
213                     row.append("%02x"%ord(byte));
214                 dataWriter.writerow(row);
215         
216         outfile.close()
217         print "Listened for %d seconds, captured %d packets." %(duration,packetcount);
218         return packetcount
219         
220         
221     def filterStdSweep(self, freq, time = 5):
222         msgIDs = []
223         for i in range(0, 2047, 6):
224             print "sniffing id: %d, %d, %d, %d, %d, %d" % (i,i+1,i+2,i+3,i+4,i+5)
225             comment = "sweepFilter_%d_%d_%d_%d_%d_%d" % (i,i+1,i+2,i+3,i+4,i+5)
226             description = "Running a sweep filer for all the possible standard IDs. This run filters for: %d, %d, %d, %d, %d, %d" % (i,i+1,i+2,i+3,i+4,i+5)
227             count = self.sniff(freq=freq, duration = time, description = description,comment = comment, standardid = [i, i+1, i+2, i+3, i+4, i+5])
228             if( count != 0):
229                 for j in range(i,i+5):
230                     comment = "sweepFilter: %d" % (j)
231                     description = "Running a sweep filer for all the possible standard IDs. This run filters for: %d " % j
232                     count = self.sniff(freq=freq, duration = time, description = description,comment = comment, standardid = [j])
233                     if( count != 0):
234                         msgIDs.append(j)
235         return msgIDs
236     
237     def sweepRandom(self, freq, number = 5, time = 5,):
238         msgIDs = []
239         ids = []
240         for i in range(0,number,6):
241             idsTemp = []
242             comment = "sweepFilter"
243             for j in range(0,6,1):
244                 id = randrange(2047)
245                 comment += "_%d" % id
246                 idsTemp.append(id)
247                 ids.append(id)
248             print comment
249             description = "Running a sweep filer for all the possible standard IDs. This runs the following : " + comment
250             count = self.sniff(freq=freq, duration=time, description=description, comment = comment, standardid = idsTemp)
251             if( count != 0):
252                 for element in idsTemp:
253                     comment = "sweepFilter: %d" % (element)
254                     description = "Running a sweep filer for all the possible standard IDs. This run filters for: %d " % element
255                     count = self.sniff(freq=freq, duration = time, description = description,comment = comment, standardid = [element, element, element])
256                     if( count != 0):
257                         msgIDs.append(j)
258         return msgIDs, ids
259     
260     def sniffTest(self, freq):
261         
262         rate = freq;
263         
264         print "Calling MCPsetrate for %i." %rate;
265         self.client.MCPsetrate(rate);
266         self.client.MCPreqstatNormal();
267         
268         print "Mode: %s" % self.client.MCPcanstatstr();
269         print "CNF1: %02x" %self.client.peek8(0x2a);
270         print "CNF2: %02x" %self.client.peek8(0x29);
271         print "CNF3: %02x\n" %self.client.peek8(0x28);
272         
273         while(1):
274             packet=self.client.rxpacket();
275             
276             if packet!=None:                
277                 if (self.client.peek8(0x2C) & 0x80):
278                     self.client.MCPbitmodify(0x2C,0x80,0x00);
279                     print "malformed packet recieved: "+ self.client.packet2str(packet);
280                 else:
281                     print "properly formatted packet recieved" + self.client.packet2str(packet);
282    
283     
284     def freqtest(self,freq):
285         
286         self.client.MCPsetup();
287
288         self.client.MCPsetrate(freq);
289         self.client.MCPreqstatListenOnly();
290     
291         print "CAN Freq Test: %3d kHz" %freq;
292     
293         x = 0;
294         errors = 0;
295     
296         starttime = time.time();
297         while((time.time()-starttime < args.time)):
298             packet=self.client.rxpacket();
299             if packet!=None:
300                 x+=1;
301                 
302                 if (self.client.peek8(0x2C) & 0x80):
303                     print "malformed packet recieved"
304                     errors+=1;
305                     self.client.MCPbitmodify(0x2C,0x80,0x00);
306                 else:         
307                     print self.client.packet2str(packet);
308     
309         print "Results for %3.1d kHz: recieved %3d packets, registered %3d RX errors." %(freq, x, errors);
310     
311
312     def isniff(self,freq):
313         """ An intelligent sniffer, decodes message format """
314         """ More features to be added soon """
315         
316         self.client.MCPsetrate(freq);
317         self.client.MCPreqstatListenOnly();
318         while 1:
319             packet=self.client.rxpacket();
320             if packet!=None:
321                 plist=[];
322                 for byte in packet:
323                     plist.append(byte);
324                 arbid=plist[0:2];
325                 eid=plist[2:4];
326                 dlc=plist[4:5];
327                 data=plist[5:13];         
328                 print "\nArbID: " + self.client.packet2str(arbid);
329                 print "EID: " + self.client.packet2str(eid);
330                 print "DLC: " + self.client.packet2str(dlc);
331                 print "Data: " + self.client.packet2str(data);
332
333     def test(self):
334         
335         comm.reset();
336         print "Just reset..."
337         print "EFLG register:  %02x" % self.client.peek8(0x2d);
338         print "Tx Errors:  %3d" % self.client.peek8(0x1c);
339         print "Rx Errors:  %3d" % self.client.peek8(0x1d);
340         print "CANINTF: %02x"  %self.client.peek8(0x2C);
341         self.client.MCPreqstatConfiguration();
342         self.client.poke8(0x60,0x66);
343         self.client.MCPsetrate(500);
344         self.client.MCPreqstatNormal();
345         print "In normal mode now"
346         print "EFLG register:  %02x" % self.client.peek8(0x2d);
347         print "Tx Errors:  %3d" % self.client.peek8(0x1c);
348         print "Rx Errors:  %3d" % self.client.peek8(0x1d);
349         print "CANINTF: %02x"  %self.client.peek8(0x2C);
350         print "Waiting on packets.";
351         checkcount = 0;
352         packet=None;
353         while(1):
354             packet=self.client.rxpacket();
355             if packet!=None:
356                 print "Message recieved: %s" % self.client.packet2str(packet);
357             else:
358                 checkcount=checkcount+1;
359                 if (checkcount%30==0):
360                     print "EFLG register:  %02x" % self.client.peek8(0x2d);
361                     print "Tx Errors:  %3d" % self.client.peek8(0x1c);
362                     print "Rx Errors:  %3d" % self.client.peek8(0x1d);
363                     print "CANINTF: %02x"  %self.client.peek8(0x2C);
364
365     
366         
367     def spit(self,freq, standardid,debug):
368         
369         comm.reset();
370         self.client.MCPsetrate(freq);
371         self.client.MCPreqstatNormal();
372         
373         print "initial state:"
374         print "Tx Errors:  %3d" % self.client.peek8(0x1c);
375         print "Rx Errors:  %3d" % self.client.peek8(0x1d);
376         print "Error Flags:  %02x\n" % self.client.peek8(0x2d);
377         print "TXB0CTRL: %02x" %self.client.peek8(0x30);
378         print "CANINTF: %02x\n"  %self.client.peek8(0x2C);
379         print "\n\nATTEMPTING TRANSMISSION!!!"
380
381     
382         #### split SID into different regs
383         SIDlow = (standardid[0] & 0x03) << 5;  # get SID bits 2:0, rotate them to bits 7:5
384         SIDhigh = (standardid[0] >> 3) & 0xFF; # get SID bits 10:3, rotate them to bits 7:0
385         
386         packet = [SIDhigh, SIDlow, 0x00,0x00, # pad out EID regs
387                   0x08, # bit 6 must be set to 0 for data frame (1 for RTR) 
388                   # lower nibble is DLC                   
389                   0x01,0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0xFF]    
390         
391         packetE = [SIDhigh, SIDlow | 0x80, 0x00,0x00, # pad out EID regs
392                   0x08, # bit 6 must be set to 0 for data frame (1 for RTR) 
393                   # lower nibble is DLC                   
394                 0x01,0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0xFF] 
395    
396         
397         self.client.txpacket(packetE);
398         
399         checkcount = 0;
400         TXB0CTRL = self.client.peek8(0x30);
401         
402         while(TXB0CTRL | 0x00 != 0x00):
403             checkcount+=1;
404             TXB0CTRL = self.client.peek8(0x30);
405             if (checkcount %30 ==0):
406                 print "Tx Errors:  %3d" % self.client.peek8(0x1c);
407                 print "Rx Errors:  %3d" % self.client.peek8(0x1d);
408                 print "EFLG register:  %02x" % self.client.peek8(0x2d);
409                 print "TXB0CTRL: %02x" %TXB0CTRL;
410                 print "CANINTF: %02x\n"  %self.client.peek8(0x2C);
411
412
413         
414
415
416
417 if __name__ == "__main__":  
418
419     parser = argparse.ArgumentParser(formatter_class=argparse.RawDescriptionHelpFormatter,description='''\
420     
421         Run commands on the MCP2515. Valid commands are:
422         
423             info 
424             test
425             peek 0x(start) [0x(stop)]
426             reset
427             
428             sniff 
429             freqtest
430             snifftest
431             spit
432         ''')
433         
434     
435     parser.add_argument('verb', choices=['info', 'test','peek', 'reset', 'sniff', 'freqtest','snifftest', 'spit']);
436     parser.add_argument('-f', '--freq', type=int, default=500, help='The desired frequency (kHz)', choices=[100, 125, 250, 500, 1000]);
437     parser.add_argument('-t','--time', type=int, default=15, help='The duration to run the command (s)');
438     parser.add_argument('-o', '--output', default=None,help='Output file');
439     parser.add_argument("-d", "--description", help='Description of experiment (included in the output file)', default="");
440     parser.add_argument('-v',"--verbose",action='store_false',help='-v will stop packet output to terminal', default=True);
441     parser.add_argument('-c','--comment', help='Comment attached to ech packet uploaded',default=None);
442     parser.add_argument('-b', '--debug', action='store_true', help='-b will turn on debug mode, printing packet status', default=False);
443     parser.add_argument('-a', '--standardid', type=int, action='append', help='Standard ID to accept with filter 0 [1, 2, 3, 4, 5]', default=None);
444     parser.add_argument('-x', '--faster', action='store_true', help='-x will use "fast packet recieve," which may duplicate packets and/or cause other weird behavior', default=False);
445
446     
447     args = parser.parse_args();
448     freq = args.freq
449     duration = args.time
450     filename = args.output
451     description = args.description
452     verbose = args.verbose
453     comments = args.comment
454     debug = args.debug
455     standardid = args.standardid
456     faster=args.faster
457
458     comm = GoodFETMCPCANCommunication();
459     
460     ##########################
461     #   INFO
462     ##########################
463     #
464     # Prints MCP state info
465     #
466     if(args.verb=="info"):
467         comm.printInfo()
468         
469            
470     ##########################
471     #   RESET
472     ##########################
473     #
474     #
475             
476     if(args.verb=="reset"):
477         comm.reset()
478         
479     ##########################
480     #   SNIFF
481     ##########################
482     #
483     #   runs in ListenOnly mode
484     #   utility function to pull info off the car's CAN bus
485     #
486     
487     if(args.verb=="sniff"):
488         comm.sniff(freq=freq,duration=duration,description=description,verbose=verbose,comment=comments,filename=filename, standardid=standardid, debug=debug, faster=faster)    
489                     
490     ##########################
491     #   SNIFF TEST
492     ##########################
493     #
494     #   runs in NORMAL mode
495     #   intended for NETWORKED MCP chips to verify proper operation
496     #
497        
498     if(args.verb=="snifftest"):
499         comm.sniffTest(freq=freq)
500         
501         
502     ##########################
503     #   FREQ TEST
504     ##########################
505     #
506     #   runs in LISTEN ONLY mode
507     #   tests bus for desired frequency --> sniffs bus for specified length of time and reports
508     #   if packets were properly formatted
509     #
510     #
511     
512     if(args.verb=="freqtest"):
513         comm.freqtest(freq=freq)
514
515
516
517     ##########################
518     #   iSniff
519     ##########################
520     #
521     #    """ An intelligent sniffer, decodes message format """
522     #    """ More features to be added soon """
523     if(args.verb=="isniff"):
524         comm.isniff(freq=freq)
525                 
526                 
527     ##########################
528     #   MCP TEST
529     ##########################
530     #
531     #   Runs in LOOPBACK mode
532     #   self-check diagnostic
533     #   wasn't working before due to improperly formatted packet
534     #
535     #   ...add automatic packet check rather than making user verify successful packet
536     if(args.verb=="test"):
537         comm.test()
538         
539     if(args.verb=="peek"):
540         start=0x0000;
541         if(len(sys.argv)>2):
542             start=int(sys.argv[2],16);
543         stop=start;
544         if(len(sys.argv)>3):
545             stop=int(sys.argv[3],16);
546         print "Peeking from %04x to %04x." % (start,stop);
547         while start<=stop:
548             print "%04x: %02x" % (start,client.peek8(start));
549             start=start+1;
550             
551     ##########################
552     #   SPIT
553     ##########################
554     #
555     #   Basic packet transmission
556     #   runs in NORMAL MODE!
557     # 
558     #   checking TX error flags--> currently throwing error flags on every
559     #   transmission (travis thinks this is because we're sniffing in listen-only
560     #   and thus not generating an ack bit on the recieving board)
561     if(args.verb=="spit"):
562         comm.spit(freq=freq, standardid=standardid, debug=debug)
563
564
565     
566     
567     
568     
569         
570         
571     
572     
573     
574