X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Fspiflash%2Fpd.py;h=d33ac0ce298bcb5f7157eb3ef0cccd5a69990971;hb=db1882287c6e29d7c22f55f21c0735a67e580d3d;hp=3d40ceb0663d424a3ff65f4cf7b0151e2491c5a8;hpb=e33410d3f96db7bb6a2ed0e2540e0df17bf561b5;p=libsigrokdecode.git diff --git a/decoders/spiflash/pd.py b/decoders/spiflash/pd.py index 3d40ceb..d33ac0c 100644 --- a/decoders/spiflash/pd.py +++ b/decoders/spiflash/pd.py @@ -89,6 +89,7 @@ class Decoder(srd.Decoder): ) def __init__(self): + self.device_id = -1 self.on_end_transaction = None self.end_current_transaction() @@ -112,6 +113,7 @@ class Decoder(srd.Decoder): def start(self): self.out_ann = self.register(srd.OUTPUT_ANN) self.chip = chips[self.options['chip']] + self.vendor = self.options['chip'].split('_')[0] def putx(self, data): # Simplification, most annotations span exactly one SPI byte/packet. @@ -120,6 +122,10 @@ class Decoder(srd.Decoder): def putb(self, data): self.put(self.ss_block, self.es_block, self.out_ann, data) + def vendor_device(self): + dev = device_name[self.vendor].get(self.device_id, 'Unknown') + return '%s %s' % (self.chip['vendor'], dev) + def handle_wren(self, mosi, miso): self.putx([0, ['Command: %s' % cmds[self.state][1]]]) self.state = None @@ -145,9 +151,8 @@ class Decoder(srd.Decoder): self.putx([2, ['Device ID: 0x%02x' % miso]]) if self.cmdstate == 4: - # TODO: Check self.device_id is valid & exists in device_names. # TODO: Same device ID? Check! - d = 'Device: Macronix %s' % device_name[self.device_id] + d = 'Device: %s' % self.vendor_device() self.put(self.ss_block, self.es, self.out_ann, [0, [d]]) self.state = None else: @@ -311,8 +316,8 @@ class Decoder(srd.Decoder): self.putx([24, ['Dummy byte: %02x' % mosi]]) elif self.cmdstate == 5: # Byte 5: Slave sends device ID. - self.ids = [miso] - self.putx([24, ['Device: Macronix %s' % device_name[self.ids[0]]]]) + self.device_id = miso + self.putx([24, ['Device: %s' % self.vendor_device()]]) self.state = None self.cmdstate += 1 @@ -346,7 +351,8 @@ class Decoder(srd.Decoder): if self.cmdstate == 6: id = self.ids[1] if self.manufacturer_id_first else self.ids[0] - self.putx([24, ['Device: Macronix %s' % device_name[id]]]) + self.device_id = id + self.putx([24, ['Device: %s' % self.vendor_device()]]) self.state = None else: self.cmdstate += 1