serdes.CDR
Description
The serdes.CDR
System object™ provides clock sampling times and estimates data symbols at the receiver using a
first order phase tracking CDR model. For more information, see
Clock and Data Recovery in SerDes System.
To provide clock data locations:
Create the
serdes.CDR
object and set its properties.Call the object with arguments, as if it were a function.
To learn more about how System objects work, see What Are System Objects?
Creation
Description
returns a CDR object that
determines the clock sampling times and estimates the data symbol according to the
Bang-Bang CDR algorithm. It does not return or modify the incoming
waveform.cdr
= serdes.CDR
cdr = serdes.CDR(
sets properties using one or more name-value pairs. Enclose each property name in quotes.
Unspecified properties have default values.Name
,Value
)
Example: cdr = serdes.CDR('Count',8)
returns a CDR object with early
or late CDR count threshold of 8.
Properties
Unless otherwise indicated, properties are nontunable, which means you cannot change their
values after calling the object. Objects lock when you call them, and the
release
function unlocks them.
If a property is tunable, you can change its value at any time.
For more information on changing property values, see System Design in MATLAB Using System Objects.
Main
Count
— Early or late CDR count threshold to trigger phase update
16
(default) | real positive integer ≥4
Early or late CDR count threshold to trigger a phase update, specified as a
unitless real positive integer ≥4. Increasing the value of Count
provides a more stable output clock phase at the expense of convergence speed. Because
the bit decisions are made at the clock phase output, a more stable clock phase has a
better bit error rate (BER).
Count
also controls the bandwidth of the CDR which is
approximately calculated by using the equation:
Data Types: double
Step
— Clock phase resolution
0.0078
(default) | real scalar
Clock phase resolution, specified as a real scalar in fraction of symbol time.
Step
is the inverse of the number of phase adjustments in
CDR.
Data Types: double
PhaseOffset
— Clock phase offset
0
(default) | real scalar in the range [-0.5,0.5]
Clock phase offset, specified as a real scalar in the range [-0.5,0.5] in fraction
of symbol time. PhaseOffset
is used to manually shift clock
probability distribution function (PDF) for better bit error rate (BER).
Data Types: double
ReferenceOffset
— Reference clock offset impairment
0
(default) | real scalar ≤300
Reference clock offset impairment, specified as a real scalar ≤300 in parts per
million (ppm). ReferenceOffset
is the deviation between
transmitter oscillator frequency and receiver oscillator frequency.
Data Types: double
Sensitivity
— Sampling latch meta-stability voltage
0
(default) | real scalar
Sampling latch meta-stability voltage, specified as a real scalar in volts. If the
data sample voltage lies within the region (+/-Sensitivity
),
there is a 50% probability of bit error..
Data Types: double
PhaseDetector
— Clock phase detector option
BangBang
(default) | BaudRateTypeA
Clock phase detector option used in the clock data recovery. You can choose between bang-bang (Alexander) or baud-rate type-A (Mueller-Muller).
Advanced
SymbolTime
— Time of single symbol duration
1e-10
(default) | real scalar
Time of a single symbol duration, specified as a real scalar in s.
Data Types: double
SampleInterval
— Uniform time step of waveform
6.25e-12
(default) | real scalar
Uniform time step of the waveform, specified as a real scalar in s.
Data Types: double
Modulation
— Modulation scheme
2
(default) | 3
| 4
| 8
| 16
Modulation value that specifies the modulation scheme, the number of logic levels
in the encoded signal, specified as 2
, 3
,
4
, 8
, or 16
.
Modulation Value | Modulation Scheme |
---|---|
2 | Non-return to zero (NRZ) |
3 | Three-level pulse amplitude modulation (PAM3) |
4 | Four-level pulse amplitude modulation (PAM4) |
8 | Eight-level pulse amplitude modulation (PAM8) |
16 | Sixteen-level pulse amplitude modulation (PAM16) |
Note
According to IBIS BIRD (Buffer Issue Resolution Document) 213, IBIS-AMI models support any level of signaling from PAM2 (NRZ) to upwards, collectively known as PAMn. If your EDA tool supports it, you can export IBIS-AMI models supporting modulation schemes NRZ, PAM3, PAM4, PAM8, or PAM16.
Data Types: double
WaveType
— Input wave type form
'Sample'
(default) | 'Impulse'
Input wave type form:
'Sample'
— A sample-by-sample input signal.'Impulse'
— An impulse response input signal.
Data Types: char
Usage
Syntax
Input Arguments
x
— Input baseband signal
scalar
Input baseband signal. The input to the CDR must be applied as one sample at a time and not as a vector.
Output Arguments
Phase
— Relative recovered clock phase
units of Symbol Time in the range [0,1]
Relative recovered clock phase, returned as a units of Symbol Time in the range [0,1].
clkAMI
— AMI clock bus
structure
AMI clock bus, returned as a structure consisting of:
ClockTime — Time taken to sample the data signal.
clockValidOnRising — Valid clock time value on the rising edge of a signal
Interior
— Bus containing additional interior CDR signals
structure
Bus containing additional interior CDR signals, returned as a structure consisting of:
clockPhase — Relative clock phase in units of SymbolTime in the range of [0,1].
symbolRecovered — Symbol recovered from data signal at ClockTime.
voltageSample — Voltage observed from the data signal at ClockTime.
PAM4Threshold — The estimated upper eye at PAM4 threshold.
CDRedgeVoltage — The voltage observed from the data signal at ClockTime — SymbolTime/2.
CDRCounter — The bang-bang CDR internal counter used to trigger samples.
CDREarlyLateCounter — The bang-bang CDR accumulated (or filtered) signal used to trigger updated to the CDR phase.
PAM4SymbolMiddleVoltage — Estimated PAM4 symbol voltage of the inner eye outer envelope to estimate PAM4 threshold.
PAM4OuterVoltage — Estimated PAM4 outer envelope voltage to estimate PAM4 threshold.
EyeHeightAbsAve — Estimates eye height.
Object Functions
To use an object function, specify the
System object as the first input argument. For
example, to release system resources of a System object named obj
, use
this syntax:
release(obj)
Examples
Clock Distribution Recovery with CDR
This example shows how to recover clock distribution using serdes.CDR
system object™.
Use a symbol time of 100
ps and 16
samples per symbol. The channel has 5
dB loss.
SymbolTime = 100e-12; SamplesPerSymbol = 16; dt = SymbolTime/SamplesPerSymbol; loss = 5; chan = serdes.ChannelLoss('Loss',loss,'dt',dt,... 'TargetFrequency',1/SymbolTime/2,'RiseTime',SamplesPerSymbol/4*dt);
Create a random data pattern using a pseudorandom binary sequence of order 10.
ord = 10; %PRBS order nrz=prbs(ord,2^ord-1); nrzPattern = nrz(:)' - 0.5; %[0,1] --> [-0.5,0.5]; ChannelPulseResponse = impulse2pulse(chan.impulse, SamplesPerSymbol, dt); waveprbs = pulse2wave(ChannelPulseResponse(:,1),nrzPattern,SamplesPerSymbol); wave2 = [waveprbs; waveprbs];
Create the CDR object that utilizes NRZ modulation scheme.
CDR1 = serdes.CDR('Modulation',2,'Count',8,'Step',1/64,... 'SymbolTime',SymbolTime,'SampleInterval',dt);
Initialize the outputs.
phase = zeros(1,length(wave2)); CDRearlyLateCount = zeros(1,length(wave2));
Feed the waveform one sample at a time through the CDR object.
for ii = 1:length(wave2) [phase(ii), ~, optional] = CDR1(wave2(ii)); CDRearlyLateCount(ii) = optional.CDRearlyLateCount; end
Plot the eye diagram with recovered clock distribution, clock phase vs. time, and early/late count threshold vs. time.
t = (0:length(wave2)-1)/SamplesPerSymbol; teye = (0:SamplesPerSymbol-1)/SamplesPerSymbol; eyed = reshape(wave2,SamplesPerSymbol,[]); figure, subplot(2,2,[1,3]), yyaxis left, plot(teye,eyed, '-b'), title('Eye Diagram with Recovered Clock Distribution') xlabel('Symbol Time'), ylabel('Voltage') yyaxis right, histogram(phase,SamplesPerSymbol/2) set(gca,'YTick',[]) subplot(2,2,2), plot(t,phase) xlabel('Number of Symbols'), ylabel('Symbol Time'); title('Clock Phase vs. Time') subplot(224), plot(t,CDRearlyLateCount) xlabel('Number of Symbols'), ylabel('Count') title('Early/Late Count Threshold vs. Time')
Extended Capabilities
C/C++ Code Generation
Generate C and C++ code using MATLAB® Coder™.
Usage notes and limitations:
IBIS-AMI codegen is not supported in MAC.
Version History
Introduced in R2019a
Beispiel öffnen
Sie haben eine geänderte Version dieses Beispiels. Möchten Sie dieses Beispiel mit Ihren Änderungen öffnen?
MATLAB-Befehl
Sie haben auf einen Link geklickt, der diesem MATLAB-Befehl entspricht:
Führen Sie den Befehl durch Eingabe in das MATLAB-Befehlsfenster aus. Webbrowser unterstützen keine MATLAB-Befehle.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)