Success! Subscription added.
Success! Subscription removed.
Sorry, you must verify to complete this action. Please click the verification link in your email. You may re-send via your profile.
This article describes the basic method and limitations for how one might interconnect a memory controller using a DDR PHY Interface (DFI) to an Altera PHY IP core which uses the Altera PHY Interface (AFI). Altera has never tested this and this is purely a proposal from analyzing both interface specifications. DFI is not officially suported by Altera.
The DDR PHY Interface (DFI) is a industry standard interface protocol that defines the connectivity between a DDR memory controller and a DDR PHY. The specification is managed by Denali Software Inc and allows for easy interchanging between DFI based PHY and memory controllers from different vendors, ASICs, etc
The Altera PHY Interface (AFI) standardizes and simplifies the interface between controller and PHY for Altera’s DDR AltMemPHY and UniPHY IP based memory designs. It allows easy interchange of non Altera controller RTL with Altera's high-performance controllers by including the entire calibration logic (known as the sequencer) in the PHY.
At a very basic level, AFI is a subset of DFI. Overall the interfaces are very similar however the DFI has some features that AFI does not support as listed in the following table:
In developing a bridge to convert DFI to AFI most signals should be able to be connected one to one on the supported sub-interface sections, with the exception of the write interface. These are listed as follows. (AlteMemPHY usually uses the ctl_<> signal name, UniPHY uses afi_<>. Care is required in setting the correct DFI parameters, as mentioned below.
dfi_address => ctl_addr/afi_addr
dfi_bank => ctl_ba/afi_ba
dfi_cas_n => ctl_casn/afi_cas_n
dfi_cke => ctl_cke/afi_cke
dfi_cs_n => ctl_csn/afi_cs_n
dfi_odt => ctl_odt/afi_odt
dfi_ras_n => ctl_rasn/afi_ras_n
dfi_reset_n => ctl_rstn/afi_rst_n
dfi_we_n => ctl_wen/afi_we_n
dfi_wrdata => ctl_wdata/afi_wdata
dfi_wrdata_en => see below
dfi_wrdata_mask => ctl_dm/afi_dm
dfi_rddata_en => ctl_doing_read/afi_rdata_en(_full)
dfi_rddata <= ctl_rdata/afi_rdata
dfi_rddata_valid <= ctl_rdata_valid/afi_rdata_valid
dfi_init_complete <= ctl_cal_success/afi_cal_success
dfi_dram_clk_disable => ctl_mem_clk_disable/afi_mem_clk_disable
The AFI write interface although similar to the DFI interface, it has an extra signal controlling the start of the DQS burst. Care needs to be taken to take the appropriate DFI information and generate this logic correctly. The following is a diagram showing two supported write modes on AFI, depending on whether a full rate or a half rate PHY is being used.
As we can see, they dqs_burst signal goes high (or partially high in the half rate case) one clock cycle before the wdata and wdata_valid is asserted inline with the wdata. Also, (not shown here) is the timing relationship between the write data being presented on AFI relative to the write command being issued on AFI. This is determined by another AFI signal ctl_wlat which provides the controller the calibrated write latency value. The controller must drive ctl_cs_n (for the write command) and then wait ctl_wlat ctl_clk cycles before driving clt_wdata_valid and ctl_wdata.
The DFI write specification is shown in the following diagram (Figure 7 from the DFI specification):
Once the write command is issued, wrdata_en is asserted tphy_wrlat cycles later, wdata is presented a further tphy_wrdata cycles after that.
There are plenty of options here to generate the required AFI logic depending on how the DFI controller is configured. The simplest might be doing the following:
The read interface signals more or less line up one to one however one must ensure that the correct DFI controller has the correct parameter settings. The following diagram shows the timing required for AFI interfaces. Note that AltMemPHY half rate IP uses 2 bits for rdata_en and rdata_valid, these bits should be drive the same. Also note that afi_rdata_en is called ctl_doign_read with AltMemPHY IP. This stays high for as many clock cycles as local side beats that are required, ie. local_size (see Altera's EMI handbook for more info).
DFI has the following timing on reads.
To align this with AFI, trddata_en must be set to zero so that dfi_rdata_en is aligned with the read command. For AltMemPHY designs the calibrated read latency is presented to the AFI interface on signal ctl_rdlat, however UniPHY does not provide this information. This shouldn't be important for most DFI controllers as rddata_valid is provided by the PHY and the controller should be just waiting for it, however if tphy_rdlat is required to be set correctly, most likely one would have to use AltMemPHY.
AFI, DFI, external memory PHY interfaces, Denali , Altera PHY interface, DDR PHY interface
© 2010 Altera Corporation. The material in this wiki page or document is provided AS-IS and is not
supported by Altera Corporation. Use the material in this document at your own risk; it might be, for example, objectionable,
misleading or inaccurate.Retrieved from http://www.alterawiki.com/wiki/Altera_Wiki
Community support is provided Monday to Friday. Other contact methods are available here.
Intel does not verify all solutions, including but not limited to any file transfers that may appear in this community. Accordingly, Intel disclaims all express and implied warranties, including without limitation, the implied warranties of merchantability, fitness for a particular purpose, and non-infringement, as well as any warranty arising from course of performance, course of dealing, or usage in trade.
For more complete information about compiler optimizations, see our Optimization Notice.