Intel® Quartus® Prime Software
Intel® Quartus® Prime Design Software, Design Entry, Synthesis, Simulation, Verification, Timing Analysis, System Design (Platform Designer, formerly Qsys)
16595 Discussions

Gated clock conversion fails due to memory

Alexander_Kobler
927 Views

Hello Intel community,

We use "set_global_assignment -name SYNTH_GATED_CLOCK_CONVERSION ON" for our prototyping system, which contains several memories (RAM, ROM). Up to now, this worked as expected. 

With a new component, which requires an additional RAM block, clock gate conversion fails, reason is "memory in the gated clock tree". The newly introduced memory is also listed in the mapper reports, section "Registers Packed Into Inferred Megafunctions", while all other memories are not listed here!?

Does anybody has a suggestion, how to fix this problem?

 

Thanks & best regards,

Alex

0 Kudos
1 Solution
Alexander_Kobler
795 Views

Hi,

 

Thanks for pointing out these attributes, but unfortunately they do not seem to have an impact on clock gate conversion (CGC)

 

But I've found a solution: instead of using a single write enable (WE) for a 13 bit data word, I've used a WE for each 8 bit data slice. This seems to help the compiler to find a RAM block which is suitable for CGC

Instead of:

 

  wire s_wen;
  assign s_wen = (~CEN) ? WEN : 1'b1;

 

Changed to:

 

wire [1:0] s_wen;
assign s_wen = {2 {(~CEN) ? WEN : 1'b1}};

 

 

See also attached files.

 

Regards

View solution in original post

0 Kudos
8 Replies
sstrell
Honored Contributor III
894 Views

The simplest (and best) solution would be to not gate your clocks.  Manually put that logic on local enables or on the enable of a clock control block instead.

0 Kudos
Alexander_Kobler
891 Views

As already described, this is an ASIC prototyping system, therefore we *need* clock gating and want to test this functionality. 

0 Kudos
Ash_R_Intel
Employee
887 Views

Hi,

Found this Note in the Intel Quartus Prime Pro Edition User Guide: Design Compilation

https://www.intel.com/content/www/us/en/programmable/documentation/zpr1513988353912.html#oji1570030938918


Note: Automatic gated clock conversion supports explicit RAMs (such as WYSIWYG RAMs and Intel FPGA memory IP), but does not support inferred RAMs."


This explains why clock gating did not work for the new RAM component in your design.


Regards


0 Kudos
Alexander_Kobler
851 Views

Hi,

Automatic clock gate conversion works when using a memory block generated by Quartus / qmegwiz, so far so fine.

But why does it work for the attached RAM model 256x39, but not for the 64x13?

 

Regards

0 Kudos
Ash_R_Intel
Employee
832 Views

Hi,

The tool might be placing the low density memory in the LAB elements instead of the RAM blocks.


Regards.


0 Kudos
Alexander_Kobler
820 Views

Hi,

Is it possible to prohibit the tool from using LAB memory, at least for certain instances?

 

Regards

0 Kudos
Alexander_Kobler
796 Views

Hi,

 

Thanks for pointing out these attributes, but unfortunately they do not seem to have an impact on clock gate conversion (CGC)

 

But I've found a solution: instead of using a single write enable (WE) for a 13 bit data word, I've used a WE for each 8 bit data slice. This seems to help the compiler to find a RAM block which is suitable for CGC

Instead of:

 

  wire s_wen;
  assign s_wen = (~CEN) ? WEN : 1'b1;

 

Changed to:

 

wire [1:0] s_wen;
assign s_wen = {2 {(~CEN) ? WEN : 1'b1}};

 

 

See also attached files.

 

Regards

0 Kudos
Reply