コード例 #1
0
ファイル: flash.py プロジェクト: thelongestusernameofall/pycs
 def cmd_erase(self, ui, args):
   """erase flash"""
   # check for erase all
   if len(args) == 1 and args[0] == '*':
     ui.put('erase all: ')
     n_errors = self.driver.erase_all()
     ui.put('done (%d errors)\n' % n_errors)
     return
   # memory region erase
   x = util.mem_args(ui, args, self.device)
   if x is None:
     return
   (adr, n) = x
   if n is None:
     ui.put('bad erase length\n')
     return
   r = mem.region(None, adr, n)
   # build a list of regions to be erased
   erase_list = [x for x in self.driver.sector_list() if r.overlap(x)]
   if len(erase_list) == 0:
     ui.put('nothing to erase\n')
     return
   # do the erase
   ui.put('erasing : ')
   progress = util.progress(ui, 1, len(erase_list))
   n_erased = 0
   n_errors = 0
   for x in erase_list:
     n_errors += self.driver.erase(x)
     n_erased += 1
     progress.update(n_erased)
   progress.erase()
   ui.put('done (%d errors)\n' % n_errors)
コード例 #2
0
ファイル: mem.py プロジェクト: deadsy/pycs
 def cmd_test(self, width, ui, args):
   """test memory with a write and readback"""
   x = util.mem_args(ui, args, self.cpu.device)
   if x is None:
     return
   (adr, n) = x
   if n == 0:
     return
   if n is None:
     n = 0x40
   # round down address to 32-bit byte boundary
   adr &= ~3
   # round up n to an integral multiple of 4 bytes
   n = (n + 3) & ~3
   # convert to n 32/16/8-bit units
   nx = n / (width / 8)
   maxval = (1 << width) - 1
   # we will typically be testing ram, so halt the cpu.
   self.cpu.halt()
   # build a random write buffer
   wrbuf = iobuf.data_buffer(width)
   [wrbuf.write(random.randint(0, maxval)) for i in xrange(nx)]
   # write it to memory
   t_start = time.time()
   self.cpu.wrmem(adr, nx, wrbuf)
   t_end = time.time()
   ui.put('write %.2f KiB/sec\n' % (float(n)/((t_end - t_start) * 1024.0)))
   # read it from memory
   rdbuf = iobuf.data_buffer(width)
   t_start = time.time()
   self.cpu.rdmem(adr, nx, rdbuf)
   t_end = time.time()
   ui.put('read %.2f KiB/sec\n' % (float(n)/((t_end - t_start) * 1024.0)))
   ui.put('read %s write\n' % ('!=', '==')[wrbuf.compare(rdbuf)])
コード例 #3
0
 def cmd_pic(self, ui, args):
     """display a pictorial summary of memory"""
     x = util.mem_args(ui, args, self.cpu.device)
     if x is None:
         return
     (adr, n) = x
     if n == 0:
         return
     if n is None:
         n = 0x40
     # round down address to 32-bit byte boundary
     adr &= ~3
     # round up n to an integral multiple of 4 bytes
     n = (n + 3) & ~3
     # work out how many rows, columns and bytes per symbol we should display
     cols_max = 70
     cols = cols_max + 1
     bps = 1
     # we try to display a matrix that is roughly square
     while cols > cols_max:
         bps *= 2
         cols = int(math.sqrt(float(n) / float(bps)))
     rows = int(math.ceil(n / (float(cols) * float(bps))))
     # bytes per row
     bpr = cols * bps
     # work out the none padding
     nwords = n / 4
     nwords_displayed = (((cols * rows * bps) + 3) & ~3) / 4
     none_pad = [
         None,
     ] * ((nwords_displayed - nwords) * 4)
     # read the memory
     if n > (16 << 10):
         ui.put('reading memory ...\n')
     data = iobuf.data_buffer(32)
     self.cpu.rdmem32(adr, nwords, data)
     data.convert8(mode='le')
     # add the none padding
     data.buf.extend(none_pad)
     # display the summary
     ui.put("'.' all ones, '-' all zeroes, '$' various\n")
     ui.put('%d (0x%x) bytes per symbol\n' % (bps, bps))
     ui.put('%d (0x%x) bytes per row\n' % (bpr, bpr))
     ui.put('%d cols x %d rows\n' % (cols, rows))
     # display the matrix
     ofs = 0
     for y in range(rows):
         s = []
         adr_str = '0x%08x: ' % (adr + ofs)
         for x in range(cols):
             s.append(self.__analyze(data.buf, ofs, bps))
             ofs += bps
         ui.put('%s%s\n' % (adr_str, ''.join(s)))
コード例 #4
0
ファイル: mem.py プロジェクト: deadsy/pycs
 def cmd_pic(self, ui, args):
   """display a pictorial summary of memory"""
   x = util.mem_args(ui, args, self.cpu.device)
   if x is None:
     return
   (adr, n) = x
   if n == 0:
     return
   if n is None:
     n = 0x40
   # round down address to 32-bit byte boundary
   adr &= ~3
   # round up n to an integral multiple of 4 bytes
   n = (n + 3) & ~3
   # work out how many rows, columns and bytes per symbol we should display
   cols_max = 70
   cols = cols_max + 1
   bps = 1
   # we try to display a matrix that is roughly square
   while cols > cols_max:
     bps *= 2
     cols = int(math.sqrt(float(n)/float(bps)))
   rows = int(math.ceil(n / (float(cols) * float(bps))))
   # bytes per row
   bpr = cols * bps
   # work out the none padding
   nwords = n / 4
   nwords_displayed = (((cols * rows * bps) + 3) & ~3) / 4
   none_pad = [None,] * ((nwords_displayed - nwords) * 4)
   # read the memory
   if n > (16 << 10):
     ui.put('reading memory ...\n')
   data = iobuf.data_buffer(32)
   self.cpu.rdmem32(adr, nwords, data)
   data.convert8(mode = 'le')
   # add the none padding
   data.buf.extend(none_pad)
   # display the summary
   ui.put("'.' all ones, '-' all zeroes, '$' various\n")
   ui.put('%d (0x%x) bytes per symbol\n' % (bps, bps))
   ui.put('%d (0x%x) bytes per row\n' % (bpr, bpr))
   ui.put('%d cols x %d rows\n' % (cols, rows))
   # display the matrix
   ofs = 0
   for y in range(rows):
     s = []
     adr_str = '0x%08x: ' % (adr + ofs)
     for x in range(cols):
       s.append(self.__analyze(data.buf, ofs, bps))
       ofs += bps
     ui.put('%s%s\n' % (adr_str, ''.join(s)))
コード例 #5
0
 def cmd_md5(self, ui, args):
     """calculate an md5 hash of memory"""
     x = util.mem_args(ui, args, self.cpu.device)
     if x is None:
         return
     (adr, n) = x
     if n == 0:
         return
     if n is None:
         n = 0x40
     # round down address to 32-bit byte boundary
     adr &= ~3
     # round up n to an integral multiple of 4 bytes
     n = (n + 3) & ~3
     # read the memory
     if n > (16 << 10):
         ui.put('reading memory ...\n')
     data = iobuf.data_buffer(32)
     t_start = time.time()
     self.cpu.rdmem(adr, n / 4, data)
     t_end = time.time()
     ui.put('%s\n' % data.md5('le'))
     ui.put('%.2f KiB/sec\n' % (float(n) / ((t_end - t_start) * 1024.0)))
コード例 #6
0
ファイル: mem.py プロジェクト: deadsy/pycs
 def cmd_md5(self, ui, args):
   """calculate an md5 hash of memory"""
   x = util.mem_args(ui, args, self.cpu.device)
   if x is None:
     return
   (adr, n) = x
   if n == 0:
     return
   if n is None:
     n = 0x40
   # round down address to 32-bit byte boundary
   adr &= ~3
   # round up n to an integral multiple of 4 bytes
   n = (n + 3) & ~3
   # read the memory
   if n > (16 << 10):
     ui.put('reading memory ...\n')
   data = iobuf.data_buffer(32)
   t_start = time.time()
   self.cpu.rdmem(adr, n/4, data)
   t_end = time.time()
   ui.put('%s\n' % data.md5('le'))
   ui.put('%.2f KiB/sec\n' % (float(n)/((t_end - t_start) * 1024.0)))
コード例 #7
0
 def __display(self, ui, args, width):
     """display memory: as width bits"""
     x = util.mem_args(ui, args, self.cpu.device)
     if x is None:
         return
     (adr, n) = x
     if n == 0:
         return
     if n is None:
         n = 0x40
     # round down address to 16 byte boundary
     adr &= ~15
     # round up n to an integral multiple of 16 bytes
     n = (n + 15) & ~15
     # print the header
     if width == 8:
         ui.put(
             'address   0  1  2  3  4  5  6  7  8  9  A  B  C  D  E  F\n')
     elif width == 16:
         ui.put('address   0    2    4    6    8    A    C    E\n')
     elif width == 32:
         ui.put('address   0        4        8        C\n')
     else:
         assert False, 'bad width'
     # read and print the data
     for i in xrange(n / 16):
         # read 4, 32-bit words (16 bytes per line)
         io = iobuf.data_buffer(32)
         self.cpu.rdmem(adr, 4, io)
         # work out the data string
         io.convert(width, 'le')
         data_str = str(io)
         # work out the ascii string
         io.convert(8, 'le')
         ascii_str = io.ascii_str()
         ui.put('%08x: %s  %s\n' % (adr, data_str, ascii_str))
         adr += 16
コード例 #8
0
 def cmd_test(self, width, ui, args):
     """test memory with a write and readback"""
     x = util.mem_args(ui, args, self.cpu.device)
     if x is None:
         return
     (adr, n) = x
     if n == 0:
         return
     if n is None:
         n = 0x40
     # round down address to 32-bit byte boundary
     adr &= ~3
     # round up n to an integral multiple of 4 bytes
     n = (n + 3) & ~3
     # convert to n 32/16/8-bit units
     nx = n / (width / 8)
     maxval = (1 << width) - 1
     # we will typically be testing ram, so halt the cpu.
     self.cpu.halt()
     # build a random write buffer
     wrbuf = iobuf.data_buffer(width)
     [wrbuf.write(random.randint(0, maxval)) for i in xrange(nx)]
     # write it to memory
     t_start = time.time()
     self.cpu.wrmem(adr, nx, wrbuf)
     t_end = time.time()
     ui.put('write %.2f KiB/sec\n' % (float(n) /
                                      ((t_end - t_start) * 1024.0)))
     # read it from memory
     rdbuf = iobuf.data_buffer(width)
     t_start = time.time()
     self.cpu.rdmem(adr, nx, rdbuf)
     t_end = time.time()
     ui.put('read %.2f KiB/sec\n' % (float(n) /
                                     ((t_end - t_start) * 1024.0)))
     ui.put('read %s write\n' % ('!=', '==')[wrbuf.compare(rdbuf)])
コード例 #9
0
ファイル: mem.py プロジェクト: deadsy/pycs
 def __display(self, ui, args, width):
   """display memory: as width bits"""
   x = util.mem_args(ui, args, self.cpu.device)
   if x is None:
     return
   (adr, n) = x
   if n == 0:
     return
   if n is None:
     n = 0x40
    # round down address to 16 byte boundary
   adr &= ~15
   # round up n to an integral multiple of 16 bytes
   n = (n + 15) & ~15
   # print the header
   if width == 8:
     ui.put('address   0  1  2  3  4  5  6  7  8  9  A  B  C  D  E  F\n')
   elif width == 16:
     ui.put('address   0    2    4    6    8    A    C    E\n')
   elif width == 32:
     ui.put('address   0        4        8        C\n')
   else:
     assert False, 'bad width'
   # read and print the data
   for i in xrange(n/16):
     # read 4, 32-bit words (16 bytes per line)
     io = iobuf.data_buffer(32)
     self.cpu.rdmem(adr, 4, io)
     # work out the data string
     io.convert(width, 'le')
     data_str = str(io)
     # work out the ascii string
     io.convert(8, 'le')
     ascii_str = io.ascii_str()
     ui.put('%08x: %s  %s\n' % (adr, data_str, ascii_str))
     adr += 16