I am working on an FPGA project which uses nand flash controller to drive an external flash memory. This is my first touch on nand flash. Reading flash memory datasheet is very helpful to understand how it works.
But I found since I have flash controller IP in FPGA, I can set up a simulation environment to verify the whole process and get a better understanding of how flash memory works. The design is straightforward: an arm processor runs inside FPGA which talks to arm AHB bus. The latter talks to flash controller. Note I am not using Xilinx flash controller and I am using an RTL IP. Nand flash controller then talks to an external nand flash memory which is from Micron. Micron provides BFM simulation model for its flash memories. For example, you can find one of the lasted models in:
http://www.micron.com/parts/nand-flash/mass-storage/mt29f64g08ajabawp
In the following, I just use an old one to show the concept and this file is also simplified to just show the concept. Note this simulation model is well written. It not only helps me to understand how nand flash works but also shows me how to write a good Verilog behavioral model.
1. It first defines IO ports and timing parameters. For IO ports, you can check with following table for their functionalities.
If your nand flash controller is RTL without timing in sim, these timing parameters are not important since the driver side is untimed. But it still works. If you run post-par sim with timing back-annotated netlist, these timing parameters are important to verify the interface timing.
2. It then defines mem_array as:
1 |
reg [data_bits - 1 : 0] mem_array [0 : (num_col * num_row) - 1]; |
This array models flash memory cells. This is normally the first thing you want to monitor and check to see for example if data is properly written into flash.
3. It then defines an initial block. Here it uses $readmemh to initialize mem_array.
1 |
$readmemh ("nandflash.txt", mem_array); |
4. It then defines several Verilog tasks, cmnd_reset, clear_data_register, clear_cache_register, load_register, erase_block, and program_page. For example program_page shows how data is moved from data_reg or cache_reg to mem_array.
5. It then defines several always block, address_latch, command_latch, data input, and data output. Command latch is important because it also does command decoding and execution. For example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
// Command (15h) else if (Io [7 : 0] === 8'h15) begin if (command_debug) $display ("At time %0t : Latch Command = 15h", $time); // Command (80h -> 15h: Program from Data Register) if (cmnd_80h && row_valid) begin cmnd_80h = 1'b0; cmnd_15h = 1'b1; program_page (1'b0); end // Terminate Command (80h) if (cmnd_80h && ~row_valid) begin cmnd_80h = 1'b0; end end |
this codes says with input data as 15h, if previous input data is 80h and row is valid, call program_page task to program page with 1’b0. If last input data is 80h but row is not valid, clear 80h status. Otherwise do nothing. This is how flash memory decodes a sequence of input data to detect proper command.
In data output always block, please note how the model generates output with random timing:
1 2 |
end else if (cmnd_70h) begin Io_buf <= #({$random} % 3) status_register; |
6. note throughout the file, you can see something like
1 |
if(debug) $display("ENTRY program_page"); |
or
1 2 |
if (Io [7 : 0] === 8'h70) begin if(debug) $display ("STATUS READ WHILE BUSY : MODE = STATUS"); |
This is what a good model normally does – print the module beh and status to sim log file. It has option to be turned off by user to simplify the log file.
The simplified model is as below:
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 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 |
`timescale 1ns / 1ns `define x8 `define G2 module nand_model_0 (Io, Cle, Ale, Ce_n, We_n, Re_n, Wp_n, Pre, Rb_n); // `include "parameters.v" // Device Parameters `ifdef x8 parameter tRC_min = 30; parameter tRP_min = 15; parameter tRPRE_max = 25; parameter tRR_min = 20; parameter tWC_min = 30; parameter tWP_min = 15; parameter tCEA_max = 23; parameter tCLS_min = 10; parameter tCLH_min = 05; parameter tCS_min = 15; parameter tCH_min = 05; parameter tDS_min = 10; parameter tDH_min = 05; parameter tALS_min = 10; parameter tALH_min = 05; parameter tAR_min = 10; parameter tDCBSYR1_min = 0; parameter tDCBSYR1_max = 2500; parameter tDCBSYR2_min = 2500; parameter tDCBSYR2_max = 25000; parameter tOH_min = 15; parameter tREA_max = 18; parameter tREH_min = 10; parameter tRHZ_max = 30; parameter tRPRE1_max = 25000; parameter tR_max = 25000; parameter tRST_read = 5000; parameter tRST_prog = 10000; parameter tRST_erase = 500000; parameter tWB_max = 100; parameter tWH_min = 10; parameter tWHR_min = 60; `else // Timing Parameters for 3.3Volt x16 and 1.8Volt NAND parts parameter tRC_min = 50; parameter tRP_min = 25; parameter tRPRE_max = 25; parameter tRR_min = 20; parameter tWC_min = 45; parameter tWP_min = 25; parameter tCEA_max = 45; parameter tCLS_min = 25; parameter tCLH_min = 10; parameter tCS_min = 35; parameter tCH_min = 10; parameter tDS_min = 20; parameter tDH_min = 10; parameter tALS_min = 25; parameter tALH_min = 10; parameter tAR_min = 10; parameter tDCBSYR1_min = 0; parameter tDCBSYR1_max = 2500; parameter tDCBSYR2_min = 2500; parameter tDCBSYR2_max = 25000; parameter tOH_min = 15; parameter tREA_max = 30; parameter tREH_min = 15; parameter tRHZ_max = 30; parameter tRPRE1_max = 25000; parameter tR_max = 25000; parameter tRST_read = 5000; parameter tRST_prog = 10000; parameter tRST_erase = 500000; parameter tWB_max = 100; parameter tWH_min = 15; parameter tWHR_min = 60; `endif // parameters for all devices parameter num_page = 64; parameter page_bits = 6; // 2^6=64 parameter tBERS_min = 2000000; parameter tBERS_max = 3000000; parameter tCBSY_min = 3000; parameter tCBSY_max = 700000; parameter tPROG_typ = 300000; parameter tPROG_max = 700000; `ifdef x8 parameter col_bits = 12; parameter data_bits = 8; parameter num_col = 2112; `else parameter col_bits = 12; //NOT A BUG - Makes the implimentation of the model easier. parameter data_bits = 16; parameter num_col = 1056; `endif `ifdef G2 parameter row_bits = 17; parameter blck_bits = 11; // 2^11*Byte=2048 2G `else `ifdef G4 parameter row_bits = 18; parameter blck_bits = 11; // 2^11*Word=4096 for 4G `else `ifdef G8 // coming soon `endif `endif `endif `ifdef FullMem // Only do this if you require the full memmory size. `ifdef G2 parameter num_row = 131072; // PagesXBlocks = 64x2048 for 2G `else `ifdef G4 parameter num_row = 262144; // PagesXBlocks = 64x4096 for 4G `endif // G8 coming soon `endif `else parameter num_row = 1024; // PagesXBlocks = 64x16, 16 Blocks for fast sim load `endif `ifdef G2 `ifdef V33 `ifdef x8 // 2Gig 3.3V by 8 parameter read_id_byte1 = 8'hda; `endif `ifdef x16 // 2Gig 3.3V by 16 parameter read_id_byte1 = 8'hca; `endif `else `ifdef x8 // 2Gig 1.8V by 8 parameter read_id_byte1 = 8'haa; `endif `ifdef x16 // 2Gig 1.8V by 16 parameter read_id_byte1 = 8'hba; `endif `endif `else `ifdef G4 `ifdef V33 `ifdef x8 // 4Gig 3.3V by 8 parameter read_id_byte1 = 8'hdc; `endif `ifdef x16 // 4Gig 3.3V by 16 parameter read_id_byte1 = 8'hcc; `endif `else `ifdef x8 // 4Gig 1.8V by 8 parameter read_id_byte1 = 8'hac; `endif `ifdef x16 // 4Gig 1.8V by 16 parameter read_id_byte1 = 8'hbc; `endif `endif `else `ifdef G8 `ifdef V33 `ifdef x8 // 8Gig 3.3V by 8 parameter read_id_byte1 = 8'hdc; // this is not intuitive but not a bug, see datasheet note `endif `endif `endif `endif `endif parameter PAGESIZE = num_col; parameter read_id_byte0 = 8'h2c; // Micron Manufacturer ID parameter read_id_byte2 = 8'h69; // Dont care `ifdef x8 parameter read_id_byte3 = 8'h15; `else `ifdef x16 parameter read_id_byte3 = 8'h55; `endif `endif // Ports Declaration inout [data_bits - 1 : 0] Io; input Cle; input Ale; input Ce_n; input We_n; input Re_n; input Wp_n; input Pre; output Rb_n; reg Rb_n; reg PowerUp_Complete; reg [data_bits - 1 : 0] Io_buf; assign Io = Io_buf; // Memory Array reg [data_bits - 1 : 0] data_reg [0 : num_col - 1]; reg [data_bits - 1 : 0] cache_reg [0 : num_col - 1]; reg [data_bits - 1 : 0] mem_array [0 : (num_col * num_row) - 1]; reg [data_bits - 1 : 0] special_array [0 : num_col - 1]; //Special array for Read_ID_2 and Read_Unique // Command Decode reg cmnd_00h, cmnd_05h, cmnd_10h, cmnd_15h, cmnd_30h, cmnd_31h, cmnd_35h, cmnd_3Fh, cmnd_60h; reg cmnd_65h, cmnd_70h, cmnd_80h, cmnd_85h, cmnd_90h, cmnd_D0h, cmnd_E0h, cmnd_FFh; reg saw_cmnd_65h; // flag reg saw_cmnd_00h; // flag reg do_read_id_2; // flag reg do_read_unique; // flag reg cmnd_31h_first_time; // flag reg intRb_state; wire debug = 1; wire command_debug = 0; // Address Decode reg [col_bits - 1 : 0] col_addr; reg [row_bits - 1 : 0] row_addr; // Read Status (70h) reg [data_bits - 1 : 0] status_register; // Valid Status reg col_valid, row_valid, data_valid, cache_valid; // Counter reg [12 : 0] col_counter, cache_counter; integer addr_start, addr_stop; integer delay; integer j, k, erablk; // Initialization initial begin PowerUp_Complete = 1'b0; // Initialize FLASH MEMORY to all FFs for (j = 0; j <= num_row - 1; j = j + 1) begin for (k = 0; k <= num_col - 1; k = k + 1) begin mem_array [(j*num_col)+k] = {data_bits{1'b1}}; end end `ifdef x8 $readmemh ("nandflash.txt", mem_array); $readmemh ("read_unq.8.init", special_array); `else $readmemh ("data.16.init", mem_array); $readmemh ("read_unq.16.init", special_array); `endif status_register [6:0] = 7'b1100000; // DEFAULT: ready, ready, 0 0 0, success, success `ifdef x16 status_register [15:8] = 8'h00; // DEFAULT `endif if (Wp_n == 1'b1) begin status_register [7] = 1'b1; end Io_buf = {data_bits{1'bz}}; if (debug) $display("Io_buf Trigger 1"); cmnd_reset (1'b0); // power-on-reset initialization (Hard reset) //PowerOn Auto Read if (Pre === 1) begin if(debug) $display("At time %0t : PO_read starting", $time); if (Rb_n === 1'b0) begin wait (Rb_n === 1'bz); end while (col_counter < num_col) begin if (Re_n === 1) begin wait (Re_n === 0); end else if (Re_n === 0) begin wait (Re_n === 1); wait (Re_n === 0); end Io_buf <= #({$random} % 3) data_reg [col_addr + col_counter]; if (debug) $display("-----------------\nIo_buf Trigger 2"); if (debug) $display("At time %0t : PO_Data Read col=%d col_ctr=%d element = %h", $time, col_addr, col_counter, data_reg[col_addr + col_counter]); col_counter = col_counter + 1; end end wait (Re_n === 1); Io_buf <= #({$random} % 3) {data_bits{1'bz}}; if (debug) $display("Io_buf Trigger 3"); PowerUp_Complete = 1'b1; if(debug) $display("At time %0t : PO_read complete", $time); end // Clear Data Register task clear_data_register; reg [col_bits - 1: 0] i; begin for (i = 0; i <= num_col - 1; i = i + 1) begin data_reg [i] = {data_bits {1'b1}}; //clear == F's in flash end end endtask // Clear Cache Register task clear_cache_register; reg [col_bits - 1: 0] i; begin for (i = 0; i <= num_col - 1; i = i + 1) begin cache_reg [i] = {data_bits {1'b1}}; end end endtask // Load Register // 0 = Load data register // 1 = Load cache register task load_register; input Cached; reg [col_bits -1 : 0] i; reg [col_bits -1 : 0] loadaddr; begin // Random Delay For RB# (tWB) if(debug) $display("ENTRY load_register"); #tWB_max Rb_n = 1'b0; intRb_state = 1'b0; data_valid = 1'b0; status_register [6 : 5] = 2'b00; // Read From Memory Array if (Cached==0) loadaddr=col_addr; if ((Cached==1) && (col_addr==0)) loadaddr=0; if ((Cached==1) && (col_addr>0)) loadaddr=col_addr; for (i = loadaddr; i <= num_col - 1; i = i + 1) begin if(debug) $display("Read mem_array[%d]=%h", (row_addr*num_col)+i, mem_array[(row_addr*num_col)+i]); if (~(&mem_array [(row_addr*num_col)+i])) begin case (Cached) 1'b0 : begin //normal read 0 -> 30 data_reg [i] = mem_array [(row_addr*num_col)+i]; if(debug) $display("load_register NON_CACHED i=%d", i); end 1'b1 : begin //read start for data cache 0 -> 30 -> 31 if (cmnd_31h) begin cache_reg [i] = mem_array [((row_addr+1)*num_col)+i]; if(debug) $display("load_register load cache with NEXT page CACHED-31h i=%d", i); end else begin //copy back read 0 -> 35 cache_reg [i] = mem_array [(row_addr*num_col)+i]; if(debug) $display("load_register load_register load cache with NEXT page CACHED-OTHER i=%d", i); end end endcase if(debug) $display("load_register %d : %d = %h", row_addr, i, data_reg [i]); end end // Delay for RB# (tR) if (cmnd_31h || cmnd_3Fh) begin if (cmnd_31h_first_time === 1'b1) begin delay = (tDCBSYR1_min + ({$random} % (tDCBSYR1_max - tDCBSYR1_min))); end else begin delay = (tDCBSYR2_min + ({$random} % (tDCBSYR2_max - tDCBSYR2_min))); end end else if (cmnd_30h || cmnd_35h) begin delay = (tDCBSYR2_min + ({$random} % (tDCBSYR2_max - tDCBSYR2_min))); end else begin if (~cache_valid) begin delay = (tDCBSYR1_min + ({$random} % (tDCBSYR1_max - tDCBSYR1_min))); end else begin delay = (tDCBSYR2_min + ({$random} % (tDCBSYR2_max - tDCBSYR2_min))); end end while (delay) begin delay = delay - 1; if (Cle && ~We_n && ~Ale && Re_n && ~Ce_n) begin if (Io [7 : 0] === 8'h70) begin if(debug) $display ("STATUS READ WHILE BUSY : MODE = STATUS"); cmnd_70h = 1'b1; end else if (Io [7 : 0] === 8'hFF) begin if(debug) $display ("RESET WHILE BUSY - ABORT"); delay = 1'b0; cmnd_FFh = 1'b1; end end else if (~Re_n && ~Ce_n && We_n && cmnd_70h) begin Io_buf = status_register; end #1; end Rb_n = 1'bz; intRb_state = 1'b1; status_register [6 : 5] = 2'b11; if (~Re_n && ~Ce_n && We_n && cmnd_70h) begin Io_buf = status_register; end if (cmnd_FFh) begin cmnd_reset(1); end end endtask // Erase Block task erase_block; begin // Random Delay For RB# (tWB) #tWB_max; Rb_n = 1'b0; // Go busy intRb_state = 1'b0; status_register [6 : 5] = 2'b00; // Get the block & load FF to the next 64 pages erablk=row_addr/num_page; // get page 0 of the start block if(debug) $display("At time %0t : Erase Block = %0h", $time, erablk); //Load FF to the next 64 pages for (j = 0; j < num_page; j = j + 1) begin for (k = 0; k <= num_col - 1; k = k + 1) begin mem_array [(((erablk*num_page)+j)*num_col)+k] = {data_bits{1'b1}}; end end // Random Delay for RB# (tBERS) #(tBERS_min + ({$random} % (tBERS_max - tBERS_min))); Rb_n = 1'bz; // not busy anymore intRb_state = 1'b1; cmnd_D0h = 1'b0; status_register [6 : 5] = 2'b11; end endtask // Program Page // 0 = normal program // 1 = internal data move task program_page; input move; reg [col_bits - 1: 0] i; begin // Random Delay For RB# (tWB) if(debug) $display("ENTRY program_page"); #tWB_max; Rb_n = 1'b0; intRb_state = 1'b0; status_register [6 : 5] = 2'b00; // Write to Memory Array if (~move) begin //For 80h ->10h or 15h command & For 85 -> 10 alone for (i = col_addr; i <= num_col - 1; i = i + 1) begin if(debug) $display("Write mem_array[%d]=%h", (row_addr*num_col)+i, mem_array[(row_addr*num_col)+i]); if(~(&data_reg [i])) begin mem_array [(row_addr*num_col)+i] = data_reg [i] & mem_array[(row_addr*num_col)+i]; if(debug) $display("At time %0t : Program from Data Register1 (%0h : %0h : %0h) = %0h", $time, row_addr [16 : 6], row_addr [5 : 0], i, data_reg [i]); end end end if (move) begin //For 0 ->35 -> 85h ->10h command for (i = 0; i <= num_col - 1; i = i + 1) begin if(~(&cache_reg [i])) begin mem_array [(row_addr*num_col)+i] = cache_reg [i] & mem_array[(row_addr*num_col)+i]; if(debug) $display("At time %0t : Program from Cache Register (%0h : %0h : %0h) = %0h", $time, row_addr [16 : 6], row_addr [5 : 0], i, cache_reg [i]); end end end // Random Delay for RB# (tPROG) if (cmnd_10h || cmnd_15h) begin if (cmnd_10h) begin delay = (tPROG_typ + ({$random} % (tPROG_max - tPROG_typ))); end else if (cmnd_15h) begin delay = (tCBSY_min + ({$random} % (tCBSY_max - tCBSY_min))); end while (delay) begin delay = delay - 1; if (Cle && ~We_n && ~Ale && Re_n && ~Ce_n) begin if (Io [7 : 0] === 8'h70) begin if(debug) $display ("STATUS READ WHILE BUSY : MODE = STATUS"); cmnd_70h = 1'b1; end else if (Io [7 : 0] === 8'hFF) begin if(debug) $display ("RESET WHILE BUSY - ABORT"); delay = 1'b0; cmnd_FFh = 1'b1; end end else if (~Re_n && ~Ce_n && We_n && cmnd_70h) begin Io_buf = status_register; end #1; end if (cmnd_10h) begin cmnd_10h = 1'b0; end else if (cmnd_15h) begin cmnd_15h = 1'b0; end Rb_n = 1'bz; // Device Ready intRb_state = 1'b1; status_register [6 : 5] = 2'b11; if (~Re_n && ~Ce_n && We_n && cmnd_70h) begin Io_buf = status_register; end if (cmnd_FFh) begin cmnd_reset(1); end end end endtask // Command Reset // 0 = power on reset // 1 = soft reset task cmnd_reset; input reset; begin // Read Status status_register [6 : 5] = 2'b00; Rb_n = 1'b0; intRb_state = 1'b0; // Delay For RB# (tWB) if (~reset) begin delay = tWB_max; for (col_counter = 0; col_counter <= num_col - 1; col_counter = col_counter + 1) begin data_reg [col_counter] = mem_array [{17'b0, col_counter}]; //$display ("reset loading first page %0h = %0h", col_counter, data_reg [col_counter]); end if (Pre) begin // Ready for Auto Read delay = tRPRE1_max; end end else begin // Delay for RB# (tRST) if (cmnd_00h || cmnd_30h || cmnd_05h) begin delay = tRST_read; end else if (cmnd_80h || cmnd_85h || cmnd_10h) begin delay = tRST_prog; end else if (cmnd_60h || cmnd_D0h) begin delay = tRST_erase; end else begin delay = tRST_read; end end // Reset Command cmnd_00h = 1'b0; cmnd_05h = 1'b0; cmnd_10h = 1'b0; cmnd_15h = 1'b0; cmnd_30h = 1'b0; cmnd_31h = 1'b0; cmnd_35h = 1'b0; cmnd_3Fh = 1'b0; cmnd_60h = 1'b0; cmnd_65h = 1'b0; cmnd_70h = 1'b0; cmnd_80h = 1'b0; cmnd_85h = 1'b0; cmnd_90h = 1'b0; cmnd_D0h = 1'b0; cmnd_E0h = 1'b0; cmnd_FFh = 1'b0; // Reset Flags col_valid = 1'b0; col_addr = 0; row_valid = 1'b0; row_addr = 0; data_valid = 1'b0; cache_valid = 1'b0; saw_cmnd_00h = 1'b0; saw_cmnd_65h = 1'b0; do_read_id_2 = 1'b0; do_read_unique = 1'b0; cmnd_31h_first_time = 1'b0; addr_start = 0; addr_stop = 0; Io_buf <= {data_bits{1'bz}}; while (delay != 0) begin delay = delay - 1; if (Cle && ~We_n && ~Ale && Re_n && ~Ce_n) begin if (Io [7 : 0] === 8'h70) begin if(debug) $display ("STATUS READ WHILE BUSY : MODE = STATUS"); cmnd_70h = 1'b1; end else if (Io [7 : 0] === 8'hFF) begin if(debug) $display ("RESET WHILE BUSY - ABORT"); delay = 1'b0; cmnd_FFh = 1'b1; end end else if (~Re_n && ~Ce_n && We_n && cmnd_70h) begin Io_buf = status_register; end #1; end // Ready Rb_n = 1'bz; intRb_state = 1'b1; // Read Status status_register [6 : 5] = 2'b11; if(~Re_n && ~Ce_n && We_n && cmnd_70h) begin Io_buf = status_register; // *** After releasing Rb_n, end // *** the device needs to update // *** the status register 0xe0 also. if(debug) $display("At time %0t : Power-On / Reset : AUTO READ = Ready", $time); // PO Read Enable `ifdef V33 if (Pre) begin col_addr = 0; row_addr = 0; col_counter = 0; col_valid = 1'b1; row_valid = 1'b1; data_valid = 1'b1; end `endif end endtask // Address Latch always @ (posedge We_n) begin if (command_debug) $display ("At time %0t : We_n posedge Address Latch", $time); if (~Cle && Ale && ~Ce_n && We_n && Re_n) begin if (saw_cmnd_00h) begin saw_cmnd_00h = 1'b0; col_valid = 1'b0; row_valid = 1'b0; data_valid = 1'b0; addr_start = 1; addr_stop = 5; end end if (~Cle && Ale && ~Ce_n && We_n && Re_n) begin // Latch Column if (addr_start <= 2 && addr_start <= addr_stop && ~col_valid) begin case (addr_start) 1 : col_addr [7 : 0] = Io [7 : 0]; 2 : col_addr [col_bits - 1 : 8] = Io [16 - col_bits - 1 : 0]; endcase if (addr_start >= 2) begin col_valid = 1'b1; end end // Latch Row if (addr_start >= 3 && addr_start <= addr_stop && ~row_valid) begin case (addr_start) 3 : row_addr [7 : 0] = Io [7 : 0]; 4 : row_addr [15 : 8] = Io [7 : 0]; 5 : row_addr [16] = Io [0]; endcase if (addr_start >= 5) begin row_valid = 1'b1; end end if(debug) $display ("At time %0t : Latch Address (%0h) = %0h", $time, addr_start, Io [7 : 0]); // Increase Address Counter addr_start = addr_start + 1; end end // Latch Wp_n always @ (Wp_n) begin status_register [7] = Wp_n; end // Command Latch always @ (posedge We_n) begin if (command_debug) $display ("At time %0t : We_n posedge Command Latch", $time); if ((intRb_state === 1'b1)) begin if (command_debug) $display ("At time %0t : Command Latch Unlock 1", $time); if (Cle && ~Ale && ~Ce_n && We_n && Re_n) begin if (command_debug) $display ("At time %0t : Command Latch Unlock 2", $time); // Command (00h) if (Io [7 : 0] === 8'h00) begin if (command_debug) $display ("At time %0t : Latch Command = 00h", $time); // This chunk should not execute after 00 -> 30 -> "busy-no-data" -> 70 -> unbusy -> [00] -> data // But it SHOULD execute after 70 -> [00] // cant have ~cmnd_30h here, // cant have ~cmnd_70h here, // if (~cmnd_00h && (Rb_n === 1'bz)) begin if (command_debug) $display ("At time %0t : Latch Command 00h B", $time); cmnd_00h = 1'b1; saw_cmnd_00h = 1'b1; //col_valid = 1'b0; //row_valid = 1'b0; //data_valid = 1'b0; //addr_start = 1; //addr_stop = 5; //end // Command (30h -> 65h -> [00h] -> 30h) if (cmnd_65h) begin if (command_debug) $display ("At time %0t : Latch Command 00h C", $time); cmnd_65h = 1'b0; cmnd_00h = 1'b1; saw_cmnd_00h = 1'b1; col_valid = 1'b0; row_valid = 1'b0; data_valid = 1'b0; addr_start = 1; addr_stop = 5; end // Terminate Command (60h -> D0h) if (cmnd_60h) begin if (command_debug) $display ("At time %0t : Latch Command 00h D", $time); cmnd_60h = 1'b0; end // Terminate Command (70h) if (cmnd_70h) begin if (command_debug) $display ("At time %0t : Latch Command 00h E", $time); cmnd_70h = 1'b0; end // Terminate Command (80h -> [85h] -> 10h) if (cmnd_80h || cmnd_85h) begin if (command_debug) $display ("At time %0t : Latch Command 00h F", $time); cmnd_80h =1'b0; cmnd_85h = 1'b0; end // Terminate Command (90h) if (cmnd_90h) begin if (command_debug) $display ("At time %0t : Latch Command 00h G", $time); cmnd_90h = 1'b0; end end // Command (05h) else if (Io [7 : 0] === 8'h05) begin if (command_debug) $display ("At time %0t : Latch Command = 05h", $time); // Command (00h -> 30h -> 05h -> E0h) if (cmnd_30h && row_valid && (intRb_state === 1'b1)) begin cmnd_05h = 1'b1; col_valid = 1'b0; data_valid = 1'b0; addr_start = 1; addr_stop = 2; end // Terminate Command (90h) if (cmnd_90h) begin cmnd_90h = 1'b0; end end // Command (10h) else if (Io [7 : 0] === 8'h10) begin if (command_debug) $display ("At time %0t : Latch Command = 10h", $time); // Read Status //yyystatus_register [7] = Wp_n; // Command (00h -> 35h -> 85h -> 10h: Program from Cache Register) if ((cmnd_35h && cmnd_85h) && row_valid && (intRb_state === 1'b1)) begin cmnd_10h = 1'b1; cmnd_35h = 1'b0; cmnd_85h = 1'b0; program_page (1'b1); end // Command (85h -> 10h alone: Program from Data Register) if (cmnd_85h && (cmnd_35h==0) && row_valid && (intRb_state === 1'b1)) begin cmnd_10h = 1'b1; cmnd_85h = 1'b0; col_addr = 0; program_page (1'b0); end else // Command (80h -> 10h: Program from Data Register) if (cmnd_80h && row_valid && (intRb_state === 1'b1)) begin cmnd_10h = 1'b1; cmnd_80h = 1'b0; program_page (1'b0); end end // Command (15h) else if (Io [7 : 0] === 8'h15) begin if (command_debug) $display ("At time %0t : Latch Command = 15h", $time); // Command (80h -> 15h: Program from Data Register) if (cmnd_80h && row_valid) begin cmnd_80h = 1'b0; cmnd_15h = 1'b1; program_page (1'b0); end // Terminate Command (80h) if (cmnd_80h && ~row_valid) begin cmnd_80h = 1'b0; end end // Command (30h) else if (Io [7 : 0] === 8'h30) begin if (command_debug) $display ("At time %0t : Latch Command = 30h", $time); cmnd_30h = 1'b1; // Command (00h -> [30h] -> 05h -> E0h) if (cmnd_00h && row_valid && (intRb_state === 1'b1) && ~saw_cmnd_65h) begin if(command_debug) $display ("Command = 30h A"); cmnd_00h = 1'b0; cmnd_30h = 1'b1; col_counter = 0; clear_data_register; load_register (1'b0); data_valid = 1'b1; cache_valid = 1'b0; end // Command (30h -> 65h -> 00 -> [30h]) if (cmnd_00h && row_valid && (intRb_state === 1'b1) && saw_cmnd_65h) begin if(command_debug) $display ("Command = 30h B"); cmnd_30h = 1'b1; if (col_addr == 512) begin // hex 200 (LSB of second Column Address = 02h do_read_id_2 = 1'b1; `ifdef x8 col_counter = 512; // Byte 512 for x8 `else col_counter = 256; // Byte 512 for x16 `endif if(command_debug) $display ("At time %0t : Latch last 30h command for do_read_id_2", $time); end else if (col_addr == 0) begin do_read_unique = 1'b1; col_counter = 0; if(command_debug) $display ("At time %0t : Latch last 30h command for do_read_unique", $time); end else begin if(command_debug)$display ("At time %0t : ERROR invalid col_addr when attemping read_id_2 or read_unique", $time); if(command_debug) $display ("At time %0t : ERROR col_addr = %hh", $time, col_addr); end saw_cmnd_65h = 1'b0; end // Terminate Command (00h) if (cmnd_00h && ~row_valid) begin if(command_debug) $display ("Command = 30h C"); cmnd_00h = 1'b0; end // Terminate Command (90h) if (cmnd_90h) begin if(command_debug) $display ("Command = 30h D"); cmnd_90h = 1'b0; end end // Command (31h) else if (Io [7 : 0] === 8'h31) begin if (command_debug) $display ("At time %0t : Latch Command = 31h", $time); // Command (00h -> 30h -> 31h -> 3Fh) if (cmnd_30h && row_valid) begin // Reset Column Address col_addr = 0; col_counter = 0; // Command (00h -> 30h -> [31h] -> 3Fh) if (~cmnd_31h) begin // If this is the first 31h command cmnd_31h = 1'b1; clear_cache_register; // Clear cache load_register (1'b1); // Load cache // Command (00h -> 30h -> 31h -> [31h] -> 3Fh) end else begin // subsequint 31h commands for (cache_counter = 0; cache_counter <= num_col - 1; cache_counter = cache_counter + 1) begin data_reg [cache_counter] = cache_reg [cache_counter]; end row_addr = {row_addr [16 : 6], (row_addr [5 : 0] + 1'b1)}; clear_cache_register; // Clear cache load_register (1'b1); // Load cache end cache_valid = 1'b1; cmnd_31h_first_time = cmnd_31h_first_time + 1 ; data_valid = 1'b1; end // Terminate Command if (cmnd_30h && ~row_valid) begin cmnd_30h = 1'b0; end // Terminate Command (90h) if (cmnd_90h) begin cmnd_90h = 1'b0; end end // Command (35h) else if (Io [7 : 0] === 8'h35) begin if (command_debug) $display ("At time %0t : Latch Command = 35h", $time); // Command (00h -> 35h -> 85h -> 10h) if (cmnd_00h && row_valid && (intRb_state === 1'b1)) begin cmnd_00h = 1'b0; cmnd_35h = 1'b1; col_valid = 1'b0; row_valid = 1'b0; clear_cache_register; load_register (1'b1); end // Terminate Command (00h) if (cmnd_00h && ~row_valid) begin cmnd_00h = 1'b0; end end // Command (3Fh) else if (Io [7 : 0] === 8'h3F) begin if (command_debug) $display ("At time %0t : Latch Command = 3Fh", $time); // Command (00h -> 30h -> 31h -> 3Fh) if (cmnd_30h && cmnd_31h) begin cmnd_3Fh = 1'b1; col_counter = 0; for (cache_counter = 0; cache_counter <= num_col - 1; cache_counter = cache_counter + 1) begin data_reg [cache_counter] = cache_reg [cache_counter]; end row_addr = {row_addr [16 : 6], (row_addr [5 : 0] + 1'b1)}; clear_cache_register; load_register (1'b1); cmnd_30h = 1'b0; cmnd_31h = 1'b0; cache_valid = 1'b0; data_valid = 1'b1; end // Terminate Command (90h) if (cmnd_90h) begin cmnd_90h = 1'b0; end end // Command (60h) else if (Io [7 : 0] === 8'h60) begin if (command_debug) $display ("At time %0t : Latch Command = 60h", $time); if (~cmnd_60h && Wp_n && (intRb_state === 1'b1)) begin cmnd_60h = 1'b1; row_valid = 1'b0; addr_start = 3; addr_stop = 5; end // Terminate Command (00h -> 30h -> [05h] - [E0h]) if (cmnd_30h || cmnd_05h) begin cmnd_30h = 1'b0; cmnd_05h = 1'b0; data_valid = 1'b0; end // Terminate Command (70h) if (cmnd_70h) begin cmnd_70h = 1'b0; end // Terminate Command (80h -> [85h] -> 10h) if (cmnd_80h || cmnd_85h) begin cmnd_80h =1'b0; cmnd_85h = 1'b0; end // Terminate Command (90h) if (cmnd_90h) begin cmnd_90h = 1'b0; end end // Command (65h) else if (Io [7 : 0] === 8'h65) begin if (command_debug) $display ("At time %0t : Latch Command = 65h", $time); // Terminate Command (30h -> 65h -> [00h]) if (cmnd_30h) begin if(command_debug) $display ("Command = 65h A"); cmnd_30h = 1'b0; cmnd_65h = 1'b1; saw_cmnd_65h = 1'b1; end // Terminate Command (60h -> D0h) if (cmnd_60h) begin if(command_debug) $display ("Command = 65h B"); cmnd_60h = 1'b0; end // Terminate Command (80h -> [85h] -> 10h) if (cmnd_80h || cmnd_85h) begin if(command_debug) $display ("Command = 65h C"); cmnd_80h = 1'b0; cmnd_85h = 1'b0; end end // Command (70h) else if (Io [7 : 0] === 8'h70) begin if (command_debug) $display ("At time %0t : Latch Command1 = 70h", $time); // Status cmnd_70h = 1'b1; // Terminate Command (00h -> 30h -> [05h] - [E0h]) //if (cmnd_30h || cmnd_05h) begin if (cmnd_05h) begin cmnd_30h = 1'b0; cmnd_05h = 1'b0; data_valid = 1'b0; end // Terminate Command (60h -> D0h) if (cmnd_60h) begin cmnd_60h = 1'b0; end // Terminate Command (80h -> [85h] -> 10h) if (cmnd_80h || cmnd_85h) begin cmnd_80h =1'b0; cmnd_85h = 1'b0; end // Terminate Command (90h) if (cmnd_90h) begin cmnd_90h = 1'b0; end end // Command (80h) else if (Io [7 : 0] === 8'h80) begin if (command_debug) $display ("At time %0t : Latch Command = 80h", $time); // Read Status //yyystatus_register [7] = Wp_n; // Command (80h) if (~cmnd_80h && (intRb_state === 1'b1)) begin if (command_debug) $display ("At time %0t : 80h A", $time); cmnd_80h = 1'b1; col_valid = 1'b0; row_valid = 1'b0; addr_start = 1'b1; addr_stop = 5; col_counter = 0; clear_data_register; end // Terminate Command (00h -> 30h -> 05h -> E0h) if (cmnd_00h || cmnd_30h || cmnd_05h) begin if (command_debug) $display ("At time %0t : 80h B", $time); cmnd_00h = 1'b0; cmnd_30h = 1'b0; cmnd_05h = 1'b0; data_valid = 1'b0; end // Terminate Command (00h -> 35h -> 85h -> 10h) if (cmnd_35h || cmnd_85h) begin if (command_debug) $display ("At time %0t : 80h C", $time); cmnd_35h = 1'b0; cmnd_85h = 1'b0; end // Terminate Command (60h -> D0h) if (cmnd_60h) begin if (command_debug) $display ("At time %0t : 80h D", $time); cmnd_60h = 1'b0; end // Terminate Command (70h) if (cmnd_70h) begin if (command_debug) $display ("At time %0t : 80h E", $time); cmnd_70h = 1'b0; end // Terminate Command (90h) if (cmnd_90h) begin if (command_debug) $display ("At time %0t : 80h F", $time); cmnd_90h = 1'b0; end end // Command (85h) else if (Io [7 : 0] === 8'h85) begin if (command_debug) $display ("At time %0t : Latch Command = 85h", $time); // Read Status //yyystatus_register [7] = Wp_n; // Command (00h -> 35h -> 85h -> 10h) if (cmnd_35h && Wp_n && (intRb_state === 1'b1)) begin if (~cmnd_85h) begin cmnd_85h = 1'b1; col_valid = 1'b0; row_valid = 1'b0; addr_start = 1; addr_stop = 5; col_counter = 0; clear_data_register; end else begin col_valid = 1'b0; addr_start = 1; addr_stop = 2; col_counter = 0; end end // Command (80h -> 85h -> 10h) if (cmnd_80h && row_valid && Wp_n && (intRb_state === 1'b1)) begin cmnd_85h = 1'b1; col_valid = 1'b0; addr_start = 1; addr_stop = 2; col_counter = 0; end // Terminate Command (80h -> 85h -> 10h) if (cmnd_80h && ~row_valid) begin cmnd_80h = 1'b0; end // Terminate Command (90h) if (cmnd_90h) begin cmnd_90h = 1'b0; end end // Command (90h) else if (Io [7 : 0] === 8'h90) begin if (command_debug) $display ("At time %0t : Latch Command = 90h", $time); // Command (90h) if (~cmnd_90h) begin cmnd_90h = 1'b1; col_valid = 1'b0; row_valid = 1'b0; addr_start = 1; addr_stop = 0; col_counter = 0; end // Terminate Command (00h -> 30h -> 05h -> E0h) if (cmnd_00h || cmnd_30h || cmnd_05h) begin cmnd_00h = 1'b0; cmnd_30h = 1'b0; cmnd_05h = 1'b0; data_valid = 1'b0; end // Terminate Command (00h -> 35h -> 85h -> 10h) if (cmnd_35h || cmnd_85h) begin cmnd_35h = 1'b0; cmnd_85h = 1'b0; end // Terminate Command (60h -> D0h) if (cmnd_60h) begin cmnd_60h = 1'b0; end // Terminate Command (70h) if (cmnd_70h) begin cmnd_70h = 1'b0; end // Terminate Command (80h -> 85h -> 10h) if (cmnd_80h || cmnd_85h) begin cmnd_80h = 1'b0; cmnd_85h = 1'b0; end end // Command (D0h) else if (Io [7 : 0] === 8'hD0) begin if (command_debug) $display ("At time %0t : Latch Command = D0h", $time); // Read Status //yyystatus_register [7] = Wp_n; // Command (60h -> D0h) if (cmnd_60h && row_valid && Wp_n && (intRb_state === 1'b1)) begin cmnd_60h = 1'b0; cmnd_D0h = 1'b1; erase_block; end // Terminate Command (60h -> D0h) if (cmnd_60h && ~row_valid) begin cmnd_60h = 1'b0; end end // Command (E0h) else if (Io [7 : 0] === 8'hE0) begin if (command_debug) $display ("At time %0t : Latch Command = E0h", $time); // Command (00h -> 30h -> 05h -> E0h) if (cmnd_05h && col_valid) begin data_valid = 1'b1; col_counter = 0; end // Terminate Command (00h -> 30h -> 05h -> E0h) if (cmnd_05h && ~col_valid) begin cmnd_30h = 1'b0; cmnd_05h = 1'b0; data_valid = 1'b0; end end // Command (FFh) Reset Command else if (Io [7 : 0] === 8'hFF) begin if (command_debug) $display ("At time Reset Command %0t : Latch Command = FFh", $time); // Read Status //yyystatus_register [7] = Wp_n; cmnd_reset (1'b1); end end end if (intRb_state == 1'b0) begin // even when buzy we need to do status and reset if(command_debug) $display ("caught we_n posedge with Rb_n low"); if (Cle && ~Ale && ~Ce_n && We_n && Re_n) begin // Command (70h) if (Io [7 : 0] === 8'h70) begin if (command_debug) $display ("At time %0t : Latch Command2 = 70h", $time); // Status cmnd_70h = 1'b1; end // Command (FFh) Reset Command else if (Io [7 : 0] === 8'hFF) begin if (command_debug) $display ("At time Reset Command %0t : Latch Command2 = FFh", $time); // Read Status //yyystatus_register [7] = Wp_n; cmnd_reset (1'b1); end end end if (command_debug) $display ("At time %0t : Command Latch Lock", $time); end // Data Input always @ (posedge We_n) begin if (debug) $display ("At time %0t : We_n posedge Data Input", $time); if (~Cle && ~Ale && ~Ce_n && We_n && Re_n && Wp_n) begin if (col_valid && row_valid && (col_addr + col_counter <= num_col - 1)) begin if(debug) $display ("At time %0t : Latch Data (%0h : %0h : %0h + %0h) = %0h", $time, row_addr [16 : 6], row_addr [5 : 0], col_addr, col_counter, Io); // Load Io data to Cache Register if((cmnd_35h && cmnd_85h) && row_valid && (intRb_state === 1'b1)) cache_reg [col_addr + col_counter] = Io; // Load Io data to Data Register if((cmnd_80h || cmnd_85h) && (cmnd_35h==0) && row_valid && (intRb_state === 1'b1)) data_reg [col_addr + col_counter] = Io; // Increase Column Counter col_counter = col_counter + 1; end end end // Data Output always @ (negedge Re_n) begin if (PowerUp_Complete === 1'b1) begin if (saw_cmnd_00h) begin saw_cmnd_00h = 1'b0; end if (~Cle && ~Ale && ~Ce_n && We_n && ~Re_n && (intRb_state === 1'b1)) begin // Normal Page Read if (~cmnd_70h && col_valid && row_valid && data_valid && (col_addr + col_counter <= num_col - 1)) begin // Data Buffer Io_buf <= #({$random} % 3) data_reg [col_addr + col_counter]; if (debug) $display("Io_buf Trigger 4"); if(debug) $display ("At time %0t : Data Read (%0h : %0h : %0h + %0h) = %0h", $time, row_addr [16 : 6], row_addr [5 : 0], col_addr, col_counter, data_reg [col_addr + col_counter]); // Increase Column Counter col_counter = col_counter + 1; // extra case to drive data bus high z after column boundary is reached end else if (~cmnd_70h && col_valid && row_valid && data_valid && (col_addr + col_counter > num_col - 1)) begin Io_buf <= #({$random} % 3) {data_bits{1'bz}}; if (debug) $display("Io_buf Trigger 5 - col_addr=%h, col_counter=%h, num_col=%h", col_addr, col_counter, num_col); // Status Read end else if (cmnd_70h) begin Io_buf <= #({$random} % 3) status_register; if (debug) $display("Io_buf Trigger 6"); if(debug) $display ("At time %0t : Status Read %0h", $time, status_register); // Read ID 2 end else if (do_read_id_2) begin if(debug) $display ("At time %0t : ReadID2 (%0h)", $time, col_counter); Io_buf <= #({$random} % 3) special_array[col_counter]; if (debug) $display("Io_buf Trigger 7id2"); // Advance counter col_counter = col_counter + 1; // Read Unique end else if (do_read_unique) begin if(debug) $display ("At time %0t : ReadUnique (%0h)=%h", $time, col_counter, special_array[col_counter]); Io_buf <= #({$random} % 3) special_array[col_counter]; if (debug) $display("Io_buf Trigger 7uniq"); // Advance counter col_counter = col_counter + 1; // Read ID end else if (cmnd_90h) begin // Reset Counter if (col_counter > 3) begin col_counter = 0; end case (col_counter) 0 : begin Io_buf <= #({$random} % 3) read_id_byte0; if (debug) $display("Io_buf Trigger 71"); end 1 : begin Io_buf <= #({$random} % 3) read_id_byte1; if (debug) $display("Io_buf Trigger 72"); end 2 : begin Io_buf <= #({$random} % 3) read_id_byte2; if (debug) $display("Io_buf Trigger 73"); end 3 : begin Io_buf <= #({$random} % 3) read_id_byte3; if (debug) $display("Io_buf Trigger 74"); end endcase if(debug) $display ("At time %0t : Read ID (%0h)", $time, col_counter); // Advance counter col_counter = col_counter + 1; // Out of bounds or unknown end else begin Io_buf <= #({$random} % 3) {data_bits{1'bz}}; if(debug) $display("Error: DATA NOT Transfered on Re_n Trigger 8"); end end else begin Io_buf <= #({$random} % 3) {data_bits{1'bz}}; if (debug) $display("Io_buf Trigger 9"); end end end always @ (posedge Re_n) begin if ((~Cle && ~Ale && ~Ce_n && We_n && Re_n) || Ce_n) begin Io_buf <= #(({$random} % 5)+5) {data_bits{1'bz}}; if (debug) $display("Io_buf Trigger 10"); end end endmodule |