| 
									
										
										
										
											2019-06-04 22:57:48 +08:00
										 |  |  | #!/usr/bin/perl | 
					
						
							| 
									
										
										
										
											2020-05-16 02:28:59 +08:00
										 |  |  | # SPDX-License-Identifier: Apache-2.0 | 
					
						
							|  |  |  | # Copyright 2020 Western Digital Corporation or its affiliates. | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  | # you may not use this file except in compliance with the License. | 
					
						
							|  |  |  | # You may obtain a copy of the License at | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # http://www.apache.org/licenses/LICENSE-2.0 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  | # distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  | # See the License for the specific language governing permissions and | 
					
						
							|  |  |  | # limitations under the License. | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											2019-06-04 22:57:48 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | use Getopt::Long; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | use integer; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | $helpusage = "placeholder"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | GetOptions ('total_int=s'       => \$total_int)|| die("$helpusage"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | $LEN=15; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #printf("logic [2:0] mask;\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | printf("// mask[3:0] = { 4'b1000 - 30b mask,4'b0100 - 31b mask, 4'b0010 - 28b mask, 4'b0001 - 32b mask }\n"); | 
					
						
							|  |  |  | printf("always_comb begin\n"); | 
					
						
							|  |  |  | printf("  case \(address[14:0]\)\n"); | 
					
						
							|  |  |  | printf("    15'b011000000000000 : mask[3:0] = 4'b0100;\n"); | 
					
						
							|  |  |  | for ($i=1; $i<=$total_int; $i++) { | 
					
						
							|  |  |  |     $j=hex("4000"); | 
					
						
							|  |  |  |     printf("    15'b%s : mask[3:0] = 4'b1000;\n",d2b($j+$i*4)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | for ($i=1; $i<=$total_int; $i++) { | 
					
						
							|  |  |  |     $j=hex("2000"); | 
					
						
							|  |  |  |     printf("    15'b%s : mask[3:0] = 4'b0100;\n",d2b($j+$i*4)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | for ($i=1; $i<=$total_int; $i++) { | 
					
						
							|  |  |  |     $j=hex("0"); | 
					
						
							|  |  |  |     printf("    15'b%s : mask[3:0] = 4'b0010;\n",d2b($j+$i*4)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  |     printf("    %-17s : mask[3:0] = 4'b0001;\n","default"); | 
					
						
							|  |  |  | printf("  endcase\n"); | 
					
						
							|  |  |  | printf("end\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | sub b2d { | 
					
						
							|  |  |  |     my ($v) = @_; | 
					
						
							| 
									
										
										
										
											2020-02-20 10:25:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-04 22:57:48 +08:00
										 |  |  |     $v = oct("0b" . $v); | 
					
						
							| 
									
										
										
										
											2020-02-20 10:25:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-04 22:57:48 +08:00
										 |  |  |     return($v); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | sub d2b { | 
					
						
							|  |  |  |     my ($v) = @_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     my $repeat; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     $v = sprintf "%b",$v; | 
					
						
							|  |  |  |     if (length($v)<$LEN) { | 
					
						
							| 
									
										
										
										
											2020-02-20 10:25:04 +08:00
										 |  |  |         $repeat=$LEN-length($v); | 
					
						
							|  |  |  |         $v="0"x$repeat.$v; | 
					
						
							| 
									
										
										
										
											2019-06-04 22:57:48 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     elsif (length($v)>$LEN) { | 
					
						
							| 
									
										
										
										
											2020-02-20 10:25:04 +08:00
										 |  |  |         $v=substr($v,length($v)-$LEN,$LEN); | 
					
						
							| 
									
										
										
										
											2019-06-04 22:57:48 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return($v); | 
					
						
							|  |  |  | } |