File size: 61,312 Bytes
f5dbfe6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 | from amaranth import *
from amaranth.lib import wiring
from amaranth.lib.wiring import In, Out
from shift_dma import shift_dma_controller, shift_dma_node
from amaranth.lib.memory import Memory
from registers2 import *
from interface_cards.serial_interface import serial_interface_card
from fanuc_encoder import Fanuc_Encoders
from global_timer import Global_Timers
from em_serial_controller import EM_Serial_Controller
from yaskawa_encoders import Yaskawa_Encoders
import subprocess, os
class Controller(wiring.Component):
def __init__(self, nodes:dict, sim=False):
self.sim = sim
self.nodes = nodes
interface_name = "AXI_controller_master"
# Define the interface parameters
interface_params = (
f"XIL_INTERFACENAME {interface_name}, "
"CLK_DOMAIN controller_firmware_processing_system7_0_0_FCLK_CLK0, "
"FREQ_HZ 100000000, "
"PHASE 0.0, "
"PROTOCOL AXI3, "
f"DATA_WIDTH {64}, "
f"ID_WIDTH {0}, "
f"ADDR_WIDTH {32}, "
"HAS_BURST 1, "
"HAS_CACHE 0, "
"HAS_LOCK 0, "
"HAS_PROT 0, "
"HAS_QOS 0, "
"HAS_REGION 0, "
"HAS_WSTRB 1, "
"HAS_BRESP 0, "
"HAS_RRESP 0, "
"SUPPORTS_NARROW_BURST 0, "
"MAX_BURST_LENGTH 16, "
"NUM_READ_OUTSTANDING 1, "
"NUM_WRITE_OUTSTANDING 1, "
"READ_WRITE_MODE READ_WRITE"
)
super().__init__({
# Clock and Reset
"clk_200M": In(1),
"clk_100M": In(1),
"clk_50M": In(1),
"clk_25M": In(1),
"reset": In(1),
# Clock and Reset
"ACLK": In(1),
"ARESETN": In(1),
# Write address channel
#"AWID": Out(6),
"AWADDR": Out(32),
"AWLEN": Out(4),
"AWSIZE": Out(3, init=0b011), # 64 bit
"AWBURST": Out(2, init=0b01), # incrementing burst
#"AWLOCK": Out(1), # unused
#"AWCACHE": Out(4), # unused
"AWPROT": Out(3), # unused
#"AWREGION": Out(4), # unused
#"AWQOS": Out(4), # unused
"AWUSER": Out(0),
"AWVALID": Out(1),
"AWREADY": In(1),
# Write data channel
#"WID": Out(6),
"WDATA": Out(64),
"WSTRB": Out(64 // 8, init=0b11111111),
"WLAST": Out(1),
#"WUSER": Out(0), # unused
"WVALID": Out(1),
"WREADY": In(1),
# Write response channel
#"BID": In(6),
#"BRESP": In(2), # unused
#"BUSER": In(0), # unused
"BVALID": In(1),
"BREADY": Out(1),
# Read address channel
#"ARID": Out(6),
"ARADDR": Out(32),
"ARLEN": Out(4),
"ARSIZE": Out(3, init=0b011), # 64 bit
"ARBURST": Out(2, init=0b01), # incrementing burst
#"ARLOCK": Out(1), # unused
#"ARCACHE": Out(4), # unused
"ARPROT": Out(3), # unused
#"ARREGION": Out(4), # unused
#"ARQOS": Out(4), # unused
#"ARUSER": Out(0), # unused
"ARVALID": Out(1),
"ARREADY": In(1),
# Read data channel
#"RID": In(6),
"RDATA": In(64),
#"RRESP": In(2), # unused
"RLAST": In(1),
#"RUSER": In(0), # unused
"RVALID": In(1),
"RREADY": Out(1),
# onboard peripherals
"buzzer": Out(1),
# slot IO
"slot_A_in": In(22),
"slot_A_out": Out(22),
"slot_A_out_enable": Out(22),
"slot_B_in": In(22),
"slot_B_out": Out(22),
"slot_B_out_enable": Out(22),
"slot_C_in": In(22),
"slot_C_out": Out(22),
"slot_C_out_enable": Out(22),
"slot_D_in": In(22),
"slot_D_out": Out(22),
"slot_D_out_enable": Out(22),
# interrupts
"pl_ps_interrupts": Out(16),
})
# Assign attributes to the signals
# self.ACLK = Signal()
# self.ARESETN = Signal()
self.ACLK.attrs["X_INTERFACE_INFO"] = f"xilinx.com:signal:clock:1.0 {interface_name} CLK"
self.ARESETN.attrs["X_INTERFACE_INFO"] = f"xilinx.com:signal:reset:1.0 {interface_name} RST"
#self.AWID.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} AWID"
self.AWADDR.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} AWADDR"
self.AWLEN.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} AWLEN"
self.AWSIZE.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} AWSIZE"
self.AWBURST.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} AWBURST"
#self.AWLOCK.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} AWLOCK"
#self.AWCACHE.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} AWCACHE"
self.AWPROT.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} AWPROT"
#self.AWREGION.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} AWREGION"
#self.AWQOS.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} AWQOS"
#self.AWUSER.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} AWUSER"
self.AWVALID.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} AWVALID"
self.AWREADY.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} AWREADY"
#self.WID.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} WID"
self.WDATA.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} WDATA"
self.WSTRB.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} WSTRB"
self.WLAST.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} WLAST"
#self.WUSER.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} WUSER"
self.WVALID.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} WVALID"
self.WREADY.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} WREADY"
#self.BID.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} BID"
#self.BRESP.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} BRESP"
#self.BUSER.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} BUSER"
self.BVALID.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} BVALID"
self.BREADY.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} BREADY"
#self.ARID.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} ARID"
self.ARADDR.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} ARADDR"
self.ARLEN.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} ARLEN"
self.ARSIZE.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} ARSIZE"
self.ARBURST.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} ARBURST"
#self.ARLOCK.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} ARLOCK"
#self.ARCACHE.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} ARCACHE"
self.ARPROT.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} ARPROT"
#self.ARREGION.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} ARREGION"
#self.ARQOS.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} ARQOS"
#self.ARUSER.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} ARUSER"
self.ARVALID.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} ARVALID"
self.ARREADY.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} ARREADY"
#self.RID.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} RID"
self.RDATA.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} RDATA"
#self.RRESP.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} RRESP"
self.RLAST.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} RLAST"
#self.RUSER.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} RUSER"
self.RVALID.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} RVALID"
self.RREADY.attrs["X_INTERFACE_INFO"] = f"xilinx.com:interface:aximm:1.0 {interface_name} RREADY"
# Assign interface-level attributes to one of the signals
self.RREADY.attrs["X_INTERFACE_PARAMETER"] = interface_params
# OCM memory that the PS can access, we are only allowed to write to this address range
self.OCM_BASE_ADDR = 0x000F0000
self.OCM_SIZE = 0x8000 # 32KB
# OCM layout, this must match the layout in fpga_interface.h
self.PS_TO_PL_CONTROL_OFFSET = 0x0000
self.PS_TO_PL_CONTROL_SIZE = 0x40 # 64 bytes
self.PL_TO_PS_CONTROL_OFFSET = 0x800
self.PL_TO_PS_CONTROL_SIZE = 0x40 # 64 bytes
# these sizes must be equal
self.PS_TO_PL_DATA_OFFSET = 0x1000
self.PS_TO_PL_DATA_SIZE = 0x1000 # 4KB
self.PL_TO_PS_DATA_OFFSET = 0x2000
self.PL_TO_PS_DATA_SIZE = 0x1000 # 4KB
self.PS_TO_PL_DMA_INSTRUCTION_OFFSET = 0x3000
self.PS_TO_PL_DMA_INSTRUCTION_SIZE = 0x800 # 2KB
self.LARGEST_MEMORY_REGION = 0x1000 # 4KB
if(self.sim): # use smaller memory regions for simulation
self.PS_TO_PL_DATA_SIZE = 0x100 # 256 bytes
self.PL_TO_PS_DATA_SIZE = 0x100 # 256 bytes
self.PS_TO_PL_DMA_INSTRUCTION_SIZE = 0x100 # 256 bytes
self.LARGEST_MEMORY_REGION = 0x100 # 256 bytes
# actual memory sizes may be larger than the above access sizes
self.INSTRUCTION_MEMORY_SIZE = self.PS_TO_PL_DMA_INSTRUCTION_SIZE // 8 # 64 bit instructions
self.DATA_MEMORY_SIZE = self.PS_TO_PL_DATA_SIZE // 4 # 32 bit data, size of read and write blocks (each)
if(self.INSTRUCTION_MEMORY_SIZE < self.PS_TO_PL_DMA_INSTRUCTION_SIZE // 8):
raise Exception("Instruction memory size is smaller than the instruction memory access size")
if(self.DATA_MEMORY_SIZE < self.PS_TO_PL_DATA_SIZE // 4):
raise Exception("Data memory size is smaller than the data memory access size")
driver_settings = {
"OCM_BASE_ADDR": self.OCM_BASE_ADDR,
"OCM_SIZE": self.OCM_SIZE,
"PS_TO_PL_CONTROL_OFFSET": self.PS_TO_PL_CONTROL_OFFSET,
"PS_TO_PL_CONTROL_SIZE": self.PS_TO_PL_CONTROL_SIZE,
"PL_TO_PS_CONTROL_OFFSET": self.PL_TO_PS_CONTROL_OFFSET,
"PL_TO_PS_CONTROL_SIZE": self.PL_TO_PS_CONTROL_SIZE,
"PS_TO_PL_DATA_OFFSET": self.PS_TO_PL_DATA_OFFSET,
"PS_TO_PL_DATA_SIZE": self.PS_TO_PL_DATA_SIZE,
"PL_TO_PS_DATA_OFFSET": self.PL_TO_PS_DATA_OFFSET,
"PL_TO_PS_DATA_SIZE": self.PL_TO_PS_DATA_SIZE,
"PS_TO_PL_DMA_INSTRUCTION_OFFSET": self.PS_TO_PL_DMA_INSTRUCTION_OFFSET,
"PS_TO_PL_DMA_INSTRUCTION_SIZE": self.PS_TO_PL_DMA_INSTRUCTION_SIZE,
"INSTRUCTION_MEMORY_SIZE": self.INSTRUCTION_MEMORY_SIZE,
"DATA_MEMORY_SIZE": self.DATA_MEMORY_SIZE,
"NODE_COUNT": len(self.nodes),
# these settings are based on the shift DMA architecture
"INTER_NODE_CYCLES": 1,
"INTRA_NODE_CYCLES": 2,
"DMA_CYCLES": 1,
}
self.rm = RegisterMapGenerator("controller", ["controller"], driver_settings)
self.rm.generate()
self.address = 0
def elaborate(self, platform):
m = Module()
# Create a clock domains
#m.domains.sync = ClockDomain("sync", async_reset=True)
m.domains.sync_200 = ClockDomain("sync_200", async_reset=True)
m.domains.sync_100 = ClockDomain("sync_100", async_reset=True)
m.domains.sync_50 = ClockDomain("sync_50", async_reset=True)
m.domains.sync_25 = ClockDomain("sync_25", async_reset=True)
# about enough memory to use up an entire update period at 50% utilization (hopefully more than we'll ever need)
m.submodules.instruction_memory = self.instruction_memory = Memory(shape=unsigned(64), depth=(self.INSTRUCTION_MEMORY_SIZE), init=[])
m.submodules.data_memory_read = self.data_memory_read = Memory(shape=unsigned(32), depth=(self.DATA_MEMORY_SIZE), init=[])
m.submodules.data_memory_write = self.data_memory_write = Memory(shape=unsigned(32), depth=(self.DATA_MEMORY_SIZE), init=[])
m.submodules.shift_dma = self.shift_dma = shift_dma_controller(instruction_memory_depth=self.INSTRUCTION_MEMORY_SIZE)
self.instruction_read_port = self.instruction_memory.read_port(domain="sync_100")
self.instruction_write_port = self.instruction_memory.write_port(domain="sync_100")
# data ports for dma use, these also get used for axi transfers when the dma is not active to get 64 bit data
self.data_read_read_port_dma = self.data_memory_read.read_port(domain="sync_100")
self.data_read_write_port_dma = self.data_memory_read.write_port(domain="sync_100")
self.data_write_read_port_dma = self.data_memory_write.read_port(domain="sync_100")
self.data_write_write_port_dma = self.data_memory_write.write_port(domain="sync_100")
# axi only data ports
self.data_read_port_axi = self.data_memory_read.read_port(domain="sync_100")
self.data_write_port_axi = self.data_memory_write.write_port(domain="sync_100")
self.instruction_read_address = Signal(range(self.INSTRUCTION_MEMORY_SIZE))
self.instruction_read_data = Signal(64)
self.instruction_write_address = Signal(range(self.INSTRUCTION_MEMORY_SIZE))
self.instruction_write_data = Signal(64)
self.instruction_write_en = Signal()
self.data_read_dma_address = Signal(range(self.DATA_MEMORY_SIZE))
self.data_read_dma_read_data = Signal(32)
self.data_read_dma_write_data = Signal(32)
self.data_read_dma_write_en = Signal()
self.data_write_dma_address = Signal(range(self.DATA_MEMORY_SIZE))
self.data_write_dma_read_data = Signal(32)
self.data_write_dma_write_data = Signal(32)
self.data_write_dma_write_en = Signal()
self.data_read_axi_address = Signal(range(self.DATA_MEMORY_SIZE))
self.data_read_axi_data = Signal(64)
self.data_write_axi_address = Signal(range(self.DATA_MEMORY_SIZE))
self.data_write_axi_data = Signal(64)
self.data_write_axi_enable = Signal()
self.memory_update_running = self.pl_ps_interrupts[0]
self.memory_update_done = self.pl_ps_interrupts[1]
self.dma_cycle_running = self.pl_ps_interrupts[2]
self.dma_cycle_done = self.pl_ps_interrupts[3]
self.axi_transfer_start = Signal()
self.axi_transfer_busy = Signal()
self.debug_pins = Signal(8)
m.d.comb += [
self.slot_A_out[0:8].eq(self.debug_pins),
self.slot_A_out_enable[0:8].eq(0xFF),
# # self.debug_pins[0].eq(self.AWVALID),
# # self.debug_pins[1].eq(self.AWREADY),
# # self.debug_pins[2].eq(self.WVALID),
# # self.debug_pins[3].eq(self.WREADY),
# # self.debug_pins[4].eq(self.WLAST),
# # self.debug_pins[5].eq(self.BVALID),
# # self.debug_pins[6].eq(self.BREADY),
# # self.debug_pins[0].eq(self.pl_ps_interrupts[0]),
# # self.debug_pins[1].eq(self.pl_ps_interrupts[1]),
# # self.debug_pins[2].eq(self.pl_ps_interrupts[2]),
# # self.debug_pins[3].eq(self.pl_ps_interrupts[3]),
# # self.debug_pins[0].eq(self.slot_B_out[20]),
# # self.debug_pins[1].eq(self.slot_B_out[21]),
# # self.debug_pins[2].eq(self.slot_B_out_enable[20]),
# # self.debug_pins[3].eq(self.slot_B_out_enable[21]),
]
m.d.comb += [
self.data_read_read_port_dma.addr.eq(self.data_read_dma_address),
self.data_read_write_port_dma.addr.eq(self.data_read_dma_address),
self.data_read_dma_read_data.eq(self.data_read_read_port_dma.data),
self.data_read_write_port_dma.data.eq(self.data_read_dma_write_data),
self.data_read_write_port_dma.en.eq(self.data_read_dma_write_en),
self.data_write_read_port_dma.addr.eq(self.data_write_dma_address),
self.data_write_write_port_dma.addr.eq(self.data_write_dma_address),
self.data_write_dma_read_data.eq(self.data_write_read_port_dma.data),
self.data_write_write_port_dma.data.eq(self.data_write_dma_write_data),
self.data_write_write_port_dma.en.eq(self.data_write_dma_write_en),
self.instruction_read_port.addr.eq(self.instruction_read_address),
self.instruction_read_data.eq(self.instruction_read_port.data),
self.instruction_write_port.addr.eq(self.instruction_write_address),
self.instruction_write_port.data.eq(self.instruction_write_data),
self.instruction_write_port.en.eq(self.instruction_write_en),
self.shift_dma.instruction_memory_read_data.eq(self.instruction_read_data),
self.instruction_read_address.eq(self.shift_dma.instruction_memory_address),
]
self.dma_memory_half = Signal()
self.dma_memory_half_comb = Signal()
with m.If(self.shift_dma.data_memory_address[len(self.data_read_dma_address)]):
m.d.sync_100 += self.dma_memory_half.eq(1)
m.d.comb += self.dma_memory_half_comb.eq(1)
with m.Else():
m.d.sync_100 += self.dma_memory_half.eq(0)
with m.If(~self.axi_transfer_busy): # if axi is not transfering data, link the memmory ports to the dma
# check if the address is in the read or write memory
m.d.comb += [
self.data_read_dma_address.eq(self.shift_dma.data_memory_address[0:len(self.data_read_dma_address)]),
self.data_write_dma_address.eq(self.shift_dma.data_memory_address[0:len(self.data_read_dma_address)]),
self.data_read_dma_write_data.eq(self.shift_dma.data_memory_write_data),
self.data_write_dma_write_data.eq(self.shift_dma.data_memory_write_data),
]
with m.If(self.dma_memory_half == 0): # read memory signals must be delayed by one cycle
m.d.comb += [
#self.data_read_dma_address.eq(self.shift_dma.data_memory_address[0:len(self.data_read_dma_address)]),
self.shift_dma.data_memory_read_data.eq(self.data_read_dma_read_data),
#self.data_read_dma_write_data.eq(self.shift_dma.data_memory_write_data),
]
with m.Else(): # write memory
m.d.comb += [
#self.data_write_dma_address.eq(self.shift_dma.data_memory_address[0:len(self.data_read_dma_address)]),
self.shift_dma.data_memory_read_data.eq(self.data_write_dma_read_data),
#self.data_write_dma_write_data.eq(self.shift_dma.data_memory_write_data),
]
with m.If(self.dma_memory_half_comb == 0): # write memory signals must be switched immediately
m.d.comb += [
self.data_read_dma_write_en.eq(self.shift_dma.data_memory_write_enable),
self.data_write_dma_write_en.eq(0),
]
with m.Else():
m.d.comb += [
self.data_write_dma_write_en.eq(self.shift_dma.data_memory_write_enable),
self.data_read_dma_write_en.eq(0),
]
with m.Else(): # if axi is transfering data, link the memory ports to the axi interface
m.d.comb += [
# pack read data into 64 bit data
self.data_read_port_axi.addr.eq(self.data_read_axi_address << 1),
self.data_read_dma_address.eq(self.data_read_axi_address << 1 | 0b1),
self.data_read_axi_data.eq(self.data_read_port_axi.data | (self.data_read_dma_read_data << 32)),
# unpack 64 bit data into 32 bit data
self.data_write_port_axi.addr.eq(self.data_write_axi_address << 1),
self.data_write_dma_address.eq(self.data_write_axi_address << 1 | 0b1),
self.data_write_port_axi.data.eq(self.data_write_axi_data[0:32]),
self.data_write_dma_write_data.eq(self.data_write_axi_data[32:64]),
self.data_write_port_axi.en.eq(self.data_write_axi_enable),
self.data_write_dma_write_en.eq(self.data_write_axi_enable),
]
if(not self.sim):
m.d.comb += [
ClockSignal("sync_200").eq(self.clk_200M),
ClockSignal("sync_100").eq(self.clk_100M),
ClockSignal("sync_50").eq(self.clk_50M),
ClockSignal("sync_25").eq(self.clk_25M),
#ClockSignal("sync").eq(self.clk_200M),
ResetSignal("sync_200").eq(~self.reset),
ResetSignal("sync_100").eq(~self.reset),
ResetSignal("sync_50").eq(~self.reset),
ResetSignal("sync_25").eq(~self.reset),
#ResetSignal("sync").eq(~self.reset),
#self.ACLK.eq(self.clk_200M),
#self.ARESETN.eq(~self.reset)
]
# TODO: make these control registers be defined by the register address map
# internal control signals
# PL to PS
self.status = Signal(32) # status register
# PS to PL
self.cycle_timer_config = Signal(16, reset=0xFFFF) # main timer for triggering FPGA updates, 25Mhz clock, lowest possible update frequency is ~380hz
self.watchdog_register = Signal(16) # a value other than 0 must be written to enable the FPGA, tis value must change regularly to keep the FPGA enabled
self.last_watchdog_value = Signal(16) # last value written to the watchdog register
self.watchdog_counter = Signal(8) # this counter is decremented every cycle, if it reaches 0, the FPGA updates are permanently disabled
if(self.sim):
self.cycle_timer_config = Signal(16, reset=0x0010)
self.cycle_timer = Signal(16) # current timer value
self.dma_instruction_block_select = Signal(4) # select which block of instructions to use
# AXI transfer section, this reads and writes to the OCM
# NOTE: single transfers may not cross a 4KB boundary (usually not an issue as the bursts should always be boundary aligned)
self.axi_write_busy = Signal()
self.axi_read_busy = Signal()
m.d.sync_100 += self.axi_transfer_busy.eq(self.axi_write_busy | self.axi_read_busy)
self.write_stages = {
0: {"offset": self.PL_TO_PS_CONTROL_OFFSET, "burst_size": self.PL_TO_PS_CONTROL_SIZE // 8},
1: {"offset": self.PL_TO_PS_DATA_OFFSET, "burst_size": self.PL_TO_PS_DATA_SIZE // 8},
}
self.write_stage = Signal(range(len(self.write_stages)+2))
self.read_stages = {
0: {"offset": self.PS_TO_PL_CONTROL_OFFSET, "burst_size": self.PS_TO_PL_CONTROL_SIZE // 8},
1: {"offset": self.PS_TO_PL_DATA_OFFSET, "burst_size": self.PS_TO_PL_DATA_SIZE // 8},
2: {"offset": self.PS_TO_PL_DMA_INSTRUCTION_OFFSET, "burst_size": self.PS_TO_PL_DMA_INSTRUCTION_SIZE // 8},
}
self.read_stage = Signal(range(len(self.read_stages)+2))
self.write_bursts_remaining = Signal(range(self.LARGEST_MEMORY_REGION // 8 + 1))
self.read_bursts_remaining = Signal(range(self.LARGEST_MEMORY_REGION // 8 + 1))
self.write_current_burst = Signal(4)
self.read_current_burst = Signal(4)
self.write_addr_complete = Signal()
self.write_data_complete = Signal()
m.d.comb += self.write_addr_complete.eq(self.AWVALID & self.AWREADY)
m.d.comb += self.write_data_complete.eq(self.WVALID & self.WREADY)
self.read_addr_complete = Signal()
m.d.comb += self.read_addr_complete.eq(self.ARVALID & self.ARREADY)
# write
self.internal_axi_read_address = Signal(range(self.LARGEST_MEMORY_REGION // 8 + 1)) # 64 bit block address
self.internal_axi_read_data = Signal(64)
self.internal_axi_read_valid = Signal()
self.last_axi_read_data = Signal(64)
self.axi_read_data_incremented = Signal()
self.timed_axi_read_data = Signal(64)
with m.If(self.axi_read_data_incremented):
m.d.sync_100 += self.axi_read_data_incremented.eq(0)
m.d.comb += self.timed_axi_read_data.eq(self.internal_axi_read_data)
m.d.sync_100 += self.last_axi_read_data.eq(self.internal_axi_read_data)
with m.Else():
m.d.comb += self.timed_axi_read_data.eq(self.last_axi_read_data)
with m.Switch(self.write_stage):
with m.Case(0): # control
with m.Switch(self.internal_axi_read_address):
with m.Case(0):
m.d.comb += self.internal_axi_read_data.eq(self.status)
with m.Default():
m.d.comb += self.internal_axi_read_data.eq(0)
m.d.sync_100 += self.internal_axi_read_valid.eq(1)
with m.Case(1): # data
m.d.comb += self.data_read_axi_address.eq(self.internal_axi_read_address)
m.d.comb += self.internal_axi_read_data.eq(self.data_read_axi_data)
m.d.sync_100 += self.internal_axi_read_valid.eq(1)
pass
with m.FSM(init="idle", domain="sync_100"):
with m.State("idle"):
#m.d.sync_100 += self.debug_pins.eq(0b00000000)
m.d.sync_100 += self.BREADY.eq(0)
m.d.sync_100 += self.AWVALID.eq(0)
m.d.sync_100 += self.WVALID.eq(0)
m.d.sync_100 += self.WLAST.eq(0)
m.d.sync_100 += self.axi_write_busy.eq(0)
m.d.sync_100 += self.write_stage.eq(0)
with m.If(self.axi_transfer_start):
m.d.sync_100 += self.axi_write_busy.eq(1)
m.next = "get_write_config"
with m.State("get_write_config"):
#m.d.sync_100 += self.debug_pins.eq(0b00000001)
with m.Switch(self.write_stage):
for i, stage in self.write_stages.items():
with m.Case(i):
m.d.sync_100 += self.AWADDR.eq(int(stage["offset"] + self.OCM_BASE_ADDR))
m.d.sync_100 += self.write_bursts_remaining.eq(stage["burst_size"])
m.d.sync_100 += self.internal_axi_read_address.eq(0)
m.next = "set_write_address"
with m.State("set_write_address"):
#m.d.sync_100 += self.debug_pins.eq(0b00000010)
with m.If(self.write_bursts_remaining >= 16):
m.d.sync_100 += self.AWLEN.eq(16-1) # up to 16 burst length
m.d.sync_100 += self.write_bursts_remaining.eq(self.write_bursts_remaining - 16)
with m.Else():
m.d.sync_100 += self.AWLEN.eq(self.write_bursts_remaining-1)
m.d.sync_100 += self.write_bursts_remaining.eq(0)
m.d.sync_100 += self.write_current_burst.eq(0)
m.d.sync_100 += self.AWVALID.eq(1)
m.next = "set_write_data"
with m.State("set_write_data"):
#m.d.sync_100 += self.debug_pins.eq(0b00000100)
with m.If(self.write_addr_complete):
m.d.sync_100 += self.AWVALID.eq(0)
with m.If(self.write_current_burst == self.AWLEN):
m.d.sync_100 += self.WLAST.eq(1)
with m.Else():
m.d.sync_100 += self.WLAST.eq(0)
with m.If(self.internal_axi_read_valid):
#m.d.sync_100 += self.WDATA.eq(self.internal_axi_read_data)
m.d.comb += self.WDATA.eq(self.timed_axi_read_data)
m.d.sync_100 += self.axi_read_data_incremented.eq(1)
m.d.sync_100 += self.WVALID.eq(1)
m.d.sync_100 += self.internal_axi_read_address.eq(self.internal_axi_read_address + 1)
#m.d.sync_100 += self.last_axi_read_data.eq(self.internal_axi_read_data)
m.d.sync_100 += self.write_current_burst.eq(self.write_current_burst + 1)
m.next = "wait_write"
with m.State("wait_write"):
#m.d.sync_100 += self.debug_pins.eq(0b00001000)
with m.If(self.write_addr_complete):
m.d.sync_100 += self.AWVALID.eq(0)
with m.If(self.write_data_complete):
m.d.sync_100 += self.WVALID.eq(0)
with m.If(~self.WLAST):
m.d.sync_100 += self.internal_axi_read_address.eq(self.internal_axi_read_address + 1)
m.d.sync_100 += self.axi_read_data_incremented.eq(1)
with m.If((~self.AWVALID) & (~self.WVALID) | (self.write_addr_complete & self.write_data_complete) | (~self.AWVALID & self.write_data_complete)):
with m.If(self.WLAST):
m.d.sync_100 += self.BREADY.eq(1)
m.d.comb += self.WDATA.eq(self.timed_axi_read_data)
m.next = "write_response_wait"
with m.Else():
with m.If(self.write_current_burst == self.AWLEN):
m.d.sync_100 += self.WLAST.eq(1)
with m.Else():
m.d.sync_100 += self.WLAST.eq(0)
with m.If(self.internal_axi_read_valid):
#m.d.sync_100 += self.WDATA.eq(self.timed_axi_read_data)
m.d.comb += self.WDATA.eq(self.timed_axi_read_data)
m.d.sync_100 += self.WVALID.eq(1)
m.d.sync_100 += self.internal_axi_read_address.eq(self.internal_axi_read_address + 1)
m.d.sync_100 += self.last_axi_read_data.eq(self.internal_axi_read_data)
m.d.sync_100 += self.write_current_burst.eq(self.write_current_burst + 1)
with m.Else():
m.d.comb += self.WDATA.eq(self.timed_axi_read_data)
with m.State("write_response_wait"):
#m.d.sync_100 += self.debug_pins.eq(0b00010000)
with m.If(self.BVALID):
# TODO: do something with the response here
with m.If(self.write_bursts_remaining != 0):
m.d.sync_100 += self.AWADDR.eq(self.AWADDR + 16*8)
m.next = "set_write_address"
with m.Elif(self.write_stage != len(self.write_stages)-1):
m.d.sync_100 += self.write_stage.eq(self.write_stage + 1)
m.next = "get_write_config"
with m.Else():
m.next = "idle"
# read
self.internal_axi_write_address = Signal(range(self.LARGEST_MEMORY_REGION // 8 + 1)) # 64 bit block address
self.internal_axi_write_data = Signal(64)
self.internal_axi_write_ready = Signal()
self.internal_axi_write_enable = Signal()
with m.Switch(self.read_stage):
with m.Case(0): # control
with m.Switch(self.internal_axi_write_address):
with m.Case(0):
with m.If(self.internal_axi_write_enable):
m.d.sync_100 += self.cycle_timer_config.eq(self.internal_axi_write_data[0:16]) # set the cycle timer
m.d.sync_100 += self.dma_instruction_block_select.eq(self.internal_axi_write_data[16:20]) # set the dma instruction block select
m.d.sync_100 += self.watchdog_register.eq(self.internal_axi_write_data[32:48]) # set the watchdog register
# with m.Case(1):
# with m.If(self.internal_axi_write_enable):
# m.d.sync_100 += self.watchdog_register.eq(self.internal_axi_write_data[0:16]) # set the watchdog register
with m.Default():
pass
m.d.sync_100 += self.internal_axi_write_ready.eq(1)
with m.Case(1): # data
m.d.comb += self.data_write_axi_address.eq(self.internal_axi_write_address)
m.d.comb += self.data_write_axi_data.eq(self.internal_axi_write_data)
m.d.comb += self.data_write_axi_enable.eq(self.internal_axi_write_enable)
m.d.sync_100 += self.internal_axi_write_ready.eq(1)
with m.Case(2): # dma instructions
m.d.comb += self.instruction_write_address.eq(self.internal_axi_write_address | self.dma_instruction_block_select << 12) # TODO: verify this block select works
m.d.comb += self.instruction_write_data.eq(self.internal_axi_write_data)
m.d.comb += self.instruction_write_en.eq(self.internal_axi_write_enable)
m.d.sync_100 += self.internal_axi_write_ready.eq(1)
with m.FSM(init="idle", domain="sync_100"):
with m.State("idle"):
m.d.sync_100 += self.RREADY.eq(0)
m.d.sync_100 += self.ARVALID.eq(0)
m.d.sync_100 += self.axi_read_busy.eq(0)
m.d.sync_100 += self.read_stage.eq(0)
with m.If(self.axi_transfer_start):
m.d.sync_100 += self.axi_read_busy.eq(1)
m.next = "get_read_config"
with m.State("get_read_config"):
with m.Switch(self.read_stage):
for i, stage in self.read_stages.items():
with m.Case(i):
m.d.sync_100 += self.ARADDR.eq(int(stage["offset"] + self.OCM_BASE_ADDR))
m.d.sync_100 += self.read_bursts_remaining.eq(stage["burst_size"])
m.d.sync_100 += self.internal_axi_write_address.eq(0)
m.next = "set_read_address"
with m.State("set_read_address"):
with m.If(self.read_bursts_remaining >= 16):
m.d.sync_100 += self.ARLEN.eq(16-1) # up to 16 burst length
m.d.sync_100 += self.read_bursts_remaining.eq(self.read_bursts_remaining - 16)
with m.Else():
m.d.sync_100 += self.ARLEN.eq(self.read_bursts_remaining-1)
m.d.sync_100 += self.read_bursts_remaining.eq(0)
m.d.sync_100 += self.read_current_burst.eq(0)
m.d.sync_100 += self.ARVALID.eq(1)
m.next = "get_read_data_wait"
with m.State("get_read_data_wait"):
with m.If(self.read_addr_complete):
m.d.sync_100 += self.ARVALID.eq(0)
with m.If(self.RVALID & self.internal_axi_write_ready):
m.d.sync_100 += self.RREADY.eq(1)
m.d.comb += self.internal_axi_write_data.eq(self.RDATA)
with m.Else():
m.d.sync_100 += self.RREADY.eq(0)
#m.d.comb += self.internal_axi_write_enable.eq(0)
with m.If(self.RVALID & self.RREADY):
m.d.sync_100 += self.internal_axi_write_address.eq(self.internal_axi_write_address + 1)
m.d.sync_100 += self.read_current_burst.eq(self.read_current_burst + 1)
m.d.comb += self.internal_axi_write_enable.eq(1)
with m.If(self.RLAST):
#m.d.comb += self.internal_axi_write_enable.eq(0)
with m.If(self.read_bursts_remaining != 0):
m.d.sync_100 += self.ARADDR.eq(self.ARADDR + 16*8)
m.next = "set_read_address"
with m.Elif(self.read_stage != len(self.read_stages)-1):
m.d.sync_100 += self.read_stage.eq(self.read_stage + 1)
m.next = "get_read_config"
with m.Else():
m.next = "idle"
with m.Else():
m.d.comb += self.internal_axi_write_enable.eq(0)
# main cycle trigger timer
with m.If(self.cycle_timer == 0):
m.d.sync_25 += self.cycle_timer.eq(self.cycle_timer_config)
with m.Else():
m.d.sync_25 += self.cycle_timer.eq(self.cycle_timer - 1)
# with m.If(self.cycle_timer == 0):
# m.d.comb += self.debug_pins[3].eq(1)
m.d.comb += [
# self.debug_pins[4].eq(self.shift_dma.start),
# self.debug_pins[5].eq(self.shift_dma.busy),
# self.debug_pins[6].eq(self.axi_transfer_start),
# self.debug_pins[7].eq(self.axi_transfer_busy),
self.memory_update_running.eq(self.axi_transfer_busy),
self.memory_update_done.eq(~self.axi_transfer_busy),
self.dma_cycle_running.eq(self.shift_dma.busy),
self.dma_cycle_done.eq(~self.shift_dma.busy),
]
with m.FSM(init="idle", domain="sync_25"):
with m.State("idle"):
#m.d.sync_100 += self.pl_ps_interrupts[0].eq(0)
with m.If(self.cycle_timer == 0):
with m.If(self.cycle_timer_config != 0): # writing zero to the timer will permanently stop the system (must be done before FPGA reconfiguration)
with m.If(self.watchdog_counter != 0): # dma allowed to run
m.d.sync_100 += self.watchdog_counter.eq(self.watchdog_counter - 1)
m.next = "start_dma"
with m.Else(): # watchdog has expired, dma cannot run, but axi transfers are still allowed
m.next = "start_axi_transfer"
with m.If(self.watchdog_register != self.last_watchdog_value): # new watchdog value written
m.d.sync_100 += self.last_watchdog_value.eq(self.watchdog_register)
m.d.sync_100 += self.watchdog_counter.eq(16) # reset the watchdog counter
with m.State("start_dma"):
m.d.sync_100 += self.shift_dma.start.eq(1)
#m.d.sync_100 += self.memory_update_running.eq(0)
#m.d.sync_100 += self.memory_update_done.eq(0)
#m.d.sync_100 += self.dma_cycle_done.eq(0)
#m.d.sync_100 += self.dma_cycle_running.eq(1)
m.next = "run_dma"
with m.State("run_dma"):
m.d.sync_100 += self.shift_dma.start.eq(0)
with m.If(~self.shift_dma.busy):
#m.d.sync_100 += self.dma_cycle_done.eq(1)
#m.d.sync_100 += self.dma_cycle_running.eq(0)
m.next = "start_axi_transfer"
with m.State("start_axi_transfer"):
m.d.sync_100 += self.axi_transfer_start.eq(1)
#m.d.sync_100 += self.memory_update_running.eq(1)
m.next = "wait_axi_transfer"
with m.State("wait_axi_transfer"):
m.d.sync_100 += self.axi_transfer_start.eq(0)
with m.If(~self.axi_transfer_busy):
#m.d.sync_100 += self.memory_update_running.eq(0)
#m.d.sync_100 += self.memory_update_done.eq(1)
#m.d.sync_100 += self.pl_ps_interrupts[0].eq(1)
m.next = "idle"
# connect rtl nodes
device_map = {}
device_map["controller"] = self.rm.export()
previous_node_outputs = {
"read_address" : self.shift_dma.read_bram_address_output,
"write_address" : self.shift_dma.write_bram_address_output,
"read_node" : self.shift_dma.read_node_address_output,
"write_node" : self.shift_dma.write_node_address_output,
"data" : self.shift_dma.data_output,
"read_complete" : self.shift_dma.read_complete_output,
"write_complete" : self.shift_dma.write_complete_output
}
node_address = 1
for node_name, node_object in self.nodes.items(): # nodes are rtl modules that are linked together by the shift dma, they must have a shift dma node interface
# add node to submodule list
try:
temp = m.submodules[node_name]
raise Exception(f"Node name {node_name} is already in use, choose another name for external node")
except AttributeError:
pass
if(node_address >= 256):
raise Exception("Too many nodes, max is 255")
m.submodules[node_name] = node_object
#TODO: make these connections use amaranth's connect function
# connect shift dma signals
try:
node_object.address = node_address
m.d.sync_100 += [
node_object.read_bram_address_input.eq(previous_node_outputs["read_address"]),
node_object.write_bram_address_input.eq(previous_node_outputs["write_address"]),
node_object.read_node_address_input.eq(previous_node_outputs["read_node"]),
node_object.write_node_address_input.eq(previous_node_outputs["write_node"]),
node_object.data_input.eq(previous_node_outputs["data"]),
node_object.read_complete_input.eq(previous_node_outputs["read_complete"]),
node_object.write_complete_input.eq(previous_node_outputs["write_complete"]),
]
previous_node_outputs = {
"read_address" : node_object.read_bram_address_output,
"write_address" : node_object.write_bram_address_output,
"read_node" : node_object.read_node_address_output,
"write_node" : node_object.write_node_address_output,
"data" : node_object.data_output,
"read_complete" : node_object.read_complete_output,
"write_complete" : node_object.write_complete_output
}
except AttributeError:
# node does not have dma interface, attempt to connect using a bram interface
m.submodules[f"{node_name}_shift_dma_{node_address}"] = shift_dma = shift_dma_node(node_address)
try:
m.d.sync_100 += [
shift_dma.read_bram_address_input.eq(previous_node_outputs["read_address"]),
shift_dma.write_bram_address_input.eq(previous_node_outputs["write_address"]),
shift_dma.read_node_address_input.eq(previous_node_outputs["read_node"]),
shift_dma.write_node_address_input.eq(previous_node_outputs["write_node"]),
shift_dma.data_input.eq(previous_node_outputs["data"]),
shift_dma.read_complete_input.eq(previous_node_outputs["read_complete"]),
shift_dma.write_complete_input.eq(previous_node_outputs["write_complete"]),
]
m.d.comb += [
node_object.bram_address.eq(shift_dma.bram_address),
node_object.bram_write_data.eq(shift_dma.bram_write_data),
node_object.bram_write_enable.eq(shift_dma.bram_write_enable),
shift_dma.bram_read_data.eq(node_object.bram_read_data),
]
previous_node_outputs = {
"read_address" : shift_dma.read_bram_address_output,
"write_address" : shift_dma.write_bram_address_output,
"read_node" : shift_dma.read_node_address_output,
"write_node" : shift_dma.write_node_address_output,
"data" : shift_dma.data_output,
"read_complete" : shift_dma.read_complete_output,
"write_complete" : shift_dma.write_complete_output
}
except AttributeError:
# node does not have dma interface or bram interface, cannot connect
raise Exception(f"Node {node_name} does not have a dma or bram interface, cannot connect to shift dma")
# TODO: get register map from node and add to the main register map
device_map[f"node_{node_address}_{node_name}"] = {
"node_address" : node_address,
"node" : node_object.rm.export()
}
# TODO: figure out how to handle card/slot IO (muxes?)
node_address += 1
# temporary hack to hardcode serial cards to slot IO
card_B = m.submodules["serial_card_B"]
m.d.comb += [
card_B.slotIn.eq(self.slot_B_in),
self.slot_B_out.eq(card_B.slotOut),
self.slot_B_out_enable.eq(card_B.slotOutEnable),
]
card_C = m.submodules["serial_card_C"]
m.d.comb += [
card_C.slotIn.eq(self.slot_C_in),
self.slot_C_out.eq(card_C.slotOut),
self.slot_C_out_enable.eq(card_C.slotOutEnable),
]
# fanuc encoders on ports 9 and 10
encoders = m.submodules["fanuc_encoders"]
m.d.comb += [
encoders.rx[0].eq(card_C.rs422_rx[8]),
card_C.rs422_tx[8].eq(encoders.tx[0]),
encoders.rx[1].eq(card_C.rs422_rx[9]),
card_C.rs422_tx[9].eq(encoders.tx[1]),
#self.debug_pins[0].eq(encoders.tx[0]),
#self.debug_pins[1].eq(encoders.rx[0]),
]
# yaskawa encoders on ports 1-6
yaskawa_encoders = m.submodules["yaskawa_encoders"]
for encoder_index in range(6):
m.d.comb += yaskawa_encoders.rx[encoder_index].eq(card_C.rs485_rx[encoder_index])
m.d.comb += card_C.rs485_tx[encoder_index].eq(yaskawa_encoders.tx[encoder_index])
m.d.comb += card_C.rs485_tx_enable[encoder_index].eq(yaskawa_encoders.tx_enable[encoder_index])
# m.d.comb += self.debug_pins.eq(yaskawa_encoders.debug)
# m.d.comb += [
# self.debug_pins[0].eq(yaskawa_encoders.tx[0]),
# self.debug_pins[1].eq(yaskawa_encoders.tx_enable[0]),
# self.debug_pins[2].eq(yaskawa_encoders.rx[0]),
# self.debug_pins[3].eq(self.slot_C_out[18]),
# self.debug_pins[4].eq(self.slot_C_out_enable[18]),
# self.debug_pins[5].eq(self.slot_C_out[19]),
# self.debug_pins[6].eq(self.slot_C_out_enable[19]),
# ]
serial_controller_A = m.submodules["em_serial_controller_A"]
serial_controller_B = m.submodules["em_serial_controller_B"]
serial_controller_C = m.submodules["em_serial_controller_C"]
serial_controller_D = m.submodules["em_serial_controller_D"]
m.d.comb += [
# drives A
serial_controller_A.rx.eq(card_B.rs422_rx[1]),
card_B.rs422_tx[1].eq(serial_controller_A.tx),
# drives B
serial_controller_B.rx.eq(card_B.rs422_rx[9]),
card_B.rs422_tx[9].eq(serial_controller_B.tx),
# ESTOP board
serial_controller_C.rx.eq(card_B.rs422_rx[8]),
card_B.rs422_tx[8].eq(serial_controller_C.tx),
# 6d mouse
serial_controller_D.rx.eq(card_B.rs422_rx[0]),
card_B.rs422_tx[0].eq(serial_controller_D.tx),
self.debug_pins[0].eq(serial_controller_A.tx),
self.debug_pins[1].eq(serial_controller_A.rx),
self.debug_pins[2].eq(serial_controller_B.tx),
self.debug_pins[3].eq(serial_controller_B.rx),
self.debug_pins[4].eq(serial_controller_C.tx),
self.debug_pins[5].eq(serial_controller_C.rx),
self.debug_pins[6].eq(serial_controller_D.tx),
self.debug_pins[7].eq(serial_controller_D.rx),
# self.debug_pins[0:6].eq(serial_controller_B.debugPins[0:5]),
# self.debug_pins[6].eq(serial_controller_B.tx),
# self.debug_pins[7].eq(serial_controller_B.rx),
]
#m.d.comb += self.debug_pins[0:6].eq(self.shift_dma.timer_count)
# m.d.comb += self.debug_pins[0].eq(serial_controller_C.tx)
# m.d.comb += self.debug_pins[1].eq(serial_controller_C.rx)
# m.d.comb += self.debug_pins[2].eq(serial_controller_C.debugPins_fsm[0])
# m.d.comb += self.debug_pins[3].eq(serial_controller_C.debugPins_fsm[1])
# m.d.comb += self.debug_pins[4].eq(serial_controller_C.debugPins_fsm[2])
# m.d.comb += self.debug_pins[5].eq(serial_controller_C.debugPins_fsm[3])
# m.d.comb += self.debug_pins[6].eq(serial_controller_C.debugPins_fsm[4])
# m.d.comb += self.debug_pins[2].eq(serial_controller_A.rx_invalid_crc_fault)
# m.d.comb += self.debug_pins[3].eq(serial_controller_A.rx_not_finished_fault)
# m.d.comb += self.debug_pins[4].eq(serial_controller_A.rx_no_response_fault)
# with m.If((self.shift_dma.read_node_address_input == 4) & (self.shift_dma.read_bram_address_input == 0x1)): # read dev 0 status
# m.d.comb += self.debug_pins[2].eq(1)
# m.d.comb += self.debug_pins[3].eq(self.shift_dma.data_input[0])
# m.d.comb += self.debug_pins[4].eq(self.shift_dma.data_input[1])
# m.d.comb += self.debug_pins[5].eq(self.shift_dma.data_input[2])
# m.d.comb += self.debug_pins[6].eq(self.shift_dma.data_input[3])
# with m.If((self.shift_dma.write_node_address_input == 0) & (self.shift_dma.write_bram_address_input == 6)):
# m.d.comb += self.debug_pins[3].eq(1)
# with m.If((self.shift_dma.data_memory_address == 8) & (self.shift_dma.data_memory_write_enable == 1)):
# m.d.comb += self.debug_pins[2].eq(1)
# m.d.comb += self.debug_pins[3].eq(self.shift_dma.data_memory_write_data[0])
# m.d.comb += self.debug_pins[4].eq(self.shift_dma.data_memory_write_data[1])
# m.d.comb += self.debug_pins[5].eq(self.shift_dma.data_memory_write_data[2])
# m.d.comb += self.debug_pins[6].eq(self.shift_dma.data_memory_write_data[3])
#m.d.comb += self.debug_pins[5].eq(self.axi_transfer_busy)
# m.d.comb += self.debug_pins[3].eq(serial_controller.bram_write_data[0])
# m.d.comb += self.debug_pins[4].eq(serial_controller.bram_write_enable)
# m.d.comb += self.debug_pins[3].eq(self.instruction_read_address[1])
# m.d.comb += self.debug_pins[4].eq(self.instruction_read_address[2])
# m.d.comb += self.debug_pins[5].eq(self.instruction_read_address[3])
# m.d.comb += self.debug_pins[6].eq(self.instruction_read_address[4])
# m.d.comb += self.debug_pins[7].eq(self.instruction_read_address[5])
#m.d.comb += self.debug_pins.eq(m.submodules.fanuc_encoders.debug)
# connect last node back to dma controller
m.d.sync_100 += [
self.shift_dma.read_node_address_input.eq(previous_node_outputs["read_node"]),
self.shift_dma.write_node_address_input.eq(previous_node_outputs["write_node"]),
self.shift_dma.read_bram_address_input.eq(previous_node_outputs["read_address"]),
self.shift_dma.write_bram_address_input.eq(previous_node_outputs["write_address"]),
self.shift_dma.data_input.eq(previous_node_outputs["data"]),
self.shift_dma.read_complete_input.eq(previous_node_outputs["read_complete"]),
self.shift_dma.write_complete_input.eq(previous_node_outputs["write_complete"]),
]
import json
with open("fpga_config.json", "w") as file:
json.dump(device_map, file, indent=4)
return m
def create_instruction(source_node, destination_node, source_address, destination_address, instruction):
data = source_node | (destination_node << 8) | (source_address << 16) | (destination_address << 32) | (instruction << 48)
return data
sim = 0
s = [
{"mode": "17bit"},
{"mode": "17bit"},
{"mode": "17bit"},
{"mode": "16bit"},
{"mode": "16bit"},
{"mode": "16bit"}
]
print(f"{bcolors.OKGREEN}=== GENERATING MODULES ==={bcolors.ENDC}")
nodes = {
"serial_card_B" : serial_interface_card(),
"serial_card_C" : serial_interface_card(),
"fanuc_encoders" : Fanuc_Encoders(2),
"yaskawa_encoders" : Yaskawa_Encoders(6, s),
#"global_timers" : Global_Timers(),
"em_serial_controller_A" : EM_Serial_Controller(max_packet_size=8, max_number_of_devices=5),
"em_serial_controller_B" : EM_Serial_Controller(max_packet_size=8, max_number_of_devices=4),
"em_serial_controller_C" : EM_Serial_Controller(max_packet_size=8, max_number_of_devices=2),
"em_serial_controller_D" : EM_Serial_Controller(max_packet_size=8, max_number_of_devices=2),
}
dut = Controller(nodes, sim)
async def controller_test(ctx):
ocm = {}
for i in range(dut.PS_TO_PL_CONTROL_SIZE // 8):
ocm[f"0x{dut.OCM_BASE_ADDR + dut.PS_TO_PL_CONTROL_OFFSET + i*8:08x}"] = 0x10
for i in range(dut.PL_TO_PS_CONTROL_SIZE // 8):
ocm[f"0x{dut.OCM_BASE_ADDR + dut.PL_TO_PS_CONTROL_OFFSET + i*8:08x}"] = 0x4
for i in range(dut.PS_TO_PL_DATA_SIZE // 8):
ocm[f"0x{dut.OCM_BASE_ADDR + dut.PS_TO_PL_DATA_OFFSET + i*8:08x}"] = 0x5
for i in range(dut.PL_TO_PS_DATA_SIZE // 8):
ocm[f"0x{dut.OCM_BASE_ADDR + dut.PL_TO_PS_DATA_OFFSET + i*8:08x}"] = 0x6
for i in range(dut.PS_TO_PL_DMA_INSTRUCTION_SIZE // 8):
instruction = create_instruction(2, 0, 0, 0, dut.shift_dma.Instruction.COPY)
if(i != 0):
instruction = create_instruction(0, 0, 0, 0, dut.shift_dma.Instruction.NOP)
ocm[f"0x{dut.OCM_BASE_ADDR + dut.PS_TO_PL_DMA_INSTRUCTION_OFFSET + i*8:08x}"] = instruction
#ocm["0x000F0000"] = 0x10 # cycle timer config
RVALID_OFF = 0
read_burst_count = 0
write_base_addr = 0
read_base_addr = 0
await ctx.tick("sync_200").repeat(2)
for i in range(1000):
await ctx.tick("sync_200").repeat(2)
ctx.set(dut.RVALID, not RVALID_OFF)
for x in range(1):
# write axi
if(ctx.get(dut.AWVALID)):
ctx.set(dut.AWREADY, 1)
write_base_addr = ctx.get(dut.AWADDR)
break
ctx.set(dut.AWREADY, 0)
if(ctx.get(dut.WVALID)):
#await ctx.tick("sync_200").repeat(2)
ctx.set(dut.WREADY, 1)
if(f"0x{write_base_addr:08x}" not in ocm):
raise Exception(f"Write address 0x{write_base_addr:08x} not in OCM")
ocm[f"0x{write_base_addr:08x}"] = ctx.get(dut.WDATA)
write_base_addr += 8
break
ctx.set(dut.WREADY, 0)
if(ctx.get(dut.BREADY) & ctx.get(dut.WLAST)):
ctx.set(dut.BVALID, 1)
break
ctx.set(dut.BVALID, 0)
for x in range(1):
# read axi
if(ctx.get(dut.ARVALID)):
ctx.set(dut.ARREADY, 1)
ctx.set(dut.RVALID, 1)
read_burst_count = ctx.get(dut.ARLEN)-1
read_base_addr = ctx.get(dut.ARADDR)
if(f"0x{read_base_addr:08x}" not in ocm):
raise Exception(f"Read address 0x{read_base_addr:08x} not in OCM")
ctx.set(dut.RDATA, ocm[f"0x{read_base_addr:08x}"])
ctx.set(dut.RLAST, 0)
RVALID_OFF = 0
break
ctx.set(dut.ARREADY, 0)
if(ctx.get(dut.RREADY) and ctx.get(dut.RVALID) and read_burst_count != 0):
#RVALID_OFF = 1
read_burst_count -= 1
read_base_addr += 8
if(f"0x{read_base_addr:08x}" not in ocm):
raise Exception(f"Read address 0x{read_base_addr:08x} not in OCM")
ctx.set(dut.RDATA, ocm[f"0x{read_base_addr:08x}"])
break
if(read_burst_count == 0):
RVALID_OFF = 1
ctx.set(dut.RLAST, 1)
break
return
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKCYAN = '\033[96m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
if __name__ == "__main__":
#print(f"0x{create_instruction(0, 0, 0x1000//4, 0x0, shift_dma_controller.Instruction.COPY):016x}")
if(sim):
from amaranth.sim import Simulator
sim = Simulator(dut)
sim.add_clock(1/200e6, domain="sync_200")
sim.add_clock(1/100e6, domain="sync_100")
sim.add_clock(1/50e6, domain="sync_50")
sim.add_clock(1/25e6, domain="sync_25")
sim.add_testbench(controller_test)
with sim.write_vcd("controller_test.vcd"):
sim.run()
if (not sim): # export
# check drive S exists for vivado project
if not os.path.exists("S:/Vivado"):
print(f"{bcolors.FAIL}Drive S subst path does not exist, please run 'create subst path vivado' task from vs code{bcolors.ENDC}")
exit()
top = Controller(nodes, sim)
# TODO: automatically run vivado from here to generate the bitstream file
print(f"\n\n{bcolors.OKGREEN}=== GENERATING VERILOG FILE ==={bcolors.ENDC}")
from amaranth.back import verilog
import os
output_dir = "controller-firmware/Vivado/autogen_sources"
os.makedirs(output_dir, exist_ok=True)
with open(os.path.join(output_dir, "controller.v"), "w") as f:
f.write(verilog.convert(top, name="Controller"))
print(f"\n\n{bcolors.OKGREEN}=== SYSTHESIZING AND GENERATING BITSTREAM ==={bcolors.ENDC}")
print(f"{bcolors.WARNING}=== THIS MAY TAKE A WHILE ==={bcolors.ENDC}")
print(f"{bcolors.WARNING}=== check build.log for any issues ==={bcolors.ENDC}")
# run vivado from here to generate the bitstream file
vivado_settings = r"C:\Xilinx\Vivado\2023.1\settings64.bat"
tcl_script = "S:/Vivado/build.tcl"
# Build a single command line for cmd.exe
cmd_line = (
f'call "{vivado_settings}" && '
f'vivado -mode batch -nojournal -log build.log -source "{tcl_script}"'
)
proc = subprocess.Popen(
cmd_line,
shell=True, # needed to run .bat and use &&
stdout=subprocess.PIPE, # capture both streams
stderr=subprocess.STDOUT,
text=True,
bufsize=1, # line buffered
)
# Print each line as it arrives:
for line in proc.stdout:
print(line, end="") # already includes newline
ret = proc.wait()
if ret:
raise subprocess.CalledProcessError(ret, cmd_line)
print(f"\n\n{bcolors.OKGREEN}=== vivado build log in build.log ==={bcolors.ENDC}")
print(f"{bcolors.OKGREEN}=== bitfile.bit.bin generated ==={bcolors.ENDC}")
print(f"{bcolors.OKGREEN}=== fpga_config.json generated ==={bcolors.ENDC}")
print(f"\n{bcolors.OKGREEN}=== DONE ==={bcolors.ENDC}")
|