blob: 6bc5791a7ec5bb74e44022b17e98d783e6e294cf [file] [log] [blame]
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * PTP hardware clock driver for the IDT ClockMatrix(TM) family of timing and
4 * synchronization devices.
5 *
6 * Copyright (C) 2019 Integrated Device Technology, Inc., a Renesas Company.
7 */
8#include <linux/firmware.h>
Min Li930dfa52021-09-24 15:01:32 -04009#include <linux/platform_device.h>
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -040010#include <linux/module.h>
11#include <linux/ptp_clock_kernel.h>
12#include <linux/delay.h>
Vincent Cheng425d2b12020-05-01 23:35:38 -040013#include <linux/jiffies.h>
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -040014#include <linux/kernel.h>
15#include <linux/timekeeping.h>
Min Li7ea5fda2020-07-28 16:00:30 -040016#include <linux/string.h>
Min Li930dfa52021-09-24 15:01:32 -040017#include <linux/of.h>
18#include <linux/mfd/rsmu.h>
19#include <linux/mfd/idt8a340_reg.h>
20#include <asm/unaligned.h>
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -040021
22#include "ptp_private.h"
23#include "ptp_clockmatrix.h"
24
25MODULE_DESCRIPTION("Driver for IDT ClockMatrix(TM) family");
26MODULE_AUTHOR("Richard Cochran <richardcochran@gmail.com>");
27MODULE_AUTHOR("IDT support-1588 <IDT-support-1588@lm.renesas.com>");
28MODULE_VERSION("1.0");
29MODULE_LICENSE("GPL");
30
Min Li7ea5fda2020-07-28 16:00:30 -040031/*
32 * The name of the firmware file to be loaded
33 * over-rides any automatic selection
34 */
35static char *firmware;
36module_param(firmware, charp, 0);
37
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -040038#define SETTIME_CORRECTION (0)
Min Li930dfa52021-09-24 15:01:32 -040039#define EXTTS_PERIOD_MS (95)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -040040
Min Lida9facf2021-09-13 16:12:34 -040041static int _idtcm_adjfine(struct idtcm_channel *channel, long scaled_ppm);
42
Min Li930dfa52021-09-24 15:01:32 -040043static inline int idtcm_read(struct idtcm *idtcm,
44 u16 module,
45 u16 regaddr,
46 u8 *buf,
47 u16 count)
48{
49 return regmap_bulk_read(idtcm->regmap, module + regaddr, buf, count);
50}
51
52static inline int idtcm_write(struct idtcm *idtcm,
53 u16 module,
54 u16 regaddr,
55 u8 *buf,
56 u16 count)
57{
58 return regmap_bulk_write(idtcm->regmap, module + regaddr, buf, count);
59}
60
Min Li794c3df2021-09-13 16:12:33 -040061static int contains_full_configuration(struct idtcm *idtcm,
62 const struct firmware *fw)
Min Li251f4fe2020-12-08 10:41:54 -050063{
Min Li251f4fe2020-12-08 10:41:54 -050064 struct idtcm_fwrc *rec = (struct idtcm_fwrc *)fw->data;
Min Li794c3df2021-09-13 16:12:33 -040065 u16 scratch = IDTCM_FW_REG(idtcm->fw_ver, V520, SCRATCH);
66 s32 full_count;
Min Li251f4fe2020-12-08 10:41:54 -050067 s32 count = 0;
68 u16 regaddr;
69 u8 loaddr;
70 s32 len;
71
Min Li794c3df2021-09-13 16:12:33 -040072 /* 4 bytes skipped every 0x80 */
73 full_count = (scratch - GPIO_USER_CONTROL) -
74 ((scratch >> 7) - (GPIO_USER_CONTROL >> 7)) * 4;
75
Min Li251f4fe2020-12-08 10:41:54 -050076 /* If the firmware contains 'full configuration' SM_RESET can be used
77 * to ensure proper configuration.
78 *
79 * Full configuration is defined as the number of programmable
80 * bytes within the configuration range minus page offset addr range.
81 */
82 for (len = fw->size; len > 0; len -= sizeof(*rec)) {
83 regaddr = rec->hiaddr << 8;
84 regaddr |= rec->loaddr;
85
86 loaddr = rec->loaddr;
87
88 rec++;
89
90 /* Top (status registers) and bottom are read-only */
Min Li794c3df2021-09-13 16:12:33 -040091 if (regaddr < GPIO_USER_CONTROL || regaddr >= scratch)
Min Li251f4fe2020-12-08 10:41:54 -050092 continue;
93
94 /* Page size 128, last 4 bytes of page skipped */
95 if ((loaddr > 0x7b && loaddr <= 0x7f) || loaddr > 0xfb)
96 continue;
97
98 count++;
99 }
100
101 return (count >= full_count);
102}
103
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400104static int char_array_to_timespec(u8 *buf,
105 u8 count,
106 struct timespec64 *ts)
107{
108 u8 i;
109 u64 nsec;
110 time64_t sec;
111
112 if (count < TOD_BYTE_COUNT)
113 return 1;
114
115 /* Sub-nanoseconds are in buf[0]. */
116 nsec = buf[4];
117 for (i = 0; i < 3; i++) {
118 nsec <<= 8;
119 nsec |= buf[3 - i];
120 }
121
122 sec = buf[10];
123 for (i = 0; i < 5; i++) {
124 sec <<= 8;
125 sec |= buf[9 - i];
126 }
127
128 ts->tv_sec = sec;
129 ts->tv_nsec = nsec;
130
131 return 0;
132}
133
134static int timespec_to_char_array(struct timespec64 const *ts,
135 u8 *buf,
136 u8 count)
137{
138 u8 i;
139 s32 nsec;
140 time64_t sec;
141
142 if (count < TOD_BYTE_COUNT)
143 return 1;
144
145 nsec = ts->tv_nsec;
146 sec = ts->tv_sec;
147
148 /* Sub-nanoseconds are in buf[0]. */
149 buf[0] = 0;
150 for (i = 1; i < 5; i++) {
151 buf[i] = nsec & 0xff;
152 nsec >>= 8;
153 }
154
155 for (i = 5; i < TOD_BYTE_COUNT; i++) {
156
157 buf[i] = sec & 0xff;
158 sec >>= 8;
159 }
160
161 return 0;
162}
163
Min Li3cb2e6d2020-11-24 21:58:35 -0500164static int idtcm_strverscmp(const char *version1, const char *version2)
Min Li7ea5fda2020-07-28 16:00:30 -0400165{
Min Li3cb2e6d2020-11-24 21:58:35 -0500166 u8 ver1[3], ver2[3];
167 int i;
Min Li7ea5fda2020-07-28 16:00:30 -0400168
Min Li3cb2e6d2020-11-24 21:58:35 -0500169 if (sscanf(version1, "%hhu.%hhu.%hhu",
170 &ver1[0], &ver1[1], &ver1[2]) != 3)
171 return -1;
172 if (sscanf(version2, "%hhu.%hhu.%hhu",
173 &ver2[0], &ver2[1], &ver2[2]) != 3)
174 return -1;
175
176 for (i = 0; i < 3; i++) {
177 if (ver1[i] > ver2[i])
178 return 1;
179 if (ver1[i] < ver2[i])
Min Li7ea5fda2020-07-28 16:00:30 -0400180 return -1;
Min Li7ea5fda2020-07-28 16:00:30 -0400181 }
Min Li3cb2e6d2020-11-24 21:58:35 -0500182
183 return 0;
Min Li7ea5fda2020-07-28 16:00:30 -0400184}
185
Min Li794c3df2021-09-13 16:12:33 -0400186static enum fw_version idtcm_fw_version(const char *version)
187{
188 enum fw_version ver = V_DEFAULT;
189
190 if (idtcm_strverscmp(version, "4.8.7") >= 0)
191 ver = V487;
192
193 if (idtcm_strverscmp(version, "5.2.0") >= 0)
194 ver = V520;
195
196 return ver;
197}
198
Min Li251f4fe2020-12-08 10:41:54 -0500199static int clear_boot_status(struct idtcm *idtcm)
200{
Min Li251f4fe2020-12-08 10:41:54 -0500201 u8 buf[4] = {0};
202
Vincent Chengfde3b3a2021-02-17 00:42:17 -0500203 return idtcm_write(idtcm, GENERAL_STATUS, BOOT_STATUS, buf, sizeof(buf));
Min Li251f4fe2020-12-08 10:41:54 -0500204}
205
206static int read_boot_status(struct idtcm *idtcm, u32 *status)
207{
208 int err;
209 u8 buf[4] = {0};
210
211 err = idtcm_read(idtcm, GENERAL_STATUS, BOOT_STATUS, buf, sizeof(buf));
212
213 *status = (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | buf[0];
214
215 return err;
216}
217
218static int wait_for_boot_status_ready(struct idtcm *idtcm)
219{
220 u32 status = 0;
221 u8 i = 30; /* 30 * 100ms = 3s */
222 int err;
223
224 do {
225 err = read_boot_status(idtcm, &status);
Min Li251f4fe2020-12-08 10:41:54 -0500226 if (err)
227 return err;
228
229 if (status == 0xA0)
230 return 0;
231
232 msleep(100);
233 i--;
234
235 } while (i);
236
Min Li930dfa52021-09-24 15:01:32 -0400237 dev_warn(idtcm->dev, "%s timed out", __func__);
Min Li251f4fe2020-12-08 10:41:54 -0500238
239 return -EBUSY;
240}
241
Min Li930dfa52021-09-24 15:01:32 -0400242static int _idtcm_set_scsr_read_trig(struct idtcm_channel *channel,
243 enum scsr_read_trig_sel trig, u8 ref)
244{
245 struct idtcm *idtcm = channel->idtcm;
246 u16 tod_read_cmd = IDTCM_FW_REG(idtcm->fw_ver, V520, TOD_READ_PRIMARY_CMD);
247 u8 val;
248 int err;
249
250 if (trig == SCSR_TOD_READ_TRIG_SEL_REFCLK) {
251 err = idtcm_read(idtcm, channel->tod_read_primary,
252 TOD_READ_PRIMARY_SEL_CFG_0, &val, sizeof(val));
253 if (err)
254 return err;
255
256 val &= ~(WR_REF_INDEX_MASK << WR_REF_INDEX_SHIFT);
257 val |= (ref << WR_REF_INDEX_SHIFT);
258
259 err = idtcm_write(idtcm, channel->tod_read_primary,
260 TOD_READ_PRIMARY_SEL_CFG_0, &val, sizeof(val));
261 if (err)
262 return err;
263 }
264
265 err = idtcm_read(idtcm, channel->tod_read_primary,
266 tod_read_cmd, &val, sizeof(val));
267 if (err)
268 return err;
269
270 val &= ~(TOD_READ_TRIGGER_MASK << TOD_READ_TRIGGER_SHIFT);
271 val |= (trig << TOD_READ_TRIGGER_SHIFT);
272 val &= ~TOD_READ_TRIGGER_MODE; /* single shot */
273
274 err = idtcm_write(idtcm, channel->tod_read_primary,
275 tod_read_cmd, &val, sizeof(val));
276 return err;
277}
278
279static int idtcm_enable_extts(struct idtcm_channel *channel, u8 todn, u8 ref,
280 bool enable)
281{
282 struct idtcm *idtcm = channel->idtcm;
283 u8 old_mask = idtcm->extts_mask;
284 u8 mask = 1 << todn;
285 int err = 0;
286
287 if (todn >= MAX_TOD)
288 return -EINVAL;
289
290 if (enable) {
291 if (ref > 0xF) /* E_REF_CLK15 */
292 return -EINVAL;
293 if (idtcm->extts_mask & mask)
294 return 0;
295 err = _idtcm_set_scsr_read_trig(&idtcm->channel[todn],
296 SCSR_TOD_READ_TRIG_SEL_REFCLK,
297 ref);
298 if (err == 0) {
299 idtcm->extts_mask |= mask;
300 idtcm->event_channel[todn] = channel;
301 idtcm->channel[todn].refn = ref;
302 }
303 } else
304 idtcm->extts_mask &= ~mask;
305
306 if (old_mask == 0 && idtcm->extts_mask)
307 schedule_delayed_work(&idtcm->extts_work,
308 msecs_to_jiffies(EXTTS_PERIOD_MS));
309
310 return err;
311}
312
Vincent Cheng797d3182021-02-17 00:42:12 -0500313static int read_sys_apll_status(struct idtcm *idtcm, u8 *status)
314{
315 return idtcm_read(idtcm, STATUS, DPLL_SYS_APLL_STATUS, status,
316 sizeof(u8));
317}
318
319static int read_sys_dpll_status(struct idtcm *idtcm, u8 *status)
320{
321 return idtcm_read(idtcm, STATUS, DPLL_SYS_STATUS, status, sizeof(u8));
322}
323
324static int wait_for_sys_apll_dpll_lock(struct idtcm *idtcm)
325{
326 unsigned long timeout = jiffies + msecs_to_jiffies(LOCK_TIMEOUT_MS);
327 u8 apll = 0;
328 u8 dpll = 0;
329 int err;
330
331 do {
332 err = read_sys_apll_status(idtcm, &apll);
333 if (err)
334 return err;
335
336 err = read_sys_dpll_status(idtcm, &dpll);
337 if (err)
338 return err;
339
340 apll &= SYS_APLL_LOSS_LOCK_LIVE_MASK;
341 dpll &= DPLL_SYS_STATE_MASK;
342
Min Li794c3df2021-09-13 16:12:33 -0400343 if (apll == SYS_APLL_LOSS_LOCK_LIVE_LOCKED &&
344 dpll == DPLL_STATE_LOCKED) {
Vincent Cheng797d3182021-02-17 00:42:12 -0500345 return 0;
346 } else if (dpll == DPLL_STATE_FREERUN ||
347 dpll == DPLL_STATE_HOLDOVER ||
348 dpll == DPLL_STATE_OPEN_LOOP) {
Min Li930dfa52021-09-24 15:01:32 -0400349 dev_warn(idtcm->dev,
Vincent Cheng797d3182021-02-17 00:42:12 -0500350 "No wait state: DPLL_SYS_STATE %d", dpll);
351 return -EPERM;
352 }
353
354 msleep(LOCK_POLL_INTERVAL_MS);
355 } while (time_is_after_jiffies(timeout));
356
Min Li930dfa52021-09-24 15:01:32 -0400357 dev_warn(idtcm->dev,
Vincent Cheng797d3182021-02-17 00:42:12 -0500358 "%d ms lock timeout: SYS APLL Loss Lock %d SYS DPLL state %d",
359 LOCK_TIMEOUT_MS, apll, dpll);
360
361 return -ETIME;
362}
363
364static void wait_for_chip_ready(struct idtcm *idtcm)
365{
366 if (wait_for_boot_status_ready(idtcm))
Min Li930dfa52021-09-24 15:01:32 -0400367 dev_warn(idtcm->dev, "BOOT_STATUS != 0xA0");
Vincent Cheng797d3182021-02-17 00:42:12 -0500368
369 if (wait_for_sys_apll_dpll_lock(idtcm))
Min Li930dfa52021-09-24 15:01:32 -0400370 dev_warn(idtcm->dev,
Vincent Cheng797d3182021-02-17 00:42:12 -0500371 "Continuing while SYS APLL/DPLL is not locked");
372}
373
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400374static int _idtcm_gettime(struct idtcm_channel *channel,
Min Li930dfa52021-09-24 15:01:32 -0400375 struct timespec64 *ts, u8 timeout)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400376{
377 struct idtcm *idtcm = channel->idtcm;
Min Li794c3df2021-09-13 16:12:33 -0400378 u16 tod_read_cmd = IDTCM_FW_REG(idtcm->fw_ver, V520, TOD_READ_PRIMARY_CMD);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400379 u8 buf[TOD_BYTE_COUNT];
380 u8 trigger;
381 int err;
382
Min Li7ea5fda2020-07-28 16:00:30 -0400383 /* wait trigger to be 0 */
Min Li930dfa52021-09-24 15:01:32 -0400384 do {
385 if (timeout-- == 0)
386 return -EIO;
387
Min Li7ea5fda2020-07-28 16:00:30 -0400388 if (idtcm->calculate_overhead_flag)
389 idtcm->start_time = ktime_get_raw();
390
391 err = idtcm_read(idtcm, channel->tod_read_primary,
Min Li794c3df2021-09-13 16:12:33 -0400392 tod_read_cmd, &trigger,
Min Li7ea5fda2020-07-28 16:00:30 -0400393 sizeof(trigger));
Min Li7ea5fda2020-07-28 16:00:30 -0400394 if (err)
395 return err;
Min Li930dfa52021-09-24 15:01:32 -0400396 } while (trigger & TOD_READ_TRIGGER_MASK);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400397
398 err = idtcm_read(idtcm, channel->tod_read_primary,
399 TOD_READ_PRIMARY, buf, sizeof(buf));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400400 if (err)
401 return err;
402
403 err = char_array_to_timespec(buf, sizeof(buf), ts);
404
405 return err;
406}
407
Min Li930dfa52021-09-24 15:01:32 -0400408static int idtcm_extts_check_channel(struct idtcm *idtcm, u8 todn)
409{
410 struct idtcm_channel *ptp_channel, *extts_channel;
411 struct ptp_clock_event event;
412 struct timespec64 ts;
413 u32 dco_delay = 0;
414 int err;
415
416 extts_channel = &idtcm->channel[todn];
417 ptp_channel = idtcm->event_channel[todn];
418 if (extts_channel == ptp_channel)
419 dco_delay = ptp_channel->dco_delay;
420
421 err = _idtcm_gettime(extts_channel, &ts, 1);
422 if (err == 0) {
423 event.type = PTP_CLOCK_EXTTS;
424 event.index = todn;
425 event.timestamp = timespec64_to_ns(&ts) - dco_delay;
426 ptp_clock_event(ptp_channel->ptp_clock, &event);
427 }
428 return err;
429}
430
431static u8 idtcm_enable_extts_mask(struct idtcm_channel *channel,
432 u8 extts_mask, bool enable)
433{
434 struct idtcm *idtcm = channel->idtcm;
435 int i, err;
436
437 for (i = 0; i < MAX_TOD; i++) {
438 u8 mask = 1 << i;
439 u8 refn = idtcm->channel[i].refn;
440
441 if (extts_mask & mask) {
442 /* check extts before disabling it */
443 if (enable == false) {
444 err = idtcm_extts_check_channel(idtcm, i);
445 /* trigger happened so we won't re-enable it */
446 if (err == 0)
447 extts_mask &= ~mask;
448 }
449 (void)idtcm_enable_extts(channel, i, refn, enable);
450 }
451 }
452
453 return extts_mask;
454}
455
456static int _idtcm_gettime_immediate(struct idtcm_channel *channel,
457 struct timespec64 *ts)
458{
459 struct idtcm *idtcm = channel->idtcm;
460 u8 extts_mask = 0;
461 int err;
462
463 /* Disable extts */
464 if (idtcm->extts_mask) {
465 extts_mask = idtcm_enable_extts_mask(channel, idtcm->extts_mask,
466 false);
467 }
468
469 err = _idtcm_set_scsr_read_trig(channel,
470 SCSR_TOD_READ_TRIG_SEL_IMMEDIATE, 0);
471 if (err == 0)
472 err = _idtcm_gettime(channel, ts, 10);
473
474 /* Re-enable extts */
475 if (extts_mask)
476 idtcm_enable_extts_mask(channel, extts_mask, true);
477
478 return err;
479}
480
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400481static int _sync_pll_output(struct idtcm *idtcm,
482 u8 pll,
483 u8 sync_src,
484 u8 qn,
485 u8 qn_plus_1)
486{
487 int err;
488 u8 val;
489 u16 sync_ctrl0;
490 u16 sync_ctrl1;
Min Li7ea5fda2020-07-28 16:00:30 -0400491 u8 temp;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400492
Vincent Cheng77fdb162021-02-17 00:42:18 -0500493 if (qn == 0 && qn_plus_1 == 0)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400494 return 0;
495
496 switch (pll) {
497 case 0:
498 sync_ctrl0 = HW_Q0_Q1_CH_SYNC_CTRL_0;
499 sync_ctrl1 = HW_Q0_Q1_CH_SYNC_CTRL_1;
500 break;
501 case 1:
502 sync_ctrl0 = HW_Q2_Q3_CH_SYNC_CTRL_0;
503 sync_ctrl1 = HW_Q2_Q3_CH_SYNC_CTRL_1;
504 break;
505 case 2:
506 sync_ctrl0 = HW_Q4_Q5_CH_SYNC_CTRL_0;
507 sync_ctrl1 = HW_Q4_Q5_CH_SYNC_CTRL_1;
508 break;
509 case 3:
510 sync_ctrl0 = HW_Q6_Q7_CH_SYNC_CTRL_0;
511 sync_ctrl1 = HW_Q6_Q7_CH_SYNC_CTRL_1;
512 break;
513 case 4:
514 sync_ctrl0 = HW_Q8_CH_SYNC_CTRL_0;
515 sync_ctrl1 = HW_Q8_CH_SYNC_CTRL_1;
516 break;
517 case 5:
518 sync_ctrl0 = HW_Q9_CH_SYNC_CTRL_0;
519 sync_ctrl1 = HW_Q9_CH_SYNC_CTRL_1;
520 break;
521 case 6:
522 sync_ctrl0 = HW_Q10_CH_SYNC_CTRL_0;
523 sync_ctrl1 = HW_Q10_CH_SYNC_CTRL_1;
524 break;
525 case 7:
526 sync_ctrl0 = HW_Q11_CH_SYNC_CTRL_0;
527 sync_ctrl1 = HW_Q11_CH_SYNC_CTRL_1;
528 break;
529 default:
530 return -EINVAL;
531 }
532
533 val = SYNCTRL1_MASTER_SYNC_RST;
534
535 /* Place master sync in reset */
536 err = idtcm_write(idtcm, 0, sync_ctrl1, &val, sizeof(val));
537 if (err)
538 return err;
539
540 err = idtcm_write(idtcm, 0, sync_ctrl0, &sync_src, sizeof(sync_src));
541 if (err)
542 return err;
543
544 /* Set sync trigger mask */
545 val |= SYNCTRL1_FBDIV_FRAME_SYNC_TRIG | SYNCTRL1_FBDIV_SYNC_TRIG;
546
547 if (qn)
548 val |= SYNCTRL1_Q0_DIV_SYNC_TRIG;
549
550 if (qn_plus_1)
551 val |= SYNCTRL1_Q1_DIV_SYNC_TRIG;
552
553 err = idtcm_write(idtcm, 0, sync_ctrl1, &val, sizeof(val));
554 if (err)
555 return err;
556
Min Li7ea5fda2020-07-28 16:00:30 -0400557 /* PLL5 can have OUT8 as second additional output. */
Vincent Cheng77fdb162021-02-17 00:42:18 -0500558 if (pll == 5 && qn_plus_1 != 0) {
Min Li7ea5fda2020-07-28 16:00:30 -0400559 err = idtcm_read(idtcm, 0, HW_Q8_CTRL_SPARE,
560 &temp, sizeof(temp));
561 if (err)
562 return err;
563
564 temp &= ~(Q9_TO_Q8_SYNC_TRIG);
565
566 err = idtcm_write(idtcm, 0, HW_Q8_CTRL_SPARE,
567 &temp, sizeof(temp));
568 if (err)
569 return err;
570
571 temp |= Q9_TO_Q8_SYNC_TRIG;
572
573 err = idtcm_write(idtcm, 0, HW_Q8_CTRL_SPARE,
574 &temp, sizeof(temp));
575 if (err)
576 return err;
577 }
578
579 /* PLL6 can have OUT11 as second additional output. */
Vincent Cheng77fdb162021-02-17 00:42:18 -0500580 if (pll == 6 && qn_plus_1 != 0) {
Min Li7ea5fda2020-07-28 16:00:30 -0400581 err = idtcm_read(idtcm, 0, HW_Q11_CTRL_SPARE,
582 &temp, sizeof(temp));
583 if (err)
584 return err;
585
586 temp &= ~(Q10_TO_Q11_SYNC_TRIG);
587
588 err = idtcm_write(idtcm, 0, HW_Q11_CTRL_SPARE,
589 &temp, sizeof(temp));
590 if (err)
591 return err;
592
593 temp |= Q10_TO_Q11_SYNC_TRIG;
594
595 err = idtcm_write(idtcm, 0, HW_Q11_CTRL_SPARE,
596 &temp, sizeof(temp));
597 if (err)
598 return err;
599 }
600
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400601 /* Place master sync out of reset */
602 val &= ~(SYNCTRL1_MASTER_SYNC_RST);
603 err = idtcm_write(idtcm, 0, sync_ctrl1, &val, sizeof(val));
604
605 return err;
606}
607
608static int idtcm_sync_pps_output(struct idtcm_channel *channel)
609{
610 struct idtcm *idtcm = channel->idtcm;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400611 u8 pll;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400612 u8 qn;
613 u8 qn_plus_1;
614 int err = 0;
Min Li7ea5fda2020-07-28 16:00:30 -0400615 u8 out8_mux = 0;
616 u8 out11_mux = 0;
617 u8 temp;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400618 u16 output_mask = channel->output_mask;
619
Min Li7ea5fda2020-07-28 16:00:30 -0400620 err = idtcm_read(idtcm, 0, HW_Q8_CTRL_SPARE,
621 &temp, sizeof(temp));
622 if (err)
623 return err;
624
625 if ((temp & Q9_TO_Q8_FANOUT_AND_CLOCK_SYNC_ENABLE_MASK) ==
626 Q9_TO_Q8_FANOUT_AND_CLOCK_SYNC_ENABLE_MASK)
627 out8_mux = 1;
628
629 err = idtcm_read(idtcm, 0, HW_Q11_CTRL_SPARE,
630 &temp, sizeof(temp));
631 if (err)
632 return err;
633
634 if ((temp & Q10_TO_Q11_FANOUT_AND_CLOCK_SYNC_ENABLE_MASK) ==
635 Q10_TO_Q11_FANOUT_AND_CLOCK_SYNC_ENABLE_MASK)
636 out11_mux = 1;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400637
638 for (pll = 0; pll < 8; pll++) {
Min Li7ea5fda2020-07-28 16:00:30 -0400639 qn = 0;
640 qn_plus_1 = 0;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400641
642 if (pll < 4) {
643 /* First 4 pll has 2 outputs */
Min Li7ea5fda2020-07-28 16:00:30 -0400644 qn = output_mask & 0x1;
645 output_mask = output_mask >> 1;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400646 qn_plus_1 = output_mask & 0x1;
647 output_mask = output_mask >> 1;
Min Li7ea5fda2020-07-28 16:00:30 -0400648 } else if (pll == 4) {
649 if (out8_mux == 0) {
650 qn = output_mask & 0x1;
651 output_mask = output_mask >> 1;
652 }
653 } else if (pll == 5) {
654 if (out8_mux) {
655 qn_plus_1 = output_mask & 0x1;
656 output_mask = output_mask >> 1;
657 }
658 qn = output_mask & 0x1;
659 output_mask = output_mask >> 1;
660 } else if (pll == 6) {
661 qn = output_mask & 0x1;
662 output_mask = output_mask >> 1;
663 if (out11_mux) {
664 qn_plus_1 = output_mask & 0x1;
665 output_mask = output_mask >> 1;
666 }
667 } else if (pll == 7) {
668 if (out11_mux == 0) {
669 qn = output_mask & 0x1;
670 output_mask = output_mask >> 1;
671 }
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400672 }
673
Vincent Cheng77fdb162021-02-17 00:42:18 -0500674 if (qn != 0 || qn_plus_1 != 0)
Min Li794c3df2021-09-13 16:12:33 -0400675 err = _sync_pll_output(idtcm, pll, channel->sync_src,
676 qn, qn_plus_1);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400677
678 if (err)
679 return err;
680 }
681
682 return err;
683}
684
Min Li7ea5fda2020-07-28 16:00:30 -0400685static int _idtcm_set_dpll_hw_tod(struct idtcm_channel *channel,
Min Lida9facf2021-09-13 16:12:34 -0400686 struct timespec64 const *ts,
687 enum hw_tod_write_trig_sel wr_trig)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400688{
689 struct idtcm *idtcm = channel->idtcm;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400690 u8 buf[TOD_BYTE_COUNT];
691 u8 cmd;
692 int err;
693 struct timespec64 local_ts = *ts;
694 s64 total_overhead_ns;
695
696 /* Configure HW TOD write trigger. */
697 err = idtcm_read(idtcm, channel->hw_dpll_n, HW_DPLL_TOD_CTRL_1,
698 &cmd, sizeof(cmd));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400699 if (err)
700 return err;
701
702 cmd &= ~(0x0f);
703 cmd |= wr_trig | 0x08;
704
705 err = idtcm_write(idtcm, channel->hw_dpll_n, HW_DPLL_TOD_CTRL_1,
706 &cmd, sizeof(cmd));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400707 if (err)
708 return err;
709
710 if (wr_trig != HW_TOD_WR_TRIG_SEL_MSB) {
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400711 err = timespec_to_char_array(&local_ts, buf, sizeof(buf));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400712 if (err)
713 return err;
714
715 err = idtcm_write(idtcm, channel->hw_dpll_n,
716 HW_DPLL_TOD_OVR__0, buf, sizeof(buf));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400717 if (err)
718 return err;
719 }
720
721 /* ARM HW TOD write trigger. */
722 cmd &= ~(0x08);
723
724 err = idtcm_write(idtcm, channel->hw_dpll_n, HW_DPLL_TOD_CTRL_1,
725 &cmd, sizeof(cmd));
726
727 if (wr_trig == HW_TOD_WR_TRIG_SEL_MSB) {
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400728 if (idtcm->calculate_overhead_flag) {
Vincent Cheng1ece2fb2020-01-07 09:47:57 -0500729 /* Assumption: I2C @ 400KHz */
Min Li7260d1c2020-12-08 10:41:56 -0500730 ktime_t diff = ktime_sub(ktime_get_raw(),
731 idtcm->start_time);
732 total_overhead_ns = ktime_to_ns(diff)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400733 + idtcm->tod_write_overhead_ns
734 + SETTIME_CORRECTION;
735
736 timespec64_add_ns(&local_ts, total_overhead_ns);
737
738 idtcm->calculate_overhead_flag = 0;
739 }
740
741 err = timespec_to_char_array(&local_ts, buf, sizeof(buf));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400742 if (err)
743 return err;
744
745 err = idtcm_write(idtcm, channel->hw_dpll_n,
746 HW_DPLL_TOD_OVR__0, buf, sizeof(buf));
747 }
748
749 return err;
750}
751
Min Li7ea5fda2020-07-28 16:00:30 -0400752static int _idtcm_set_dpll_scsr_tod(struct idtcm_channel *channel,
753 struct timespec64 const *ts,
754 enum scsr_tod_write_trig_sel wr_trig,
755 enum scsr_tod_write_type_sel wr_type)
756{
757 struct idtcm *idtcm = channel->idtcm;
758 unsigned char buf[TOD_BYTE_COUNT], cmd;
759 struct timespec64 local_ts = *ts;
760 int err, count = 0;
761
762 timespec64_add_ns(&local_ts, SETTIME_CORRECTION);
763
764 err = timespec_to_char_array(&local_ts, buf, sizeof(buf));
Min Li7ea5fda2020-07-28 16:00:30 -0400765 if (err)
766 return err;
767
768 err = idtcm_write(idtcm, channel->tod_write, TOD_WRITE,
769 buf, sizeof(buf));
770 if (err)
771 return err;
772
773 /* Trigger the write operation. */
774 err = idtcm_read(idtcm, channel->tod_write, TOD_WRITE_CMD,
775 &cmd, sizeof(cmd));
776 if (err)
777 return err;
778
779 cmd &= ~(TOD_WRITE_SELECTION_MASK << TOD_WRITE_SELECTION_SHIFT);
780 cmd &= ~(TOD_WRITE_TYPE_MASK << TOD_WRITE_TYPE_SHIFT);
781 cmd |= (wr_trig << TOD_WRITE_SELECTION_SHIFT);
782 cmd |= (wr_type << TOD_WRITE_TYPE_SHIFT);
783
784 err = idtcm_write(idtcm, channel->tod_write, TOD_WRITE_CMD,
785 &cmd, sizeof(cmd));
786 if (err)
787 return err;
788
789 /* Wait for the operation to complete. */
790 while (1) {
791 /* pps trigger takes up to 1 sec to complete */
792 if (wr_trig == SCSR_TOD_WR_TRIG_SEL_TODPPS)
793 msleep(50);
794
795 err = idtcm_read(idtcm, channel->tod_write, TOD_WRITE_CMD,
796 &cmd, sizeof(cmd));
797 if (err)
798 return err;
799
Min Li251f4fe2020-12-08 10:41:54 -0500800 if ((cmd & TOD_WRITE_SELECTION_MASK) == 0)
Min Li7ea5fda2020-07-28 16:00:30 -0400801 break;
802
803 if (++count > 20) {
Min Li930dfa52021-09-24 15:01:32 -0400804 dev_err(idtcm->dev,
Vincent Cheng1c49d3e2021-02-17 00:42:15 -0500805 "Timed out waiting for the write counter");
Min Li7ea5fda2020-07-28 16:00:30 -0400806 return -EIO;
807 }
808 }
809
810 return 0;
811}
812
Min Li794c3df2021-09-13 16:12:33 -0400813static int get_output_base_addr(enum fw_version ver, u8 outn)
Min Li7260d1c2020-12-08 10:41:56 -0500814{
815 int base;
816
817 switch (outn) {
818 case 0:
Min Li794c3df2021-09-13 16:12:33 -0400819 base = IDTCM_FW_REG(ver, V520, OUTPUT_0);
Min Li7260d1c2020-12-08 10:41:56 -0500820 break;
821 case 1:
Min Li794c3df2021-09-13 16:12:33 -0400822 base = IDTCM_FW_REG(ver, V520, OUTPUT_1);
Min Li7260d1c2020-12-08 10:41:56 -0500823 break;
824 case 2:
Min Li794c3df2021-09-13 16:12:33 -0400825 base = IDTCM_FW_REG(ver, V520, OUTPUT_2);
Min Li7260d1c2020-12-08 10:41:56 -0500826 break;
827 case 3:
Min Li794c3df2021-09-13 16:12:33 -0400828 base = IDTCM_FW_REG(ver, V520, OUTPUT_3);
Min Li7260d1c2020-12-08 10:41:56 -0500829 break;
830 case 4:
Min Li794c3df2021-09-13 16:12:33 -0400831 base = IDTCM_FW_REG(ver, V520, OUTPUT_4);
Min Li7260d1c2020-12-08 10:41:56 -0500832 break;
833 case 5:
Min Li794c3df2021-09-13 16:12:33 -0400834 base = IDTCM_FW_REG(ver, V520, OUTPUT_5);
Min Li7260d1c2020-12-08 10:41:56 -0500835 break;
836 case 6:
Min Li794c3df2021-09-13 16:12:33 -0400837 base = IDTCM_FW_REG(ver, V520, OUTPUT_6);
Min Li7260d1c2020-12-08 10:41:56 -0500838 break;
839 case 7:
Min Li794c3df2021-09-13 16:12:33 -0400840 base = IDTCM_FW_REG(ver, V520, OUTPUT_7);
Min Li7260d1c2020-12-08 10:41:56 -0500841 break;
842 case 8:
Min Li794c3df2021-09-13 16:12:33 -0400843 base = IDTCM_FW_REG(ver, V520, OUTPUT_8);
Min Li7260d1c2020-12-08 10:41:56 -0500844 break;
845 case 9:
Min Li794c3df2021-09-13 16:12:33 -0400846 base = IDTCM_FW_REG(ver, V520, OUTPUT_9);
Min Li7260d1c2020-12-08 10:41:56 -0500847 break;
848 case 10:
Min Li794c3df2021-09-13 16:12:33 -0400849 base = IDTCM_FW_REG(ver, V520, OUTPUT_10);
Min Li7260d1c2020-12-08 10:41:56 -0500850 break;
851 case 11:
Min Li794c3df2021-09-13 16:12:33 -0400852 base = IDTCM_FW_REG(ver, V520, OUTPUT_11);
Min Li7260d1c2020-12-08 10:41:56 -0500853 break;
854 default:
855 base = -EINVAL;
856 }
857
858 return base;
859}
860
Min Lida948232020-12-08 10:41:57 -0500861static int _idtcm_settime_deprecated(struct idtcm_channel *channel,
862 struct timespec64 const *ts)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400863{
864 struct idtcm *idtcm = channel->idtcm;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400865 int err;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400866
Min Li251f4fe2020-12-08 10:41:54 -0500867 err = _idtcm_set_dpll_hw_tod(channel, ts, HW_TOD_WR_TRIG_SEL_MSB);
Min Li7ea5fda2020-07-28 16:00:30 -0400868 if (err) {
Min Li930dfa52021-09-24 15:01:32 -0400869 dev_err(idtcm->dev,
Vincent Cheng1c49d3e2021-02-17 00:42:15 -0500870 "%s: Set HW ToD failed", __func__);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400871 return err;
Min Li7ea5fda2020-07-28 16:00:30 -0400872 }
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400873
Min Li7ea5fda2020-07-28 16:00:30 -0400874 return idtcm_sync_pps_output(channel);
875}
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400876
Min Lida948232020-12-08 10:41:57 -0500877static int _idtcm_settime(struct idtcm_channel *channel,
878 struct timespec64 const *ts,
879 enum scsr_tod_write_type_sel wr_type)
Min Li7ea5fda2020-07-28 16:00:30 -0400880{
881 return _idtcm_set_dpll_scsr_tod(channel, ts,
882 SCSR_TOD_WR_TRIG_SEL_IMMEDIATE,
883 wr_type);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400884}
885
886static int idtcm_set_phase_pull_in_offset(struct idtcm_channel *channel,
887 s32 offset_ns)
888{
889 int err;
890 int i;
891 struct idtcm *idtcm = channel->idtcm;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400892 u8 buf[4];
893
894 for (i = 0; i < 4; i++) {
895 buf[i] = 0xff & (offset_ns);
896 offset_ns >>= 8;
897 }
898
899 err = idtcm_write(idtcm, channel->dpll_phase_pull_in, PULL_IN_OFFSET,
900 buf, sizeof(buf));
901
902 return err;
903}
904
905static int idtcm_set_phase_pull_in_slope_limit(struct idtcm_channel *channel,
906 u32 max_ffo_ppb)
907{
908 int err;
909 u8 i;
910 struct idtcm *idtcm = channel->idtcm;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400911 u8 buf[3];
912
913 if (max_ffo_ppb & 0xff000000)
914 max_ffo_ppb = 0;
915
916 for (i = 0; i < 3; i++) {
917 buf[i] = 0xff & (max_ffo_ppb);
918 max_ffo_ppb >>= 8;
919 }
920
921 err = idtcm_write(idtcm, channel->dpll_phase_pull_in,
922 PULL_IN_SLOPE_LIMIT, buf, sizeof(buf));
923
924 return err;
925}
926
927static int idtcm_start_phase_pull_in(struct idtcm_channel *channel)
928{
929 int err;
930 struct idtcm *idtcm = channel->idtcm;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400931 u8 buf;
932
933 err = idtcm_read(idtcm, channel->dpll_phase_pull_in, PULL_IN_CTRL,
934 &buf, sizeof(buf));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400935 if (err)
936 return err;
937
938 if (buf == 0) {
939 buf = 0x01;
940 err = idtcm_write(idtcm, channel->dpll_phase_pull_in,
941 PULL_IN_CTRL, &buf, sizeof(buf));
942 } else {
943 err = -EBUSY;
944 }
945
946 return err;
947}
948
Min Lida9facf2021-09-13 16:12:34 -0400949static int do_phase_pull_in_fw(struct idtcm_channel *channel,
950 s32 offset_ns,
951 u32 max_ffo_ppb)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400952{
953 int err;
954
955 err = idtcm_set_phase_pull_in_offset(channel, -offset_ns);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400956 if (err)
957 return err;
958
959 err = idtcm_set_phase_pull_in_slope_limit(channel, max_ffo_ppb);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -0400960 if (err)
961 return err;
962
963 err = idtcm_start_phase_pull_in(channel);
964
965 return err;
966}
967
Min Li7ea5fda2020-07-28 16:00:30 -0400968static int set_tod_write_overhead(struct idtcm_channel *channel)
969{
970 struct idtcm *idtcm = channel->idtcm;
971 s64 current_ns = 0;
972 s64 lowest_ns = 0;
973 int err;
974 u8 i;
Min Li7ea5fda2020-07-28 16:00:30 -0400975 ktime_t start;
976 ktime_t stop;
Min Li7260d1c2020-12-08 10:41:56 -0500977 ktime_t diff;
Min Li7ea5fda2020-07-28 16:00:30 -0400978
979 char buf[TOD_BYTE_COUNT] = {0};
980
981 /* Set page offset */
982 idtcm_write(idtcm, channel->hw_dpll_n, HW_DPLL_TOD_OVR__0,
983 buf, sizeof(buf));
984
985 for (i = 0; i < TOD_WRITE_OVERHEAD_COUNT_MAX; i++) {
Min Li7ea5fda2020-07-28 16:00:30 -0400986 start = ktime_get_raw();
987
988 err = idtcm_write(idtcm, channel->hw_dpll_n,
989 HW_DPLL_TOD_OVR__0, buf, sizeof(buf));
Min Li7ea5fda2020-07-28 16:00:30 -0400990 if (err)
991 return err;
992
993 stop = ktime_get_raw();
994
Min Li7260d1c2020-12-08 10:41:56 -0500995 diff = ktime_sub(stop, start);
996
997 current_ns = ktime_to_ns(diff);
Min Li7ea5fda2020-07-28 16:00:30 -0400998
999 if (i == 0) {
1000 lowest_ns = current_ns;
1001 } else {
1002 if (current_ns < lowest_ns)
1003 lowest_ns = current_ns;
1004 }
1005 }
1006
1007 idtcm->tod_write_overhead_ns = lowest_ns;
1008
1009 return err;
1010}
1011
Min Lida948232020-12-08 10:41:57 -05001012static int _idtcm_adjtime_deprecated(struct idtcm_channel *channel, s64 delta)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001013{
1014 int err;
1015 struct idtcm *idtcm = channel->idtcm;
1016 struct timespec64 ts;
1017 s64 now;
1018
Min Lida948232020-12-08 10:41:57 -05001019 if (abs(delta) < PHASE_PULL_IN_THRESHOLD_NS_DEPRECATED) {
Min Lida9facf2021-09-13 16:12:34 -04001020 err = channel->do_phase_pull_in(channel, delta, 0);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001021 } else {
1022 idtcm->calculate_overhead_flag = 1;
1023
Min Li7ea5fda2020-07-28 16:00:30 -04001024 err = set_tod_write_overhead(channel);
Min Li7ea5fda2020-07-28 16:00:30 -04001025 if (err)
1026 return err;
1027
Min Li930dfa52021-09-24 15:01:32 -04001028 err = _idtcm_gettime_immediate(channel, &ts);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001029 if (err)
1030 return err;
1031
1032 now = timespec64_to_ns(&ts);
1033 now += delta;
1034
1035 ts = ns_to_timespec64(now);
1036
Min Lida948232020-12-08 10:41:57 -05001037 err = _idtcm_settime_deprecated(channel, &ts);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001038 }
1039
1040 return err;
1041}
1042
1043static int idtcm_state_machine_reset(struct idtcm *idtcm)
1044{
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001045 u8 byte = SM_RESET_CMD;
Min Li251f4fe2020-12-08 10:41:54 -05001046 u32 status = 0;
1047 int err;
1048 u8 i;
1049
1050 clear_boot_status(idtcm);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001051
Min Li794c3df2021-09-13 16:12:33 -04001052 err = idtcm_write(idtcm, RESET_CTRL,
1053 IDTCM_FW_REG(idtcm->fw_ver, V520, SM_RESET),
1054 &byte, sizeof(byte));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001055
Min Li251f4fe2020-12-08 10:41:54 -05001056 if (!err) {
1057 for (i = 0; i < 30; i++) {
1058 msleep_interruptible(100);
1059 read_boot_status(idtcm, &status);
1060
1061 if (status == 0xA0) {
Min Li930dfa52021-09-24 15:01:32 -04001062 dev_dbg(idtcm->dev,
Vincent Cheng1c49d3e2021-02-17 00:42:15 -05001063 "SM_RESET completed in %d ms", i * 100);
Min Li251f4fe2020-12-08 10:41:54 -05001064 break;
1065 }
1066 }
1067
1068 if (!status)
Min Li930dfa52021-09-24 15:01:32 -04001069 dev_err(idtcm->dev,
Vincent Cheng1c49d3e2021-02-17 00:42:15 -05001070 "Timed out waiting for CM_RESET to complete");
Min Li251f4fe2020-12-08 10:41:54 -05001071 }
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001072
1073 return err;
1074}
1075
1076static int idtcm_read_hw_rev_id(struct idtcm *idtcm, u8 *hw_rev_id)
1077{
Vincent Cheng1ece2fb2020-01-07 09:47:57 -05001078 return idtcm_read(idtcm, HW_REVISION, REV_ID, hw_rev_id, sizeof(u8));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001079}
1080
1081static int idtcm_read_product_id(struct idtcm *idtcm, u16 *product_id)
1082{
1083 int err;
1084 u8 buf[2] = {0};
1085
1086 err = idtcm_read(idtcm, GENERAL_STATUS, PRODUCT_ID, buf, sizeof(buf));
1087
1088 *product_id = (buf[1] << 8) | buf[0];
1089
1090 return err;
1091}
1092
1093static int idtcm_read_major_release(struct idtcm *idtcm, u8 *major)
1094{
1095 int err;
1096 u8 buf = 0;
1097
1098 err = idtcm_read(idtcm, GENERAL_STATUS, MAJ_REL, &buf, sizeof(buf));
1099
1100 *major = buf >> 1;
1101
1102 return err;
1103}
1104
1105static int idtcm_read_minor_release(struct idtcm *idtcm, u8 *minor)
1106{
1107 return idtcm_read(idtcm, GENERAL_STATUS, MIN_REL, minor, sizeof(u8));
1108}
1109
1110static int idtcm_read_hotfix_release(struct idtcm *idtcm, u8 *hotfix)
1111{
1112 return idtcm_read(idtcm,
1113 GENERAL_STATUS,
1114 HOTFIX_REL,
1115 hotfix,
1116 sizeof(u8));
1117}
1118
Vincent Cheng1ece2fb2020-01-07 09:47:57 -05001119static int idtcm_read_otp_scsr_config_select(struct idtcm *idtcm,
1120 u8 *config_select)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001121{
Vincent Cheng1ece2fb2020-01-07 09:47:57 -05001122 return idtcm_read(idtcm, GENERAL_STATUS, OTP_SCSR_CONFIG_SELECT,
1123 config_select, sizeof(u8));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001124}
1125
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001126static int set_pll_output_mask(struct idtcm *idtcm, u16 addr, u8 val)
1127{
1128 int err = 0;
1129
1130 switch (addr) {
Min Li7ea5fda2020-07-28 16:00:30 -04001131 case TOD0_OUT_ALIGN_MASK_ADDR:
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001132 SET_U16_LSB(idtcm->channel[0].output_mask, val);
1133 break;
Min Li7ea5fda2020-07-28 16:00:30 -04001134 case TOD0_OUT_ALIGN_MASK_ADDR + 1:
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001135 SET_U16_MSB(idtcm->channel[0].output_mask, val);
1136 break;
Min Li7ea5fda2020-07-28 16:00:30 -04001137 case TOD1_OUT_ALIGN_MASK_ADDR:
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001138 SET_U16_LSB(idtcm->channel[1].output_mask, val);
1139 break;
Min Li7ea5fda2020-07-28 16:00:30 -04001140 case TOD1_OUT_ALIGN_MASK_ADDR + 1:
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001141 SET_U16_MSB(idtcm->channel[1].output_mask, val);
1142 break;
Min Li7ea5fda2020-07-28 16:00:30 -04001143 case TOD2_OUT_ALIGN_MASK_ADDR:
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001144 SET_U16_LSB(idtcm->channel[2].output_mask, val);
1145 break;
Min Li7ea5fda2020-07-28 16:00:30 -04001146 case TOD2_OUT_ALIGN_MASK_ADDR + 1:
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001147 SET_U16_MSB(idtcm->channel[2].output_mask, val);
1148 break;
Min Li7ea5fda2020-07-28 16:00:30 -04001149 case TOD3_OUT_ALIGN_MASK_ADDR:
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001150 SET_U16_LSB(idtcm->channel[3].output_mask, val);
1151 break;
Min Li7ea5fda2020-07-28 16:00:30 -04001152 case TOD3_OUT_ALIGN_MASK_ADDR + 1:
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001153 SET_U16_MSB(idtcm->channel[3].output_mask, val);
1154 break;
1155 default:
Min Li7ea5fda2020-07-28 16:00:30 -04001156 err = -EFAULT; /* Bad address */;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001157 break;
1158 }
1159
1160 return err;
1161}
1162
Min Li7ea5fda2020-07-28 16:00:30 -04001163static int set_tod_ptp_pll(struct idtcm *idtcm, u8 index, u8 pll)
1164{
1165 if (index >= MAX_TOD) {
Min Li930dfa52021-09-24 15:01:32 -04001166 dev_err(idtcm->dev, "ToD%d not supported", index);
Min Li7ea5fda2020-07-28 16:00:30 -04001167 return -EINVAL;
1168 }
1169
1170 if (pll >= MAX_PLL) {
Min Li930dfa52021-09-24 15:01:32 -04001171 dev_err(idtcm->dev, "Pll%d not supported", pll);
Min Li7ea5fda2020-07-28 16:00:30 -04001172 return -EINVAL;
1173 }
1174
1175 idtcm->channel[index].pll = pll;
1176
1177 return 0;
1178}
1179
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001180static int check_and_set_masks(struct idtcm *idtcm,
1181 u16 regaddr,
1182 u8 val)
1183{
1184 int err = 0;
1185
Min Li7ea5fda2020-07-28 16:00:30 -04001186 switch (regaddr) {
1187 case TOD_MASK_ADDR:
1188 if ((val & 0xf0) || !(val & 0x0f)) {
Min Li930dfa52021-09-24 15:01:32 -04001189 dev_err(idtcm->dev, "Invalid TOD mask 0x%02x", val);
Min Li7ea5fda2020-07-28 16:00:30 -04001190 err = -EINVAL;
1191 } else {
1192 idtcm->tod_mask = val;
1193 }
1194 break;
1195 case TOD0_PTP_PLL_ADDR:
1196 err = set_tod_ptp_pll(idtcm, 0, val);
1197 break;
1198 case TOD1_PTP_PLL_ADDR:
1199 err = set_tod_ptp_pll(idtcm, 1, val);
1200 break;
1201 case TOD2_PTP_PLL_ADDR:
1202 err = set_tod_ptp_pll(idtcm, 2, val);
1203 break;
1204 case TOD3_PTP_PLL_ADDR:
1205 err = set_tod_ptp_pll(idtcm, 3, val);
1206 break;
1207 default:
1208 err = set_pll_output_mask(idtcm, regaddr, val);
1209 break;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001210 }
1211
1212 return err;
1213}
1214
Min Li7ea5fda2020-07-28 16:00:30 -04001215static void display_pll_and_masks(struct idtcm *idtcm)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001216{
1217 u8 i;
1218 u8 mask;
1219
Min Li930dfa52021-09-24 15:01:32 -04001220 dev_dbg(idtcm->dev, "tod_mask = 0x%02x", idtcm->tod_mask);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001221
Min Li7ea5fda2020-07-28 16:00:30 -04001222 for (i = 0; i < MAX_TOD; i++) {
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001223 mask = 1 << i;
1224
Min Li7ea5fda2020-07-28 16:00:30 -04001225 if (mask & idtcm->tod_mask)
Min Li930dfa52021-09-24 15:01:32 -04001226 dev_dbg(idtcm->dev,
Vincent Cheng1c49d3e2021-02-17 00:42:15 -05001227 "TOD%d pll = %d output_mask = 0x%04x",
Min Li7ea5fda2020-07-28 16:00:30 -04001228 i, idtcm->channel[i].pll,
1229 idtcm->channel[i].output_mask);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001230 }
1231}
1232
1233static int idtcm_load_firmware(struct idtcm *idtcm,
1234 struct device *dev)
1235{
Min Li794c3df2021-09-13 16:12:33 -04001236 u16 scratch = IDTCM_FW_REG(idtcm->fw_ver, V520, SCRATCH);
Min Li7ea5fda2020-07-28 16:00:30 -04001237 char fname[128] = FW_FILENAME;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001238 const struct firmware *fw;
1239 struct idtcm_fwrc *rec;
1240 u32 regaddr;
1241 int err;
1242 s32 len;
1243 u8 val;
1244 u8 loaddr;
1245
Min Li7ea5fda2020-07-28 16:00:30 -04001246 if (firmware) /* module parameter */
1247 snprintf(fname, sizeof(fname), "%s", firmware);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001248
Min Li930dfa52021-09-24 15:01:32 -04001249 dev_info(idtcm->dev, "requesting firmware '%s'", fname);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001250
Min Li7ea5fda2020-07-28 16:00:30 -04001251 err = request_firmware(&fw, fname, dev);
Min Li7ea5fda2020-07-28 16:00:30 -04001252 if (err) {
Min Li930dfa52021-09-24 15:01:32 -04001253 dev_err(idtcm->dev,
Vincent Cheng1c49d3e2021-02-17 00:42:15 -05001254 "Failed at line %d in %s!", __LINE__, __func__);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001255 return err;
Min Li7ea5fda2020-07-28 16:00:30 -04001256 }
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001257
Min Li930dfa52021-09-24 15:01:32 -04001258 dev_dbg(idtcm->dev, "firmware size %zu bytes", fw->size);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001259
1260 rec = (struct idtcm_fwrc *) fw->data;
1261
Min Li794c3df2021-09-13 16:12:33 -04001262 if (contains_full_configuration(idtcm, fw))
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001263 idtcm_state_machine_reset(idtcm);
1264
1265 for (len = fw->size; len > 0; len -= sizeof(*rec)) {
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001266 if (rec->reserved) {
Min Li930dfa52021-09-24 15:01:32 -04001267 dev_err(idtcm->dev,
Vincent Cheng1c49d3e2021-02-17 00:42:15 -05001268 "bad firmware, reserved field non-zero");
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001269 err = -EINVAL;
1270 } else {
1271 regaddr = rec->hiaddr << 8;
1272 regaddr |= rec->loaddr;
1273
1274 val = rec->value;
1275 loaddr = rec->loaddr;
1276
1277 rec++;
1278
1279 err = check_and_set_masks(idtcm, regaddr, val);
1280 }
1281
Min Li7ea5fda2020-07-28 16:00:30 -04001282 if (err != -EINVAL) {
1283 err = 0;
1284
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001285 /* Top (status registers) and bottom are read-only */
Min Li794c3df2021-09-13 16:12:33 -04001286 if (regaddr < GPIO_USER_CONTROL || regaddr >= scratch)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001287 continue;
1288
1289 /* Page size 128, last 4 bytes of page skipped */
Vincent Cheng77fdb162021-02-17 00:42:18 -05001290 if ((loaddr > 0x7b && loaddr <= 0x7f) || loaddr > 0xfb)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001291 continue;
1292
1293 err = idtcm_write(idtcm, regaddr, 0, &val, sizeof(val));
1294 }
1295
1296 if (err)
1297 goto out;
1298 }
1299
Min Li7ea5fda2020-07-28 16:00:30 -04001300 display_pll_and_masks(idtcm);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001301
1302out:
1303 release_firmware(fw);
1304 return err;
1305}
1306
Min Li7ea5fda2020-07-28 16:00:30 -04001307static int idtcm_output_enable(struct idtcm_channel *channel,
1308 bool enable, unsigned int outn)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001309{
1310 struct idtcm *idtcm = channel->idtcm;
Min Li7260d1c2020-12-08 10:41:56 -05001311 int base;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001312 int err;
Min Li7ea5fda2020-07-28 16:00:30 -04001313 u8 val;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001314
Min Li794c3df2021-09-13 16:12:33 -04001315 base = get_output_base_addr(idtcm->fw_ver, outn);
Min Li7260d1c2020-12-08 10:41:56 -05001316
1317 if (!(base > 0)) {
Min Li930dfa52021-09-24 15:01:32 -04001318 dev_err(idtcm->dev,
Min Li7260d1c2020-12-08 10:41:56 -05001319 "%s - Unsupported out%d", __func__, outn);
1320 return base;
1321 }
1322
1323 err = idtcm_read(idtcm, (u16)base, OUT_CTRL_1, &val, sizeof(val));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001324 if (err)
1325 return err;
1326
1327 if (enable)
1328 val |= SQUELCH_DISABLE;
1329 else
1330 val &= ~SQUELCH_DISABLE;
1331
Min Li7260d1c2020-12-08 10:41:56 -05001332 return idtcm_write(idtcm, (u16)base, OUT_CTRL_1, &val, sizeof(val));
Min Li7ea5fda2020-07-28 16:00:30 -04001333}
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001334
Min Li7ea5fda2020-07-28 16:00:30 -04001335static int idtcm_output_mask_enable(struct idtcm_channel *channel,
1336 bool enable)
1337{
1338 u16 mask;
1339 int err;
1340 u8 outn;
1341
1342 mask = channel->output_mask;
1343 outn = 0;
1344
1345 while (mask) {
Min Li7ea5fda2020-07-28 16:00:30 -04001346 if (mask & 0x1) {
Min Li7ea5fda2020-07-28 16:00:30 -04001347 err = idtcm_output_enable(channel, enable, outn);
Min Li7ea5fda2020-07-28 16:00:30 -04001348 if (err)
1349 return err;
1350 }
1351
1352 mask >>= 0x1;
1353 outn++;
1354 }
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001355
1356 return 0;
1357}
1358
Min Li7ea5fda2020-07-28 16:00:30 -04001359static int idtcm_perout_enable(struct idtcm_channel *channel,
Min Li930dfa52021-09-24 15:01:32 -04001360 struct ptp_perout_request *perout,
1361 bool enable)
Min Li7ea5fda2020-07-28 16:00:30 -04001362{
Vincent Chenge8b4d8b2021-02-17 00:42:13 -05001363 struct idtcm *idtcm = channel->idtcm;
Min Li7ea5fda2020-07-28 16:00:30 -04001364 unsigned int flags = perout->flags;
Vincent Chenge8b4d8b2021-02-17 00:42:13 -05001365 struct timespec64 ts = {0, 0};
1366 int err;
Min Li7ea5fda2020-07-28 16:00:30 -04001367
1368 if (flags == PEROUT_ENABLE_OUTPUT_MASK)
Vincent Chenge8b4d8b2021-02-17 00:42:13 -05001369 err = idtcm_output_mask_enable(channel, enable);
1370 else
1371 err = idtcm_output_enable(channel, enable, perout->index);
Min Li7ea5fda2020-07-28 16:00:30 -04001372
Vincent Chenge8b4d8b2021-02-17 00:42:13 -05001373 if (err) {
Min Li930dfa52021-09-24 15:01:32 -04001374 dev_err(idtcm->dev, "Unable to set output enable");
Vincent Chenge8b4d8b2021-02-17 00:42:13 -05001375 return err;
1376 }
1377
1378 /* Align output to internal 1 PPS */
1379 return _idtcm_settime(channel, &ts, SCSR_TOD_WR_TYPE_SEL_DELTA_PLUS);
Min Li7ea5fda2020-07-28 16:00:30 -04001380}
1381
Min Li7260d1c2020-12-08 10:41:56 -05001382static int idtcm_get_pll_mode(struct idtcm_channel *channel,
Min Lida9facf2021-09-13 16:12:34 -04001383 enum pll_mode *mode)
Min Li7260d1c2020-12-08 10:41:56 -05001384{
1385 struct idtcm *idtcm = channel->idtcm;
1386 int err;
1387 u8 dpll_mode;
1388
Min Li794c3df2021-09-13 16:12:33 -04001389 err = idtcm_read(idtcm, channel->dpll_n,
1390 IDTCM_FW_REG(idtcm->fw_ver, V520, DPLL_MODE),
Min Li7260d1c2020-12-08 10:41:56 -05001391 &dpll_mode, sizeof(dpll_mode));
1392 if (err)
1393 return err;
1394
Min Lida9facf2021-09-13 16:12:34 -04001395 *mode = (dpll_mode >> PLL_MODE_SHIFT) & PLL_MODE_MASK;
Min Li7260d1c2020-12-08 10:41:56 -05001396
1397 return 0;
1398}
1399
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001400static int idtcm_set_pll_mode(struct idtcm_channel *channel,
Min Lida9facf2021-09-13 16:12:34 -04001401 enum pll_mode mode)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001402{
1403 struct idtcm *idtcm = channel->idtcm;
1404 int err;
1405 u8 dpll_mode;
1406
Min Li794c3df2021-09-13 16:12:33 -04001407 err = idtcm_read(idtcm, channel->dpll_n,
1408 IDTCM_FW_REG(idtcm->fw_ver, V520, DPLL_MODE),
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001409 &dpll_mode, sizeof(dpll_mode));
1410 if (err)
1411 return err;
1412
1413 dpll_mode &= ~(PLL_MODE_MASK << PLL_MODE_SHIFT);
1414
Min Lida9facf2021-09-13 16:12:34 -04001415 dpll_mode |= (mode << PLL_MODE_SHIFT);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001416
Min Li794c3df2021-09-13 16:12:33 -04001417 err = idtcm_write(idtcm, channel->dpll_n,
1418 IDTCM_FW_REG(idtcm->fw_ver, V520, DPLL_MODE),
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001419 &dpll_mode, sizeof(dpll_mode));
Min Lida9facf2021-09-13 16:12:34 -04001420 return err;
1421}
1422
1423static int idtcm_get_manual_reference(struct idtcm_channel *channel,
1424 enum manual_reference *ref)
1425{
1426 struct idtcm *idtcm = channel->idtcm;
1427 u8 dpll_manu_ref_cfg;
1428 int err;
1429
1430 err = idtcm_read(idtcm, channel->dpll_ctrl_n,
1431 DPLL_CTRL_DPLL_MANU_REF_CFG,
1432 &dpll_manu_ref_cfg, sizeof(dpll_manu_ref_cfg));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001433 if (err)
1434 return err;
1435
Min Lida9facf2021-09-13 16:12:34 -04001436 dpll_manu_ref_cfg &= (MANUAL_REFERENCE_MASK << MANUAL_REFERENCE_SHIFT);
1437
1438 *ref = dpll_manu_ref_cfg >> MANUAL_REFERENCE_SHIFT;
1439
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001440 return 0;
1441}
1442
Min Lida9facf2021-09-13 16:12:34 -04001443static int idtcm_set_manual_reference(struct idtcm_channel *channel,
1444 enum manual_reference ref)
1445{
1446 struct idtcm *idtcm = channel->idtcm;
1447 u8 dpll_manu_ref_cfg;
1448 int err;
1449
1450 err = idtcm_read(idtcm, channel->dpll_ctrl_n,
1451 DPLL_CTRL_DPLL_MANU_REF_CFG,
1452 &dpll_manu_ref_cfg, sizeof(dpll_manu_ref_cfg));
1453 if (err)
1454 return err;
1455
1456 dpll_manu_ref_cfg &= ~(MANUAL_REFERENCE_MASK << MANUAL_REFERENCE_SHIFT);
1457
1458 dpll_manu_ref_cfg |= (ref << MANUAL_REFERENCE_SHIFT);
1459
1460 err = idtcm_write(idtcm, channel->dpll_ctrl_n,
1461 DPLL_CTRL_DPLL_MANU_REF_CFG,
1462 &dpll_manu_ref_cfg, sizeof(dpll_manu_ref_cfg));
1463
1464 return err;
1465}
1466
1467static int configure_dpll_mode_write_frequency(struct idtcm_channel *channel)
1468{
1469 struct idtcm *idtcm = channel->idtcm;
1470 int err;
1471
1472 err = idtcm_set_pll_mode(channel, PLL_MODE_WRITE_FREQUENCY);
1473
1474 if (err)
Min Li930dfa52021-09-24 15:01:32 -04001475 dev_err(idtcm->dev, "Failed to set pll mode to write frequency");
Min Lida9facf2021-09-13 16:12:34 -04001476 else
1477 channel->mode = PTP_PLL_MODE_WRITE_FREQUENCY;
1478
1479 return err;
1480}
1481
1482static int configure_dpll_mode_write_phase(struct idtcm_channel *channel)
1483{
1484 struct idtcm *idtcm = channel->idtcm;
1485 int err;
1486
1487 err = idtcm_set_pll_mode(channel, PLL_MODE_WRITE_PHASE);
1488
1489 if (err)
Min Li930dfa52021-09-24 15:01:32 -04001490 dev_err(idtcm->dev, "Failed to set pll mode to write phase");
Min Lida9facf2021-09-13 16:12:34 -04001491 else
1492 channel->mode = PTP_PLL_MODE_WRITE_PHASE;
1493
1494 return err;
1495}
1496
1497static int configure_manual_reference_write_frequency(struct idtcm_channel *channel)
1498{
1499 struct idtcm *idtcm = channel->idtcm;
1500 int err;
1501
1502 err = idtcm_set_manual_reference(channel, MANU_REF_WRITE_FREQUENCY);
1503
1504 if (err)
Min Li930dfa52021-09-24 15:01:32 -04001505 dev_err(idtcm->dev, "Failed to set manual reference to write frequency");
Min Lida9facf2021-09-13 16:12:34 -04001506 else
1507 channel->mode = PTP_PLL_MODE_WRITE_FREQUENCY;
1508
1509 return err;
1510}
1511
1512static int configure_manual_reference_write_phase(struct idtcm_channel *channel)
1513{
1514 struct idtcm *idtcm = channel->idtcm;
1515 int err;
1516
1517 err = idtcm_set_manual_reference(channel, MANU_REF_WRITE_PHASE);
1518
1519 if (err)
Min Li930dfa52021-09-24 15:01:32 -04001520 dev_err(idtcm->dev, "Failed to set manual reference to write phase");
Min Lida9facf2021-09-13 16:12:34 -04001521 else
1522 channel->mode = PTP_PLL_MODE_WRITE_PHASE;
1523
1524 return err;
1525}
1526
1527static int idtcm_stop_phase_pull_in(struct idtcm_channel *channel)
1528{
1529 int err;
1530
1531 err = _idtcm_adjfine(channel, channel->current_freq_scaled_ppm);
1532 if (err)
1533 return err;
1534
1535 channel->phase_pull_in = false;
1536
1537 return 0;
1538}
1539
1540static long idtcm_work_handler(struct ptp_clock_info *ptp)
1541{
1542 struct idtcm_channel *channel = container_of(ptp, struct idtcm_channel, caps);
1543 struct idtcm *idtcm = channel->idtcm;
1544
Min Li930dfa52021-09-24 15:01:32 -04001545 mutex_lock(idtcm->lock);
Min Lida9facf2021-09-13 16:12:34 -04001546
1547 (void)idtcm_stop_phase_pull_in(channel);
1548
Min Li930dfa52021-09-24 15:01:32 -04001549 mutex_unlock(idtcm->lock);
Min Lida9facf2021-09-13 16:12:34 -04001550
1551 /* Return a negative value here to not reschedule */
1552 return -1;
1553}
1554
1555static s32 phase_pull_in_scaled_ppm(s32 current_ppm, s32 phase_pull_in_ppb)
1556{
1557 /* ppb = scaled_ppm * 125 / 2^13 */
1558 /* scaled_ppm = ppb * 2^13 / 125 */
1559
Min Li930dfa52021-09-24 15:01:32 -04001560 s64 max_scaled_ppm = div_s64((s64)PHASE_PULL_IN_MAX_PPB << 13, 125);
1561 s64 scaled_ppm = div_s64((s64)phase_pull_in_ppb << 13, 125);
Min Lida9facf2021-09-13 16:12:34 -04001562
1563 current_ppm += scaled_ppm;
1564
1565 if (current_ppm > max_scaled_ppm)
1566 current_ppm = max_scaled_ppm;
1567 else if (current_ppm < -max_scaled_ppm)
1568 current_ppm = -max_scaled_ppm;
1569
1570 return current_ppm;
1571}
1572
1573static int do_phase_pull_in_sw(struct idtcm_channel *channel,
1574 s32 delta_ns,
1575 u32 max_ffo_ppb)
1576{
1577 s32 current_ppm = channel->current_freq_scaled_ppm;
1578 u32 duration_ms = MSEC_PER_SEC;
1579 s32 delta_ppm;
1580 s32 ppb;
1581 int err;
1582
1583 /* If the ToD correction is less than PHASE_PULL_IN_MIN_THRESHOLD_NS,
1584 * skip. The error introduced by the ToD adjustment procedure would
1585 * be bigger than the required ToD correction
1586 */
1587 if (abs(delta_ns) < PHASE_PULL_IN_MIN_THRESHOLD_NS)
1588 return 0;
1589
1590 if (max_ffo_ppb == 0)
1591 max_ffo_ppb = PHASE_PULL_IN_MAX_PPB;
1592
1593 /* For most cases, keep phase pull-in duration 1 second */
1594 ppb = delta_ns;
1595 while (abs(ppb) > max_ffo_ppb) {
1596 duration_ms *= 2;
1597 ppb /= 2;
1598 }
1599
1600 delta_ppm = phase_pull_in_scaled_ppm(current_ppm, ppb);
1601
1602 err = _idtcm_adjfine(channel, delta_ppm);
1603
1604 if (err)
1605 return err;
1606
1607 /* schedule the worker to cancel phase pull-in */
1608 ptp_schedule_worker(channel->ptp_clock,
1609 msecs_to_jiffies(duration_ms) - 1);
1610
1611 channel->phase_pull_in = true;
1612
1613 return 0;
1614}
1615
1616static int initialize_operating_mode_with_manual_reference(struct idtcm_channel *channel,
1617 enum manual_reference ref)
1618{
1619 struct idtcm *idtcm = channel->idtcm;
1620
1621 channel->mode = PTP_PLL_MODE_UNSUPPORTED;
1622 channel->configure_write_frequency = configure_manual_reference_write_frequency;
1623 channel->configure_write_phase = configure_manual_reference_write_phase;
1624 channel->do_phase_pull_in = do_phase_pull_in_sw;
1625
1626 switch (ref) {
1627 case MANU_REF_WRITE_PHASE:
1628 channel->mode = PTP_PLL_MODE_WRITE_PHASE;
1629 break;
1630 case MANU_REF_WRITE_FREQUENCY:
1631 channel->mode = PTP_PLL_MODE_WRITE_FREQUENCY;
1632 break;
1633 default:
Min Li930dfa52021-09-24 15:01:32 -04001634 dev_warn(idtcm->dev,
Min Lida9facf2021-09-13 16:12:34 -04001635 "Unsupported MANUAL_REFERENCE: 0x%02x", ref);
1636 }
1637
1638 return 0;
1639}
1640
1641static int initialize_operating_mode_with_pll_mode(struct idtcm_channel *channel,
1642 enum pll_mode mode)
1643{
1644 struct idtcm *idtcm = channel->idtcm;
1645 int err = 0;
1646
1647 channel->mode = PTP_PLL_MODE_UNSUPPORTED;
1648 channel->configure_write_frequency = configure_dpll_mode_write_frequency;
1649 channel->configure_write_phase = configure_dpll_mode_write_phase;
1650 channel->do_phase_pull_in = do_phase_pull_in_fw;
1651
1652 switch (mode) {
1653 case PLL_MODE_WRITE_PHASE:
1654 channel->mode = PTP_PLL_MODE_WRITE_PHASE;
1655 break;
1656 case PLL_MODE_WRITE_FREQUENCY:
1657 channel->mode = PTP_PLL_MODE_WRITE_FREQUENCY;
1658 break;
1659 default:
Min Li930dfa52021-09-24 15:01:32 -04001660 dev_err(idtcm->dev,
Min Lida9facf2021-09-13 16:12:34 -04001661 "Unsupported PLL_MODE: 0x%02x", mode);
1662 err = -EINVAL;
1663 }
1664
1665 return err;
1666}
1667
1668static int initialize_dco_operating_mode(struct idtcm_channel *channel)
1669{
1670 enum manual_reference ref = MANU_REF_XO_DPLL;
1671 enum pll_mode mode = PLL_MODE_DISABLED;
1672 struct idtcm *idtcm = channel->idtcm;
1673 int err;
1674
1675 channel->mode = PTP_PLL_MODE_UNSUPPORTED;
1676
1677 err = idtcm_get_pll_mode(channel, &mode);
1678 if (err) {
Min Li930dfa52021-09-24 15:01:32 -04001679 dev_err(idtcm->dev, "Unable to read pll mode!");
Min Lida9facf2021-09-13 16:12:34 -04001680 return err;
1681 }
1682
1683 if (mode == PLL_MODE_PLL) {
1684 err = idtcm_get_manual_reference(channel, &ref);
1685 if (err) {
Min Li930dfa52021-09-24 15:01:32 -04001686 dev_err(idtcm->dev, "Unable to read manual reference!");
Min Lida9facf2021-09-13 16:12:34 -04001687 return err;
1688 }
1689 err = initialize_operating_mode_with_manual_reference(channel, ref);
1690 } else {
1691 err = initialize_operating_mode_with_pll_mode(channel, mode);
1692 }
1693
1694 if (channel->mode == PTP_PLL_MODE_WRITE_PHASE)
1695 channel->configure_write_frequency(channel);
1696
1697 return err;
1698}
1699
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001700/* PTP Hardware Clock interface */
1701
Min Li794c3df2021-09-13 16:12:33 -04001702/**
Min Lida9facf2021-09-13 16:12:34 -04001703 * Maximum absolute value for write phase offset in picoseconds
1704 *
1705 * @channel: channel
1706 * @delta_ns: delta in nanoseconds
Vincent Cheng425d2b12020-05-01 23:35:38 -04001707 *
1708 * Destination signed register is 32-bit register in resolution of 50ps
1709 *
1710 * 0x7fffffff * 50 = 2147483647 * 50 = 107374182350
1711 */
1712static int _idtcm_adjphase(struct idtcm_channel *channel, s32 delta_ns)
1713{
1714 struct idtcm *idtcm = channel->idtcm;
Vincent Cheng425d2b12020-05-01 23:35:38 -04001715 int err;
1716 u8 i;
1717 u8 buf[4] = {0};
1718 s32 phase_50ps;
1719 s64 offset_ps;
1720
Min Lida9facf2021-09-13 16:12:34 -04001721 if (channel->mode != PTP_PLL_MODE_WRITE_PHASE) {
1722 err = channel->configure_write_phase(channel);
Vincent Cheng425d2b12020-05-01 23:35:38 -04001723 if (err)
1724 return err;
Vincent Cheng425d2b12020-05-01 23:35:38 -04001725 }
1726
Vincent Cheng425d2b12020-05-01 23:35:38 -04001727 offset_ps = (s64)delta_ns * 1000;
1728
1729 /*
1730 * Check for 32-bit signed max * 50:
1731 *
1732 * 0x7fffffff * 50 = 2147483647 * 50 = 107374182350
1733 */
1734 if (offset_ps > MAX_ABS_WRITE_PHASE_PICOSECONDS)
1735 offset_ps = MAX_ABS_WRITE_PHASE_PICOSECONDS;
1736 else if (offset_ps < -MAX_ABS_WRITE_PHASE_PICOSECONDS)
1737 offset_ps = -MAX_ABS_WRITE_PHASE_PICOSECONDS;
1738
Min Li7260d1c2020-12-08 10:41:56 -05001739 phase_50ps = div_s64(offset_ps, 50);
Vincent Cheng425d2b12020-05-01 23:35:38 -04001740
1741 for (i = 0; i < 4; i++) {
1742 buf[i] = phase_50ps & 0xff;
1743 phase_50ps >>= 8;
1744 }
1745
1746 err = idtcm_write(idtcm, channel->dpll_phase, DPLL_WR_PHASE,
1747 buf, sizeof(buf));
1748
1749 return err;
1750}
1751
Min Li7ea5fda2020-07-28 16:00:30 -04001752static int _idtcm_adjfine(struct idtcm_channel *channel, long scaled_ppm)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001753{
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001754 struct idtcm *idtcm = channel->idtcm;
1755 u8 i;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001756 int err;
1757 u8 buf[6] = {0};
1758 s64 fcw;
1759
Min Lida9facf2021-09-13 16:12:34 -04001760 if (channel->mode != PTP_PLL_MODE_WRITE_FREQUENCY) {
1761 err = channel->configure_write_frequency(channel);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001762 if (err)
1763 return err;
1764 }
1765
1766 /*
1767 * Frequency Control Word unit is: 1.11 * 10^-10 ppm
1768 *
1769 * adjfreq:
1770 * ppb * 10^9
1771 * FCW = ----------
1772 * 111
1773 *
1774 * adjfine:
1775 * ppm_16 * 5^12
1776 * FCW = -------------
1777 * 111 * 2^4
1778 */
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001779
1780 /* 2 ^ -53 = 1.1102230246251565404236316680908e-16 */
Min Li7ea5fda2020-07-28 16:00:30 -04001781 fcw = scaled_ppm * 244140625ULL;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001782
Min Li7260d1c2020-12-08 10:41:56 -05001783 fcw = div_s64(fcw, 1776);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001784
1785 for (i = 0; i < 6; i++) {
1786 buf[i] = fcw & 0xff;
1787 fcw >>= 8;
1788 }
1789
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001790 err = idtcm_write(idtcm, channel->dpll_freq, DPLL_WR_FREQ,
1791 buf, sizeof(buf));
1792
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001793 return err;
1794}
1795
1796static int idtcm_gettime(struct ptp_clock_info *ptp, struct timespec64 *ts)
1797{
Vincent Chengfcfd3752021-02-17 00:42:16 -05001798 struct idtcm_channel *channel = container_of(ptp, struct idtcm_channel, caps);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001799 struct idtcm *idtcm = channel->idtcm;
1800 int err;
1801
Min Li930dfa52021-09-24 15:01:32 -04001802 mutex_lock(idtcm->lock);
1803 err = _idtcm_gettime_immediate(channel, ts);
1804 mutex_unlock(idtcm->lock);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001805
Min Li7ea5fda2020-07-28 16:00:30 -04001806 if (err)
Min Li930dfa52021-09-24 15:01:32 -04001807 dev_err(idtcm->dev, "Failed at line %d in %s!",
Vincent Cheng1c49d3e2021-02-17 00:42:15 -05001808 __LINE__, __func__);
Min Li7ea5fda2020-07-28 16:00:30 -04001809
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001810 return err;
1811}
1812
Min Lida948232020-12-08 10:41:57 -05001813static int idtcm_settime_deprecated(struct ptp_clock_info *ptp,
1814 const struct timespec64 *ts)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001815{
Vincent Chengfcfd3752021-02-17 00:42:16 -05001816 struct idtcm_channel *channel = container_of(ptp, struct idtcm_channel, caps);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001817 struct idtcm *idtcm = channel->idtcm;
1818 int err;
1819
Min Li930dfa52021-09-24 15:01:32 -04001820 mutex_lock(idtcm->lock);
Min Lida948232020-12-08 10:41:57 -05001821 err = _idtcm_settime_deprecated(channel, ts);
Min Li930dfa52021-09-24 15:01:32 -04001822 mutex_unlock(idtcm->lock);
Min Li7ea5fda2020-07-28 16:00:30 -04001823
Min Li930dfa52021-09-24 15:01:32 -04001824 if (err)
1825 dev_err(idtcm->dev,
1826 "Failed at line %d in %s!", __LINE__, __func__);
Min Li7ea5fda2020-07-28 16:00:30 -04001827
1828 return err;
1829}
1830
Min Lida948232020-12-08 10:41:57 -05001831static int idtcm_settime(struct ptp_clock_info *ptp,
Min Li7ea5fda2020-07-28 16:00:30 -04001832 const struct timespec64 *ts)
1833{
Vincent Chengfcfd3752021-02-17 00:42:16 -05001834 struct idtcm_channel *channel = container_of(ptp, struct idtcm_channel, caps);
Min Li7ea5fda2020-07-28 16:00:30 -04001835 struct idtcm *idtcm = channel->idtcm;
1836 int err;
1837
Min Li930dfa52021-09-24 15:01:32 -04001838 mutex_lock(idtcm->lock);
Min Lida948232020-12-08 10:41:57 -05001839 err = _idtcm_settime(channel, ts, SCSR_TOD_WR_TYPE_SEL_ABSOLUTE);
Min Li930dfa52021-09-24 15:01:32 -04001840 mutex_unlock(idtcm->lock);
Min Lida948232020-12-08 10:41:57 -05001841
Min Li930dfa52021-09-24 15:01:32 -04001842 if (err)
1843 dev_err(idtcm->dev,
1844 "Failed at line %d in %s!", __LINE__, __func__);
Min Lida948232020-12-08 10:41:57 -05001845
1846 return err;
1847}
1848
1849static int idtcm_adjtime_deprecated(struct ptp_clock_info *ptp, s64 delta)
1850{
Vincent Chengfcfd3752021-02-17 00:42:16 -05001851 struct idtcm_channel *channel = container_of(ptp, struct idtcm_channel, caps);
Min Lida948232020-12-08 10:41:57 -05001852 struct idtcm *idtcm = channel->idtcm;
1853 int err;
1854
Min Li930dfa52021-09-24 15:01:32 -04001855 mutex_lock(idtcm->lock);
Min Lida948232020-12-08 10:41:57 -05001856 err = _idtcm_adjtime_deprecated(channel, delta);
Min Li930dfa52021-09-24 15:01:32 -04001857 mutex_unlock(idtcm->lock);
Min Li7ea5fda2020-07-28 16:00:30 -04001858
Min Li930dfa52021-09-24 15:01:32 -04001859 if (err)
1860 dev_err(idtcm->dev,
1861 "Failed at line %d in %s!", __LINE__, __func__);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001862
1863 return err;
1864}
1865
1866static int idtcm_adjtime(struct ptp_clock_info *ptp, s64 delta)
1867{
Vincent Chengfcfd3752021-02-17 00:42:16 -05001868 struct idtcm_channel *channel = container_of(ptp, struct idtcm_channel, caps);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001869 struct idtcm *idtcm = channel->idtcm;
Min Li7ea5fda2020-07-28 16:00:30 -04001870 struct timespec64 ts;
1871 enum scsr_tod_write_type_sel type;
1872 int err;
1873
Min Lida9facf2021-09-13 16:12:34 -04001874 if (channel->phase_pull_in == true)
1875 return 0;
Min Li7ea5fda2020-07-28 16:00:30 -04001876
Min Li930dfa52021-09-24 15:01:32 -04001877 mutex_lock(idtcm->lock);
Min Li7ea5fda2020-07-28 16:00:30 -04001878
Min Lida9facf2021-09-13 16:12:34 -04001879 if (abs(delta) < PHASE_PULL_IN_THRESHOLD_NS) {
1880 err = channel->do_phase_pull_in(channel, delta, 0);
Min Lida9facf2021-09-13 16:12:34 -04001881 } else {
1882 if (delta >= 0) {
1883 ts = ns_to_timespec64(delta);
1884 type = SCSR_TOD_WR_TYPE_SEL_DELTA_PLUS;
1885 } else {
1886 ts = ns_to_timespec64(-delta);
1887 type = SCSR_TOD_WR_TYPE_SEL_DELTA_MINUS;
1888 }
1889 err = _idtcm_settime(channel, &ts, type);
Min Lida9facf2021-09-13 16:12:34 -04001890 }
Min Li930dfa52021-09-24 15:01:32 -04001891
1892 mutex_unlock(idtcm->lock);
1893
1894 if (err)
1895 dev_err(idtcm->dev,
1896 "Failed at line %d in %s!", __LINE__, __func__);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001897
1898 return err;
1899}
1900
Vincent Cheng425d2b12020-05-01 23:35:38 -04001901static int idtcm_adjphase(struct ptp_clock_info *ptp, s32 delta)
1902{
Vincent Chengfcfd3752021-02-17 00:42:16 -05001903 struct idtcm_channel *channel = container_of(ptp, struct idtcm_channel, caps);
Vincent Cheng425d2b12020-05-01 23:35:38 -04001904 struct idtcm *idtcm = channel->idtcm;
Vincent Cheng425d2b12020-05-01 23:35:38 -04001905 int err;
1906
Min Li930dfa52021-09-24 15:01:32 -04001907 mutex_lock(idtcm->lock);
Vincent Cheng425d2b12020-05-01 23:35:38 -04001908 err = _idtcm_adjphase(channel, delta);
Min Li930dfa52021-09-24 15:01:32 -04001909 mutex_unlock(idtcm->lock);
Min Li7ea5fda2020-07-28 16:00:30 -04001910
Min Li930dfa52021-09-24 15:01:32 -04001911 if (err)
1912 dev_err(idtcm->dev,
1913 "Failed at line %d in %s!", __LINE__, __func__);
Min Li7ea5fda2020-07-28 16:00:30 -04001914
1915 return err;
1916}
1917
1918static int idtcm_adjfine(struct ptp_clock_info *ptp, long scaled_ppm)
1919{
Vincent Chengfcfd3752021-02-17 00:42:16 -05001920 struct idtcm_channel *channel = container_of(ptp, struct idtcm_channel, caps);
Min Li7ea5fda2020-07-28 16:00:30 -04001921 struct idtcm *idtcm = channel->idtcm;
Min Li7ea5fda2020-07-28 16:00:30 -04001922 int err;
1923
Min Lida9facf2021-09-13 16:12:34 -04001924 if (channel->phase_pull_in == true)
1925 return 0;
1926
1927 if (scaled_ppm == channel->current_freq_scaled_ppm)
1928 return 0;
1929
Min Li930dfa52021-09-24 15:01:32 -04001930 mutex_lock(idtcm->lock);
Min Li7ea5fda2020-07-28 16:00:30 -04001931 err = _idtcm_adjfine(channel, scaled_ppm);
Min Li930dfa52021-09-24 15:01:32 -04001932 mutex_unlock(idtcm->lock);
Min Li7ea5fda2020-07-28 16:00:30 -04001933
Min Li930dfa52021-09-24 15:01:32 -04001934 if (err)
1935 dev_err(idtcm->dev,
1936 "Failed at line %d in %s!", __LINE__, __func__);
1937 else
Min Lida9facf2021-09-13 16:12:34 -04001938 channel->current_freq_scaled_ppm = scaled_ppm;
1939
Vincent Cheng425d2b12020-05-01 23:35:38 -04001940 return err;
1941}
1942
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001943static int idtcm_enable(struct ptp_clock_info *ptp,
1944 struct ptp_clock_request *rq, int on)
1945{
Vincent Chengfcfd3752021-02-17 00:42:16 -05001946 struct idtcm_channel *channel = container_of(ptp, struct idtcm_channel, caps);
Min Li930dfa52021-09-24 15:01:32 -04001947 struct idtcm *idtcm = channel->idtcm;
1948 int err = -EOPNOTSUPP;
1949
1950 mutex_lock(idtcm->lock);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001951
1952 switch (rq->type) {
1953 case PTP_CLK_REQ_PEROUT:
Min Li930dfa52021-09-24 15:01:32 -04001954 if (!on)
1955 err = idtcm_perout_enable(channel, &rq->perout, false);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001956 /* Only accept a 1-PPS aligned to the second. */
Min Li930dfa52021-09-24 15:01:32 -04001957 else if (rq->perout.start.nsec || rq->perout.period.sec != 1 ||
1958 rq->perout.period.nsec)
1959 err = -ERANGE;
1960 else
1961 err = idtcm_perout_enable(channel, &rq->perout, true);
1962 break;
1963 case PTP_CLK_REQ_EXTTS:
1964 err = idtcm_enable_extts(channel, rq->extts.index,
1965 rq->extts.rsv[0], on);
1966 break;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001967 default:
1968 break;
1969 }
1970
Min Li930dfa52021-09-24 15:01:32 -04001971 mutex_unlock(idtcm->lock);
1972
1973 if (err)
1974 dev_err(channel->idtcm->dev,
1975 "Failed in %s with err %d!", __func__, err);
1976
1977 return err;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001978}
1979
1980static int idtcm_enable_tod(struct idtcm_channel *channel)
1981{
1982 struct idtcm *idtcm = channel->idtcm;
1983 struct timespec64 ts = {0, 0};
Min Li794c3df2021-09-13 16:12:33 -04001984 u16 tod_cfg = IDTCM_FW_REG(idtcm->fw_ver, V520, TOD_CFG);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001985 u8 cfg;
1986 int err;
1987
Min Li794c3df2021-09-13 16:12:33 -04001988 /* STEELAI-366 - Temporary workaround for ts2phc compatibility */
1989 if (0) {
1990 err = idtcm_output_mask_enable(channel, false);
1991 if (err)
1992 return err;
1993 }
1994
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001995 /*
1996 * Start the TOD clock ticking.
1997 */
Min Li794c3df2021-09-13 16:12:33 -04001998 err = idtcm_read(idtcm, channel->tod_n, tod_cfg, &cfg, sizeof(cfg));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04001999 if (err)
2000 return err;
2001
2002 cfg |= TOD_ENABLE;
2003
Min Li794c3df2021-09-13 16:12:33 -04002004 err = idtcm_write(idtcm, channel->tod_n, tod_cfg, &cfg, sizeof(cfg));
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002005 if (err)
2006 return err;
2007
Min Li794c3df2021-09-13 16:12:33 -04002008 if (idtcm->fw_ver < V487)
Min Lida948232020-12-08 10:41:57 -05002009 return _idtcm_settime_deprecated(channel, &ts);
2010 else
2011 return _idtcm_settime(channel, &ts,
2012 SCSR_TOD_WR_TYPE_SEL_ABSOLUTE);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002013}
2014
Min Lida948232020-12-08 10:41:57 -05002015static void idtcm_set_version_info(struct idtcm *idtcm)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002016{
2017 u8 major;
2018 u8 minor;
2019 u8 hotfix;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002020 u16 product_id;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002021 u8 hw_rev_id;
Vincent Cheng1ece2fb2020-01-07 09:47:57 -05002022 u8 config_select;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002023
2024 idtcm_read_major_release(idtcm, &major);
2025 idtcm_read_minor_release(idtcm, &minor);
2026 idtcm_read_hotfix_release(idtcm, &hotfix);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002027
2028 idtcm_read_product_id(idtcm, &product_id);
2029 idtcm_read_hw_rev_id(idtcm, &hw_rev_id);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002030
Vincent Cheng1ece2fb2020-01-07 09:47:57 -05002031 idtcm_read_otp_scsr_config_select(idtcm, &config_select);
2032
Min Li7ea5fda2020-07-28 16:00:30 -04002033 snprintf(idtcm->version, sizeof(idtcm->version), "%u.%u.%u",
2034 major, minor, hotfix);
2035
Min Li794c3df2021-09-13 16:12:33 -04002036 idtcm->fw_ver = idtcm_fw_version(idtcm->version);
Min Lida948232020-12-08 10:41:57 -05002037
Min Li930dfa52021-09-24 15:01:32 -04002038 dev_info(idtcm->dev,
Vincent Cheng1c49d3e2021-02-17 00:42:15 -05002039 "%d.%d.%d, Id: 0x%04x HW Rev: %d OTP Config Select: %d",
2040 major, minor, hotfix,
Vincent Cheng1ece2fb2020-01-07 09:47:57 -05002041 product_id, hw_rev_id, config_select);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002042}
2043
Julia Lawall6485f9a2020-01-01 08:43:31 +01002044static const struct ptp_clock_info idtcm_caps = {
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002045 .owner = THIS_MODULE,
2046 .max_adj = 244000,
Min Li7ea5fda2020-07-28 16:00:30 -04002047 .n_per_out = 12,
Min Li930dfa52021-09-24 15:01:32 -04002048 .n_ext_ts = MAX_TOD,
Vincent Cheng425d2b12020-05-01 23:35:38 -04002049 .adjphase = &idtcm_adjphase,
Min Li7ea5fda2020-07-28 16:00:30 -04002050 .adjfine = &idtcm_adjfine,
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002051 .adjtime = &idtcm_adjtime,
2052 .gettime64 = &idtcm_gettime,
2053 .settime64 = &idtcm_settime,
2054 .enable = &idtcm_enable,
Min Lida9facf2021-09-13 16:12:34 -04002055 .do_aux_work = &idtcm_work_handler,
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002056};
2057
Min Lida948232020-12-08 10:41:57 -05002058static const struct ptp_clock_info idtcm_caps_deprecated = {
2059 .owner = THIS_MODULE,
2060 .max_adj = 244000,
2061 .n_per_out = 12,
Min Li930dfa52021-09-24 15:01:32 -04002062 .n_ext_ts = MAX_TOD,
Min Lida948232020-12-08 10:41:57 -05002063 .adjphase = &idtcm_adjphase,
2064 .adjfine = &idtcm_adjfine,
2065 .adjtime = &idtcm_adjtime_deprecated,
2066 .gettime64 = &idtcm_gettime,
2067 .settime64 = &idtcm_settime_deprecated,
2068 .enable = &idtcm_enable,
Min Lida9facf2021-09-13 16:12:34 -04002069 .do_aux_work = &idtcm_work_handler,
Min Lida948232020-12-08 10:41:57 -05002070};
2071
Min Li7ea5fda2020-07-28 16:00:30 -04002072static int configure_channel_pll(struct idtcm_channel *channel)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002073{
Min Li794c3df2021-09-13 16:12:33 -04002074 struct idtcm *idtcm = channel->idtcm;
Min Li7ea5fda2020-07-28 16:00:30 -04002075 int err = 0;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002076
Min Li7ea5fda2020-07-28 16:00:30 -04002077 switch (channel->pll) {
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002078 case 0:
2079 channel->dpll_freq = DPLL_FREQ_0;
2080 channel->dpll_n = DPLL_0;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002081 channel->hw_dpll_n = HW_DPLL_0;
2082 channel->dpll_phase = DPLL_PHASE_0;
2083 channel->dpll_ctrl_n = DPLL_CTRL_0;
2084 channel->dpll_phase_pull_in = DPLL_PHASE_PULL_IN_0;
2085 break;
2086 case 1:
2087 channel->dpll_freq = DPLL_FREQ_1;
2088 channel->dpll_n = DPLL_1;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002089 channel->hw_dpll_n = HW_DPLL_1;
2090 channel->dpll_phase = DPLL_PHASE_1;
2091 channel->dpll_ctrl_n = DPLL_CTRL_1;
2092 channel->dpll_phase_pull_in = DPLL_PHASE_PULL_IN_1;
2093 break;
2094 case 2:
2095 channel->dpll_freq = DPLL_FREQ_2;
Min Li794c3df2021-09-13 16:12:33 -04002096 channel->dpll_n = IDTCM_FW_REG(idtcm->fw_ver, V520, DPLL_2);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002097 channel->hw_dpll_n = HW_DPLL_2;
2098 channel->dpll_phase = DPLL_PHASE_2;
2099 channel->dpll_ctrl_n = DPLL_CTRL_2;
2100 channel->dpll_phase_pull_in = DPLL_PHASE_PULL_IN_2;
2101 break;
2102 case 3:
2103 channel->dpll_freq = DPLL_FREQ_3;
2104 channel->dpll_n = DPLL_3;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002105 channel->hw_dpll_n = HW_DPLL_3;
2106 channel->dpll_phase = DPLL_PHASE_3;
2107 channel->dpll_ctrl_n = DPLL_CTRL_3;
2108 channel->dpll_phase_pull_in = DPLL_PHASE_PULL_IN_3;
2109 break;
Min Li7ea5fda2020-07-28 16:00:30 -04002110 case 4:
2111 channel->dpll_freq = DPLL_FREQ_4;
Min Li794c3df2021-09-13 16:12:33 -04002112 channel->dpll_n = IDTCM_FW_REG(idtcm->fw_ver, V520, DPLL_4);
Min Li7ea5fda2020-07-28 16:00:30 -04002113 channel->hw_dpll_n = HW_DPLL_4;
2114 channel->dpll_phase = DPLL_PHASE_4;
2115 channel->dpll_ctrl_n = DPLL_CTRL_4;
2116 channel->dpll_phase_pull_in = DPLL_PHASE_PULL_IN_4;
2117 break;
2118 case 5:
2119 channel->dpll_freq = DPLL_FREQ_5;
2120 channel->dpll_n = DPLL_5;
2121 channel->hw_dpll_n = HW_DPLL_5;
2122 channel->dpll_phase = DPLL_PHASE_5;
2123 channel->dpll_ctrl_n = DPLL_CTRL_5;
2124 channel->dpll_phase_pull_in = DPLL_PHASE_PULL_IN_5;
2125 break;
2126 case 6:
2127 channel->dpll_freq = DPLL_FREQ_6;
Min Li794c3df2021-09-13 16:12:33 -04002128 channel->dpll_n = IDTCM_FW_REG(idtcm->fw_ver, V520, DPLL_6);
Min Li7ea5fda2020-07-28 16:00:30 -04002129 channel->hw_dpll_n = HW_DPLL_6;
2130 channel->dpll_phase = DPLL_PHASE_6;
2131 channel->dpll_ctrl_n = DPLL_CTRL_6;
2132 channel->dpll_phase_pull_in = DPLL_PHASE_PULL_IN_6;
2133 break;
2134 case 7:
2135 channel->dpll_freq = DPLL_FREQ_7;
2136 channel->dpll_n = DPLL_7;
2137 channel->hw_dpll_n = HW_DPLL_7;
2138 channel->dpll_phase = DPLL_PHASE_7;
2139 channel->dpll_ctrl_n = DPLL_CTRL_7;
2140 channel->dpll_phase_pull_in = DPLL_PHASE_PULL_IN_7;
2141 break;
2142 default:
2143 err = -EINVAL;
2144 }
2145
2146 return err;
2147}
2148
Min Li930dfa52021-09-24 15:01:32 -04002149/*
2150 * Compensate for the PTP DCO input-to-output delay.
2151 * This delay is 18 FOD cycles.
2152 */
2153static u32 idtcm_get_dco_delay(struct idtcm_channel *channel)
Min Li7ea5fda2020-07-28 16:00:30 -04002154{
Min Li930dfa52021-09-24 15:01:32 -04002155 struct idtcm *idtcm = channel->idtcm;
2156 u8 mbuf[8] = {0};
2157 u8 nbuf[2] = {0};
2158 u32 fodFreq;
Min Li7ea5fda2020-07-28 16:00:30 -04002159 int err;
Min Li930dfa52021-09-24 15:01:32 -04002160 u64 m;
2161 u16 n;
Min Li7ea5fda2020-07-28 16:00:30 -04002162
Min Li930dfa52021-09-24 15:01:32 -04002163 err = idtcm_read(idtcm, channel->dpll_ctrl_n,
2164 DPLL_CTRL_DPLL_FOD_FREQ, mbuf, 6);
Min Li7ea5fda2020-07-28 16:00:30 -04002165 if (err)
Min Li930dfa52021-09-24 15:01:32 -04002166 return 0;
2167
2168 err = idtcm_read(idtcm, channel->dpll_ctrl_n,
2169 DPLL_CTRL_DPLL_FOD_FREQ + 6, nbuf, 2);
2170 if (err)
2171 return 0;
2172
2173 m = get_unaligned_le64(mbuf);
2174 n = get_unaligned_le16(nbuf);
2175
2176 if (n == 0)
2177 n = 1;
2178
2179 fodFreq = (u32)div_u64(m, n);
2180 if (fodFreq >= 500000000)
2181 return 18 * (u32)div_u64(NSEC_PER_SEC, fodFreq);
2182
2183 return 0;
2184}
2185
2186static int configure_channel_tod(struct idtcm_channel *channel, u32 index)
2187{
2188 enum fw_version fw_ver = channel->idtcm->fw_ver;
Min Li7ea5fda2020-07-28 16:00:30 -04002189
2190 /* Set tod addresses */
2191 switch (index) {
2192 case 0:
Min Li794c3df2021-09-13 16:12:33 -04002193 channel->tod_read_primary = IDTCM_FW_REG(fw_ver, V520, TOD_READ_PRIMARY_0);
2194 channel->tod_write = IDTCM_FW_REG(fw_ver, V520, TOD_WRITE_0);
2195 channel->tod_n = IDTCM_FW_REG(fw_ver, V520, TOD_0);
2196 channel->sync_src = SYNC_SOURCE_DPLL0_TOD_PPS;
Min Li7ea5fda2020-07-28 16:00:30 -04002197 break;
2198 case 1:
Min Li794c3df2021-09-13 16:12:33 -04002199 channel->tod_read_primary = IDTCM_FW_REG(fw_ver, V520, TOD_READ_PRIMARY_1);
2200 channel->tod_write = IDTCM_FW_REG(fw_ver, V520, TOD_WRITE_1);
2201 channel->tod_n = IDTCM_FW_REG(fw_ver, V520, TOD_1);
2202 channel->sync_src = SYNC_SOURCE_DPLL1_TOD_PPS;
Min Li7ea5fda2020-07-28 16:00:30 -04002203 break;
2204 case 2:
Min Li794c3df2021-09-13 16:12:33 -04002205 channel->tod_read_primary = IDTCM_FW_REG(fw_ver, V520, TOD_READ_PRIMARY_2);
2206 channel->tod_write = IDTCM_FW_REG(fw_ver, V520, TOD_WRITE_2);
2207 channel->tod_n = IDTCM_FW_REG(fw_ver, V520, TOD_2);
2208 channel->sync_src = SYNC_SOURCE_DPLL2_TOD_PPS;
Min Li7ea5fda2020-07-28 16:00:30 -04002209 break;
2210 case 3:
Min Li794c3df2021-09-13 16:12:33 -04002211 channel->tod_read_primary = IDTCM_FW_REG(fw_ver, V520, TOD_READ_PRIMARY_3);
2212 channel->tod_write = IDTCM_FW_REG(fw_ver, V520, TOD_WRITE_3);
2213 channel->tod_n = IDTCM_FW_REG(fw_ver, V520, TOD_3);
2214 channel->sync_src = SYNC_SOURCE_DPLL3_TOD_PPS;
Min Li7ea5fda2020-07-28 16:00:30 -04002215 break;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002216 default:
2217 return -EINVAL;
2218 }
2219
Min Li930dfa52021-09-24 15:01:32 -04002220 return 0;
2221}
2222
2223static int idtcm_enable_channel(struct idtcm *idtcm, u32 index)
2224{
2225 struct idtcm_channel *channel;
2226 int err;
2227
2228 if (!(index < MAX_TOD))
2229 return -EINVAL;
2230
2231 channel = &idtcm->channel[index];
2232
2233 channel->idtcm = idtcm;
2234 channel->current_freq_scaled_ppm = 0;
2235
2236 /* Set pll addresses */
2237 err = configure_channel_pll(channel);
2238 if (err)
2239 return err;
2240
2241 /* Set tod addresses */
2242 err = configure_channel_tod(channel, index);
2243 if (err)
2244 return err;
2245
Min Li794c3df2021-09-13 16:12:33 -04002246 if (idtcm->fw_ver < V487)
Min Lida948232020-12-08 10:41:57 -05002247 channel->caps = idtcm_caps_deprecated;
Min Li7ea5fda2020-07-28 16:00:30 -04002248 else
2249 channel->caps = idtcm_caps;
2250
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002251 snprintf(channel->caps.name, sizeof(channel->caps.name),
Min Li7ea5fda2020-07-28 16:00:30 -04002252 "IDT CM TOD%u", index);
2253
Min Lida9facf2021-09-13 16:12:34 -04002254 err = initialize_dco_operating_mode(channel);
2255 if (err)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002256 return err;
2257
2258 err = idtcm_enable_tod(channel);
Min Li7ea5fda2020-07-28 16:00:30 -04002259 if (err) {
Min Li930dfa52021-09-24 15:01:32 -04002260 dev_err(idtcm->dev,
Vincent Cheng1c49d3e2021-02-17 00:42:15 -05002261 "Failed at line %d in %s!", __LINE__, __func__);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002262 return err;
Min Li7ea5fda2020-07-28 16:00:30 -04002263 }
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002264
Min Li930dfa52021-09-24 15:01:32 -04002265 channel->dco_delay = idtcm_get_dco_delay(channel);
2266
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002267 channel->ptp_clock = ptp_clock_register(&channel->caps, NULL);
2268
2269 if (IS_ERR(channel->ptp_clock)) {
2270 err = PTR_ERR(channel->ptp_clock);
2271 channel->ptp_clock = NULL;
2272 return err;
2273 }
2274
2275 if (!channel->ptp_clock)
2276 return -ENOTSUPP;
2277
Min Li930dfa52021-09-24 15:01:32 -04002278 dev_info(idtcm->dev, "PLL%d registered as ptp%d",
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002279 index, channel->ptp_clock->index);
2280
2281 return 0;
2282}
2283
Min Li930dfa52021-09-24 15:01:32 -04002284static int idtcm_enable_extts_channel(struct idtcm *idtcm, u32 index)
2285{
2286 struct idtcm_channel *channel;
2287 int err;
2288
2289 if (!(index < MAX_TOD))
2290 return -EINVAL;
2291
2292 channel = &idtcm->channel[index];
2293 channel->idtcm = idtcm;
2294
2295 /* Set tod addresses */
2296 err = configure_channel_tod(channel, index);
2297 if (err)
2298 return err;
2299
2300 channel->idtcm = idtcm;
2301
2302 return 0;
2303}
2304
2305static void idtcm_extts_check(struct work_struct *work)
2306{
2307 struct idtcm *idtcm = container_of(work, struct idtcm, extts_work.work);
2308 int err, i;
2309
2310 if (idtcm->extts_mask == 0)
2311 return;
2312
2313 mutex_lock(idtcm->lock);
2314 for (i = 0; i < MAX_TOD; i++) {
2315 u8 mask = 1 << i;
2316
2317 if (idtcm->extts_mask & mask) {
2318 err = idtcm_extts_check_channel(idtcm, i);
2319 /* trigger clears itself, so clear the mask */
2320 if (err == 0)
2321 idtcm->extts_mask &= ~mask;
2322 }
2323 }
2324
2325 if (idtcm->extts_mask)
2326 schedule_delayed_work(&idtcm->extts_work,
2327 msecs_to_jiffies(EXTTS_PERIOD_MS));
2328 mutex_unlock(idtcm->lock);
2329}
2330
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002331static void ptp_clock_unregister_all(struct idtcm *idtcm)
2332{
2333 u8 i;
2334 struct idtcm_channel *channel;
2335
Min Li7ea5fda2020-07-28 16:00:30 -04002336 for (i = 0; i < MAX_TOD; i++) {
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002337 channel = &idtcm->channel[i];
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002338 if (channel->ptp_clock)
2339 ptp_clock_unregister(channel->ptp_clock);
2340 }
2341}
2342
2343static void set_default_masks(struct idtcm *idtcm)
2344{
Min Li7ea5fda2020-07-28 16:00:30 -04002345 idtcm->tod_mask = DEFAULT_TOD_MASK;
Min Li930dfa52021-09-24 15:01:32 -04002346 idtcm->extts_mask = 0;
Min Li7ea5fda2020-07-28 16:00:30 -04002347
2348 idtcm->channel[0].pll = DEFAULT_TOD0_PTP_PLL;
2349 idtcm->channel[1].pll = DEFAULT_TOD1_PTP_PLL;
2350 idtcm->channel[2].pll = DEFAULT_TOD2_PTP_PLL;
2351 idtcm->channel[3].pll = DEFAULT_TOD3_PTP_PLL;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002352
2353 idtcm->channel[0].output_mask = DEFAULT_OUTPUT_MASK_PLL0;
2354 idtcm->channel[1].output_mask = DEFAULT_OUTPUT_MASK_PLL1;
2355 idtcm->channel[2].output_mask = DEFAULT_OUTPUT_MASK_PLL2;
2356 idtcm->channel[3].output_mask = DEFAULT_OUTPUT_MASK_PLL3;
2357}
2358
Min Li930dfa52021-09-24 15:01:32 -04002359static int idtcm_probe(struct platform_device *pdev)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002360{
Min Li930dfa52021-09-24 15:01:32 -04002361 struct rsmu_ddata *ddata = dev_get_drvdata(pdev->dev.parent);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002362 struct idtcm *idtcm;
2363 int err;
2364 u8 i;
2365
Min Li930dfa52021-09-24 15:01:32 -04002366 idtcm = devm_kzalloc(&pdev->dev, sizeof(struct idtcm), GFP_KERNEL);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002367
2368 if (!idtcm)
2369 return -ENOMEM;
2370
Min Li930dfa52021-09-24 15:01:32 -04002371 idtcm->dev = &pdev->dev;
2372 idtcm->mfd = pdev->dev.parent;
2373 idtcm->lock = &ddata->lock;
2374 idtcm->regmap = ddata->regmap;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002375 idtcm->calculate_overhead_flag = 0;
2376
Min Li930dfa52021-09-24 15:01:32 -04002377 INIT_DELAYED_WORK(&idtcm->extts_work, idtcm_extts_check);
2378
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002379 set_default_masks(idtcm);
2380
Min Li930dfa52021-09-24 15:01:32 -04002381 mutex_lock(idtcm->lock);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002382
Min Lida948232020-12-08 10:41:57 -05002383 idtcm_set_version_info(idtcm);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002384
Min Li930dfa52021-09-24 15:01:32 -04002385 err = idtcm_load_firmware(idtcm, &pdev->dev);
2386
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002387 if (err)
Min Li930dfa52021-09-24 15:01:32 -04002388 dev_warn(idtcm->dev, "loading firmware failed with %d", err);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002389
Vincent Cheng797d3182021-02-17 00:42:12 -05002390 wait_for_chip_ready(idtcm);
Min Li251f4fe2020-12-08 10:41:54 -05002391
Min Li7ea5fda2020-07-28 16:00:30 -04002392 if (idtcm->tod_mask) {
2393 for (i = 0; i < MAX_TOD; i++) {
Min Li930dfa52021-09-24 15:01:32 -04002394 if (idtcm->tod_mask & (1 << i))
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002395 err = idtcm_enable_channel(idtcm, i);
Min Li930dfa52021-09-24 15:01:32 -04002396 else
2397 err = idtcm_enable_extts_channel(idtcm, i);
2398 if (err) {
2399 dev_err(idtcm->dev,
2400 "idtcm_enable_channel %d failed!", i);
2401 break;
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002402 }
2403 }
2404 } else {
Min Li930dfa52021-09-24 15:01:32 -04002405 dev_err(idtcm->dev,
Vincent Cheng1c49d3e2021-02-17 00:42:15 -05002406 "no PLLs flagged as PHCs, nothing to do");
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002407 err = -ENODEV;
2408 }
2409
Min Li930dfa52021-09-24 15:01:32 -04002410 mutex_unlock(idtcm->lock);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002411
2412 if (err) {
2413 ptp_clock_unregister_all(idtcm);
2414 return err;
2415 }
2416
Min Li930dfa52021-09-24 15:01:32 -04002417 platform_set_drvdata(pdev, idtcm);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002418
2419 return 0;
2420}
2421
Min Li930dfa52021-09-24 15:01:32 -04002422static int idtcm_remove(struct platform_device *pdev)
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002423{
Min Li930dfa52021-09-24 15:01:32 -04002424 struct idtcm *idtcm = platform_get_drvdata(pdev);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002425
2426 ptp_clock_unregister_all(idtcm);
2427
Min Li930dfa52021-09-24 15:01:32 -04002428 cancel_delayed_work_sync(&idtcm->extts_work);
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002429
2430 return 0;
2431}
2432
Min Li930dfa52021-09-24 15:01:32 -04002433static struct platform_driver idtcm_driver = {
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002434 .driver = {
Min Li930dfa52021-09-24 15:01:32 -04002435 .name = "8a3400x-phc",
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002436 },
Min Li930dfa52021-09-24 15:01:32 -04002437 .probe = idtcm_probe,
2438 .remove = idtcm_remove,
Vincent Cheng3a6ba7d2019-10-31 23:20:07 -04002439};
2440
Min Li930dfa52021-09-24 15:01:32 -04002441module_platform_driver(idtcm_driver);