xref: /openbmc/linux/Documentation/devicetree/bindings/ptp/ptp-qoriq.txt (revision 7fc38225363dd8f19e667ad7c77b63bc4a5c065d)
1* Freescale QorIQ 1588 timer based PTP clock
2
3General Properties:
4
5  - compatible   Should be "fsl,etsec-ptp" for eTSEC
6                 Should be "fsl,fman-ptp-timer" for DPAA FMan
7  - reg          Offset and length of the register set for the device
8  - interrupts   There should be at least two interrupts. Some devices
9                 have as many as four PTP related interrupts.
10
11Clock Properties:
12
13  - fsl,cksel        Timer reference clock source.
14  - fsl,tclk-period  Timer reference clock period in nanoseconds.
15  - fsl,tmr-prsc     Prescaler, divides the output clock.
16  - fsl,tmr-add      Frequency compensation value.
17  - fsl,tmr-fiper1   Fixed interval period pulse generator.
18  - fsl,tmr-fiper2   Fixed interval period pulse generator.
19  - fsl,max-adj      Maximum frequency adjustment in parts per billion.
20  - fsl,extts-fifo   The presence of this property indicates hardware
21		     support for the external trigger stamp FIFO.
22
23  These properties set the operational parameters for the PTP
24  clock. You must choose these carefully for the clock to work right.
25  Here is how to figure good values:
26
27  TimerOsc     = selected reference clock   MHz
28  tclk_period  = desired clock period       nanoseconds
29  NominalFreq  = 1000 / tclk_period         MHz
30  FreqDivRatio = TimerOsc / NominalFreq     (must be greater that 1.0)
31  tmr_add      = ceil(2^32 / FreqDivRatio)
32  OutputClock  = NominalFreq / tmr_prsc     MHz
33  PulseWidth   = 1 / OutputClock            microseconds
34  FiperFreq1   = desired frequency in Hz
35  FiperDiv1    = 1000000 * OutputClock / FiperFreq1
36  tmr_fiper1   = tmr_prsc * tclk_period * FiperDiv1 - tclk_period
37  max_adj      = 1000000000 * (FreqDivRatio - 1.0) - 1
38
39  The calculation for tmr_fiper2 is the same as for tmr_fiper1. The
40  driver expects that tmr_fiper1 will be correctly set to produce a 1
41  Pulse Per Second (PPS) signal, since this will be offered to the PPS
42  subsystem to synchronize the Linux clock.
43
44  Reference clock source is determined by the value, which is holded
45  in CKSEL bits in TMR_CTRL register. "fsl,cksel" property keeps the
46  value, which will be directly written in those bits, that is why,
47  according to reference manual, the next clock sources can be used:
48
49  For eTSEC,
50  <0> - external high precision timer reference clock (TSEC_TMR_CLK
51        input is used for this purpose);
52  <1> - eTSEC system clock;
53  <2> - eTSEC1 transmit clock;
54  <3> - RTC clock input.
55
56  For DPAA FMan,
57  <0> - external high precision timer reference clock (TMR_1588_CLK)
58  <1> - MAC system clock (1/2 FMan clock)
59  <2> - reserved
60  <3> - RTC clock oscillator
61
62  When this attribute is not used, the IEEE 1588 timer reference clock
63  will use the eTSEC system clock (for Gianfar) or the MAC system
64  clock (for DPAA).
65
66Example:
67
68	ptp_clock@24e00 {
69		compatible = "fsl,etsec-ptp";
70		reg = <0x24E00 0xB0>;
71		interrupts = <12 0x8 13 0x8>;
72		interrupt-parent = < &ipic >;
73		fsl,cksel       = <1>;
74		fsl,tclk-period = <10>;
75		fsl,tmr-prsc    = <100>;
76		fsl,tmr-add     = <0x999999A4>;
77		fsl,tmr-fiper1  = <0x3B9AC9F6>;
78		fsl,tmr-fiper2  = <0x00018696>;
79		fsl,max-adj     = <659999998>;
80	};
81