blob: 6888db63b93fd9062374e83572711ece5b69a374 [file] [log] [blame]
#!/usr/bin/env python3
#
# fix_vddio_overlay_lvc.py ---
#
# Special-purpose script that does the work of what ought to be a simple
# binary diff and patch. Except that no such thing exists as a standard
# offering on most Linux systems, so instead of adding another OS
# package requirement, I'm just writing a binary search-and-replace in
# python.
#
# The purpose of the patch is to narrow down the metal 3 area under
# the vias in this cell to clear the metal3 resistor marker that has
# been added to the base cell. Since the overlay just duplicates the
# metal 3 layer, this has no impact on the physical mask geometry.
#
import sys
if len(sys.argv) != 2:
print('Usage: fix_vddio_overlay_lvc.py <filename>')
sys.exit(1)
else:
file_name = sys.argv[1]
# Convert this data
orig_data_0 = b'\x00\x00\xf2\x8a\x00\x00\x02\x58\x00\x01\x03\xe2\x00\x00\x5f\xb4\x00\x01\x03\xe2\x00\x00\x5f\xb4\x00\x00\xf2\x8a\x00\x00\x02\x58\x00\x00\xf2\x8a'
# To this data (move X position 24500 to 24470)
new_data_0 = b'\x00\x00\xf2\x8a\x00\x00\x02\x58\x00\x01\x03\xe2\x00\x00\x5f\x96\x00\x01\x03\xe2\x00\x00\x5f\x96\x00\x00\xf2\x8a\x00\x00\x02\x58\x00\x00\xf2\x8a'
# Convert this data
# Convert this data
orig_data_1 = b'\x00\x00\xc6\x43\x00\x00\xf2\x8a\x00\x00\xc6\x43\x00\x01\x03\xe2\x00\x01\x23\x9f\x00\x01\x03\xe2\x00\x01\x23\x9f\x00\x00\xf2\x8a\x00\x00\xc6\x43'
# To this data (move X position 50755 to 50780), (move X position 74655 to 74625)
new_data_1 = b'\x00\x00\xc6\x5c\x00\x00\xf2\x8a\x00\x00\xc6\x5c\x00\x01\x03\xe2\x00\x01\x23\x81\x00\x01\x03\xe2\x00\x01\x23\x81\x00\x00\xf2\x8a\x00\x00\xc6\x53'
# This is not efficient, but only needs to be done once.
with open(file_name, 'rb') as ifile:
data = ifile.read()
data = data.replace(orig_data_0, new_data_0)
data = data.replace(orig_data_1, new_data_1)
# Write back into the same file
with open(file_name, 'wb') as ofile:
ofile.write(data)
print("Done!")