Merge pull request #358 from DS-Power/master

fix ps/2
This commit is contained in:
DreamSourceLab 2021-05-25 10:09:15 +08:00 committed by GitHub
commit 2852876e98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ import sigrokdecode as srd
from collections import namedtuple from collections import namedtuple
class Ann: class Ann:
BIT, START, STOP, PARITY_OK, PARITY_ERR, DATA, WORD = range(7) BIT, HSTART, DSTART, STOP, PARITY_OK, PARITY_ERR, DATA, WORD, ACK = range(9)
Bit = namedtuple('Bit', 'val ss es') Bit = namedtuple('Bit', 'val ss es')
@ -37,21 +37,29 @@ class Decoder(srd.Decoder):
outputs = [] outputs = []
tags = ['PC'] tags = ['PC']
channels = ( channels = (
{'id': 'clk', 'name': 'Clock', 'desc': 'Clock line'}, {'id': 'clk', 'type': 0, 'name': 'Clock', 'desc': 'Clock line'},
{'id': 'data', 'name': 'Data', 'desc': 'Data line'}, {'id': 'data', 'type': 107, 'name': 'Data', 'desc': 'Data line'},
)
options = (
{'id': 'HtoD_Clock', 'desc': 'HtoD_Clock',
'default': 'rise', 'values': ('rise', 'fall')},
{'id': 'DtoH_Clock', 'desc': 'DtoH_Clock',
'default': 'fall', 'values': ('fall', 'rise')},
) )
annotations = ( annotations = (
('bit', 'Bit'), ('207', 'bit', 'Bit'),
('start-bit', 'Start bit'), ('109', 'HSTART', 'HSTART'),
('stop-bit', 'Stop bit'), ('50', 'DSTART', 'DSTART'),
('parity-ok', 'Parity OK bit'), ('1000', 'stop-bit', 'Stop bit'),
('parity-err', 'Parity error bit'), ('7', 'parity-ok', 'Parity OK bit'),
('data-bit', 'Data bit'), ('1000', 'parity-err', 'Parity error bit'),
('word', 'Word'), ('40', 'data-bit', 'Data bit'),
('65', 'word', 'Word'),
('75', 'ACK', 'ACK'),
) )
annotation_rows = ( annotation_rows = (
('bits', 'Bits', (0,)), ('bits', 'Bits', (0,)),
('fields', 'Fields', (1, 2, 3, 4, 5, 6)), ('fields', 'Fields', (1, 2, 3, 4, 5, 6, 7, 8)),
) )
def __init__(self): def __init__(self):
@ -61,10 +69,14 @@ class Decoder(srd.Decoder):
self.bits = [] self.bits = []
self.samplenum = 0 self.samplenum = 0
self.bitcount = 0 self.bitcount = 0
self.state = 'NULL'
self.ss = self.es = 0
self.HtoDss = 0
def start(self): def start(self):
self.out_ann = self.register(srd.OUTPUT_ANN) self.out_ann = self.register(srd.OUTPUT_ANN)
self.HtoD = 1 if self.options['HtoD_Clock'] == 'rise' else 0
self.DtoH = 1 if self.options['DtoH_Clock'] == 'fall' else 0
def putb(self, bit, ann_idx): def putb(self, bit, ann_idx):
b = self.bits[bit] b = self.bits[bit]
self.put(b.ss, b.es, self.out_ann, [ann_idx, [str(b.val)]]) self.put(b.ss, b.es, self.out_ann, [ann_idx, [str(b.val)]])
@ -75,7 +87,9 @@ class Decoder(srd.Decoder):
def handle_bits(self, datapin): def handle_bits(self, datapin):
# Ignore non start condition bits (useful during keyboard init). # Ignore non start condition bits (useful during keyboard init).
if self.bitcount == 0 and datapin == 1: if self.bitcount == 0 and datapin == 1:
return self.state = 'HtoD'
(clock_pin, datapin) = self.wait({0: 'r'})
# Store individual bits and their start/end samplenumbers. # Store individual bits and their start/end samplenumbers.
self.bits.append(Bit(datapin, self.samplenum, self.samplenum)) self.bits.append(Bit(datapin, self.samplenum, self.samplenum))
@ -105,7 +119,10 @@ class Decoder(srd.Decoder):
# Emit annotations. # Emit annotations.
for i in range(11): for i in range(11):
self.putb(i, Ann.BIT) self.putb(i, Ann.BIT)
self.putx(0, [Ann.START, ['Start bit', 'Start', 'S']]) if self.state == 'HtoD':
self.putx(0, [Ann.HSTART, ['Host Start', 'HStart', 'HS']])
if self.state == 'DtoH':
self.putx(0, [Ann.DSTART, ['Device Start', 'Device', 'DS']])
self.put(self.bits[1].ss, self.bits[8].es, self.out_ann, [Ann.WORD, self.put(self.bits[1].ss, self.bits[8].es, self.out_ann, [Ann.WORD,
['Data: %02x' % word, 'D: %02x' % word, '%02x' % word]]) ['Data: %02x' % word, 'D: %02x' % word, '%02x' % word]])
if parity_ok: if parity_ok:
@ -115,12 +132,62 @@ class Decoder(srd.Decoder):
self.putx(10, [Ann.STOP, ['Stop bit', 'Stop', 'St', 'T']]) self.putx(10, [Ann.STOP, ['Stop bit', 'Stop', 'St', 'T']])
self.bits, self.bitcount = [], 0 self.bits, self.bitcount = [], 0
self.state == 'NULL'
def decode(self): def decode(self):
while True: while True:
# Sample data bits on falling clock edge. # Sample data bits on falling clock edge.
(clock_pin, data_pin) = self.wait({0: 'f'}) if self.bitcount == 0:
self.handle_bits(data_pin) if self.HtoDss :
if (self.bitcount == 11): self.state = 'HtoD'
(clock_pin, data_pin) = self.wait({0: 'r'}) (clock_pin, data_pin) = self.wait({0: 'r',1: 'l'})
self.handle_bits(data_pin)
(clock_pin, data_pin) = self.wait({0: 'f'})
else:
(clock_pin, data_pin) = self.wait([{0: 'f',1: 'r'},{0: 'f',1: 'f'},{0: 'f',1: 'h'},{0: 'f',1: 'l'}])
if (self.matched & (0b1 << 0)):
continue
if (self.matched & (0b1 << 1)):
self.state = 'HtoD'
(clock_pin, data_pin) = self.wait({0: 'r',1: 'l'})
self.handle_bits(data_pin)
(clock_pin, data_pin) = self.wait({0: 'f'})
if (self.matched & (0b1 << 2)):
self.state = 'HtoD'
(clock_pin, data_pin) = self.wait({0: 'r',1: 'l'})
self.handle_bits(data_pin)
(clock_pin, data_pin) = self.wait({0: 'f'})
if (self.matched & (0b1 << 3)):
self.state = 'DtoH'
self.handle_bits(data_pin)
if self.state == 'HtoD':
if self.HtoD :
(clock_pin, data_pin) = self.wait({0: 'r'})
else:
(clock_pin, data_pin) = self.wait({0: 'f'})
self.handle_bits(data_pin) self.handle_bits(data_pin)
if (self.bitcount == 10):
(clock_pin, data_pin) = self.wait({0: 'r'})
self.handle_bits(data_pin)
if (self.bitcount == 11):
(clock_pin, data_pin) = self.wait({0: 'f'})
self.handle_bits(data_pin)
self.ss = self.samplenum
(clock_pin, data_pin) = self.wait({0: 'r'})
self.es = self.samplenum
self.put(self.ss,self.es,self.out_ann,[Ann.ACK, ['ACK', 'ACK', 'ACK', 'A']])
self.HtoDss = 0
if self.state == 'DtoH':
if self.DtoH :
(clock_pin, data_pin) = self.wait({0: 'f'})
else:
(clock_pin, data_pin) = self.wait({0: 'r'})
self.handle_bits(data_pin)
if (self.bitcount == 11):
(clock_pin, data_pin) = self.wait([{1: 'f'},{0: 'r'}])
if (self.matched & (0b1 << 0)):
self.handle_bits(data_pin)
self.HtoDss = 1
if (self.matched & (0b1 << 1)):
self.handle_bits(data_pin)
self.HtoDss = 0