1 // SPDX-License-Identifier: GPL-2.0
6 #define SJA1105_TAS_CLKSRC_DISABLED 0
7 #define SJA1105_TAS_CLKSRC_STANDALONE 1
8 #define SJA1105_TAS_CLKSRC_AS6802 2
9 #define SJA1105_TAS_CLKSRC_PTP 3
10 #define SJA1105_GATE_MASK GENMASK_ULL(SJA1105_NUM_TC - 1, 0)
12 #define work_to_sja1105_tas(d) \
13 container_of((d), struct sja1105_tas_data, tas_work)
14 #define tas_to_sja1105(d) \
15 container_of((d), struct sja1105_private, tas_data)
17 static int sja1105_tas_set_runtime_params(struct sja1105_private *priv)
19 struct sja1105_tas_data *tas_data = &priv->tas_data;
20 struct sja1105_gating_config *gating_cfg = &tas_data->gating_cfg;
21 struct dsa_switch *ds = priv->ds;
22 s64 earliest_base_time = S64_MAX;
23 s64 latest_base_time = 0;
24 s64 its_cycle_time = 0;
25 s64 max_cycle_time = 0;
28 tas_data->enabled = false;
30 for (port = 0; port < ds->num_ports; port++) {
31 const struct tc_taprio_qopt_offload *offload;
33 offload = tas_data->offload[port];
37 tas_data->enabled = true;
39 if (max_cycle_time < offload->cycle_time)
40 max_cycle_time = offload->cycle_time;
41 if (latest_base_time < offload->base_time)
42 latest_base_time = offload->base_time;
43 if (earliest_base_time > offload->base_time) {
44 earliest_base_time = offload->base_time;
45 its_cycle_time = offload->cycle_time;
49 if (!list_empty(&gating_cfg->entries)) {
50 tas_data->enabled = true;
52 if (max_cycle_time < gating_cfg->cycle_time)
53 max_cycle_time = gating_cfg->cycle_time;
54 if (latest_base_time < gating_cfg->base_time)
55 latest_base_time = gating_cfg->base_time;
56 if (earliest_base_time > gating_cfg->base_time) {
57 earliest_base_time = gating_cfg->base_time;
58 its_cycle_time = gating_cfg->cycle_time;
62 if (!tas_data->enabled)
65 /* Roll the earliest base time over until it is in a comparable
66 * time base with the latest, then compare their deltas.
67 * We want to enforce that all ports' base times are within
68 * SJA1105_TAS_MAX_DELTA 200ns cycles of one another.
70 earliest_base_time = future_base_time(earliest_base_time,
73 while (earliest_base_time > latest_base_time)
74 earliest_base_time -= its_cycle_time;
75 if (latest_base_time - earliest_base_time >
76 sja1105_delta_to_ns(SJA1105_TAS_MAX_DELTA)) {
78 "Base times too far apart: min %llu max %llu\n",
79 earliest_base_time, latest_base_time);
83 tas_data->earliest_base_time = earliest_base_time;
84 tas_data->max_cycle_time = max_cycle_time;
86 dev_dbg(ds->dev, "earliest base time %lld ns\n", earliest_base_time);
87 dev_dbg(ds->dev, "latest base time %lld ns\n", latest_base_time);
88 dev_dbg(ds->dev, "longest cycle time %lld ns\n", max_cycle_time);
93 /* Lo and behold: the egress scheduler from hell.
95 * At the hardware level, the Time-Aware Shaper holds a global linear arrray of
96 * all schedule entries for all ports. These are the Gate Control List (GCL)
97 * entries, let's call them "timeslots" for short. This linear array of
98 * timeslots is held in BLK_IDX_SCHEDULE.
100 * Then there are a maximum of 8 "execution threads" inside the switch, which
101 * iterate cyclically through the "schedule". Each "cycle" has an entry point
102 * and an exit point, both being timeslot indices in the schedule table. The
103 * hardware calls each cycle a "subschedule".
105 * Subschedule (cycle) i starts when
106 * ptpclkval >= ptpschtm + BLK_IDX_SCHEDULE_ENTRY_POINTS[i].delta.
108 * The hardware scheduler iterates BLK_IDX_SCHEDULE with a k ranging from
109 * k = BLK_IDX_SCHEDULE_ENTRY_POINTS[i].address to
110 * k = BLK_IDX_SCHEDULE_PARAMS.subscheind[i]
112 * For each schedule entry (timeslot) k, the engine executes the gate control
113 * list entry for the duration of BLK_IDX_SCHEDULE[k].delta.
116 * | | BLK_IDX_SCHEDULE_ENTRY_POINTS_PARAMS
119 * +-----------------+
121 * BLK_IDX_SCHEDULE_ENTRY_POINTS v
126 * +----------------+ | | +-------------------------------------+
127 * | .subschindx | | .subschindx |
128 * | | +---------------+ |
129 * | .address | .address | |
132 * | BLK_IDX_SCHEDULE v v |
133 * | +-------+-------+-------+-------+-------+------+ |
134 * | |entry 0|entry 1|entry 2|entry 3|entry 4|entry5| |
135 * | +-------+-------+-------+-------+-------+------+ |
138 * | +-------------------------+ | | | |
139 * | | +-------------------------------+ | | |
140 * | | | +-------------------+ | |
142 * | +---------------------------------------------------------------+ |
143 * | |subscheind[0]<=subscheind[1]<=subscheind[2]<=...<=subscheind[7]| |
144 * | +---------------------------------------------------------------+ |
145 * | ^ ^ BLK_IDX_SCHEDULE_PARAMS |
147 * +--------+ +-------------------------------------------+
149 * In the above picture there are two subschedules (cycles):
151 * - cycle 0: iterates the schedule table from 0 to 2 (and back)
152 * - cycle 1: iterates the schedule table from 3 to 5 (and back)
154 * All other possible execution threads must be marked as unused by making
155 * their "subschedule end index" (subscheind) equal to the last valid
156 * subschedule's end index (in this case 5).
158 int sja1105_init_scheduling(struct sja1105_private *priv)
160 struct sja1105_schedule_entry_points_entry *schedule_entry_points;
161 struct sja1105_schedule_entry_points_params_entry
162 *schedule_entry_points_params;
163 struct sja1105_schedule_params_entry *schedule_params;
164 struct sja1105_tas_data *tas_data = &priv->tas_data;
165 struct sja1105_gating_config *gating_cfg = &tas_data->gating_cfg;
166 struct sja1105_schedule_entry *schedule;
167 struct dsa_switch *ds = priv->ds;
168 struct sja1105_table *table;
169 int schedule_start_idx;
170 s64 entry_point_delta;
171 int schedule_end_idx;
178 rc = sja1105_tas_set_runtime_params(priv);
182 /* Discard previous Schedule Table */
183 table = &priv->static_config.tables[BLK_IDX_SCHEDULE];
184 if (table->entry_count) {
185 kfree(table->entries);
186 table->entry_count = 0;
189 /* Discard previous Schedule Entry Points Parameters Table */
190 table = &priv->static_config.tables[BLK_IDX_SCHEDULE_ENTRY_POINTS_PARAMS];
191 if (table->entry_count) {
192 kfree(table->entries);
193 table->entry_count = 0;
196 /* Discard previous Schedule Parameters Table */
197 table = &priv->static_config.tables[BLK_IDX_SCHEDULE_PARAMS];
198 if (table->entry_count) {
199 kfree(table->entries);
200 table->entry_count = 0;
203 /* Discard previous Schedule Entry Points Table */
204 table = &priv->static_config.tables[BLK_IDX_SCHEDULE_ENTRY_POINTS];
205 if (table->entry_count) {
206 kfree(table->entries);
207 table->entry_count = 0;
210 /* Figure out the dimensioning of the problem */
211 for (port = 0; port < ds->num_ports; port++) {
212 if (tas_data->offload[port]) {
213 num_entries += tas_data->offload[port]->num_entries;
218 if (!list_empty(&gating_cfg->entries)) {
219 num_entries += gating_cfg->num_entries;
227 /* Pre-allocate space in the static config tables */
230 table = &priv->static_config.tables[BLK_IDX_SCHEDULE];
231 table->entries = kcalloc(num_entries, table->ops->unpacked_entry_size,
235 table->entry_count = num_entries;
236 schedule = table->entries;
238 /* Schedule Points Parameters Table */
239 table = &priv->static_config.tables[BLK_IDX_SCHEDULE_ENTRY_POINTS_PARAMS];
240 table->entries = kcalloc(SJA1105_MAX_SCHEDULE_ENTRY_POINTS_PARAMS_COUNT,
241 table->ops->unpacked_entry_size, GFP_KERNEL);
243 /* Previously allocated memory will be freed automatically in
244 * sja1105_static_config_free. This is true for all early
248 table->entry_count = SJA1105_MAX_SCHEDULE_ENTRY_POINTS_PARAMS_COUNT;
249 schedule_entry_points_params = table->entries;
251 /* Schedule Parameters Table */
252 table = &priv->static_config.tables[BLK_IDX_SCHEDULE_PARAMS];
253 table->entries = kcalloc(SJA1105_MAX_SCHEDULE_PARAMS_COUNT,
254 table->ops->unpacked_entry_size, GFP_KERNEL);
257 table->entry_count = SJA1105_MAX_SCHEDULE_PARAMS_COUNT;
258 schedule_params = table->entries;
260 /* Schedule Entry Points Table */
261 table = &priv->static_config.tables[BLK_IDX_SCHEDULE_ENTRY_POINTS];
262 table->entries = kcalloc(num_cycles, table->ops->unpacked_entry_size,
266 table->entry_count = num_cycles;
267 schedule_entry_points = table->entries;
269 /* Finally start populating the static config tables */
270 schedule_entry_points_params->clksrc = SJA1105_TAS_CLKSRC_PTP;
271 schedule_entry_points_params->actsubsch = num_cycles - 1;
273 for (port = 0; port < ds->num_ports; port++) {
274 const struct tc_taprio_qopt_offload *offload;
275 /* Relative base time */
278 offload = tas_data->offload[port];
282 schedule_start_idx = k;
283 schedule_end_idx = k + offload->num_entries - 1;
284 /* This is the base time expressed as a number of TAS ticks
285 * relative to PTPSCHTM, which we'll (perhaps improperly) call
286 * the operational base time.
288 rbt = future_base_time(offload->base_time,
290 tas_data->earliest_base_time);
291 rbt -= tas_data->earliest_base_time;
292 /* UM10944.pdf 4.2.2. Schedule Entry Points table says that
293 * delta cannot be zero, which is shitty. Advance all relative
294 * base times by 1 TAS delta, so that even the earliest base
295 * time becomes 1 in relative terms. Then start the operational
296 * base time (PTPSCHTM) one TAS delta earlier than planned.
298 entry_point_delta = ns_to_sja1105_delta(rbt) + 1;
300 schedule_entry_points[cycle].subschindx = cycle;
301 schedule_entry_points[cycle].delta = entry_point_delta;
302 schedule_entry_points[cycle].address = schedule_start_idx;
304 /* The subschedule end indices need to be
305 * monotonically increasing.
307 for (i = cycle; i < 8; i++)
308 schedule_params->subscheind[i] = schedule_end_idx;
310 for (i = 0; i < offload->num_entries; i++, k++) {
311 s64 delta_ns = offload->entries[i].interval;
313 schedule[k].delta = ns_to_sja1105_delta(delta_ns);
314 schedule[k].destports = BIT(port);
315 schedule[k].resmedia_en = true;
316 schedule[k].resmedia = SJA1105_GATE_MASK &
317 ~offload->entries[i].gate_mask;
322 if (!list_empty(&gating_cfg->entries)) {
323 struct sja1105_gate_entry *e;
325 /* Relative base time */
328 schedule_start_idx = k;
329 schedule_end_idx = k + gating_cfg->num_entries - 1;
330 rbt = future_base_time(gating_cfg->base_time,
331 gating_cfg->cycle_time,
332 tas_data->earliest_base_time);
333 rbt -= tas_data->earliest_base_time;
334 entry_point_delta = ns_to_sja1105_delta(rbt) + 1;
336 schedule_entry_points[cycle].subschindx = cycle;
337 schedule_entry_points[cycle].delta = entry_point_delta;
338 schedule_entry_points[cycle].address = schedule_start_idx;
340 for (i = cycle; i < 8; i++)
341 schedule_params->subscheind[i] = schedule_end_idx;
343 list_for_each_entry(e, &gating_cfg->entries, list) {
344 schedule[k].delta = ns_to_sja1105_delta(e->interval);
345 schedule[k].destports = e->rule->vl.destports;
346 schedule[k].setvalid = true;
347 schedule[k].txen = true;
348 schedule[k].vlindex = e->rule->vl.sharindx;
349 schedule[k].winstindex = e->rule->vl.sharindx;
350 if (e->gate_state) /* Gate open */
351 schedule[k].winst = true;
352 else /* Gate closed */
353 schedule[k].winend = true;
361 /* Be there 2 port subschedules, each executing an arbitrary number of gate
362 * open/close events cyclically.
363 * None of those gate events must ever occur at the exact same time, otherwise
364 * the switch is known to act in exotically strange ways.
365 * However the hardware doesn't bother performing these integrity checks.
366 * So here we are with the task of validating whether the new @admin offload
367 * has any conflict with the already established TAS configuration in
368 * tas_data->offload. We already know the other ports are in harmony with one
369 * another, otherwise we wouldn't have saved them.
370 * Each gate event executes periodically, with a period of @cycle_time and a
371 * phase given by its cycle's @base_time plus its offset within the cycle
372 * (which in turn is given by the length of the events prior to it).
373 * There are two aspects to possible collisions:
374 * - Collisions within one cycle's (actually the longest cycle's) time frame.
375 * For that, we need to compare the cartesian product of each possible
376 * occurrence of each event within one cycle time.
377 * - Collisions in the future. Events may not collide within one cycle time,
378 * but if two port schedules don't have the same periodicity (aka the cycle
379 * times aren't multiples of one another), they surely will some time in the
380 * future (actually they will collide an infinite amount of times).
383 sja1105_tas_check_conflicts(struct sja1105_private *priv, int port,
384 const struct tc_taprio_qopt_offload *admin)
386 struct sja1105_tas_data *tas_data = &priv->tas_data;
387 const struct tc_taprio_qopt_offload *offload;
388 s64 max_cycle_time, min_cycle_time;
396 offload = tas_data->offload[port];
400 /* Check if the two cycle times are multiples of one another.
401 * If they aren't, then they will surely collide.
403 max_cycle_time = max(offload->cycle_time, admin->cycle_time);
404 min_cycle_time = min(offload->cycle_time, admin->cycle_time);
405 div_s64_rem(max_cycle_time, min_cycle_time, &rem);
409 /* Calculate the "reduced" base time of each of the two cycles
410 * (transposed back as close to 0 as possible) by dividing to
413 div_s64_rem(offload->base_time, offload->cycle_time, &rem);
416 div_s64_rem(admin->base_time, admin->cycle_time, &rem);
419 stop_time = max_cycle_time + max(rbt1, rbt2);
421 /* delta1 is the relative base time of each GCL entry within
422 * the established ports' TAS config.
424 for (i = 0, delta1 = 0;
425 i < offload->num_entries;
426 delta1 += offload->entries[i].interval, i++) {
427 /* delta2 is the relative base time of each GCL entry
428 * within the newly added TAS config.
430 for (j = 0, delta2 = 0;
431 j < admin->num_entries;
432 delta2 += admin->entries[j].interval, j++) {
433 /* t1 follows all possible occurrences of the
434 * established ports' GCL entry i within the
437 for (t1 = rbt1 + delta1;
439 t1 += offload->cycle_time) {
440 /* t2 follows all possible occurrences
441 * of the newly added GCL entry j
442 * within the first cycle time.
444 for (t2 = rbt2 + delta2;
446 t2 += admin->cycle_time) {
448 dev_warn(priv->ds->dev,
449 "GCL entry %d collides with entry %d of port %d\n",
461 /* Check the tc-taprio configuration on @port for conflicts with the tc-gate
462 * global subschedule. If @port is -1, check it against all ports.
463 * To reuse the sja1105_tas_check_conflicts logic without refactoring it,
464 * convert the gating configuration to a dummy tc-taprio offload structure.
466 bool sja1105_gating_check_conflicts(struct sja1105_private *priv, int port,
467 struct netlink_ext_ack *extack)
469 struct sja1105_gating_config *gating_cfg = &priv->tas_data.gating_cfg;
470 size_t num_entries = gating_cfg->num_entries;
471 struct tc_taprio_qopt_offload *dummy;
472 struct dsa_switch *ds = priv->ds;
473 struct sja1105_gate_entry *e;
477 if (list_empty(&gating_cfg->entries))
480 dummy = kzalloc(struct_size(dummy, entries, num_entries), GFP_KERNEL);
482 NL_SET_ERR_MSG_MOD(extack, "Failed to allocate memory");
486 dummy->num_entries = num_entries;
487 dummy->base_time = gating_cfg->base_time;
488 dummy->cycle_time = gating_cfg->cycle_time;
490 list_for_each_entry(e, &gating_cfg->entries, list)
491 dummy->entries[i++].interval = e->interval;
494 conflict = sja1105_tas_check_conflicts(priv, port, dummy);
496 for (port = 0; port < ds->num_ports; port++) {
497 conflict = sja1105_tas_check_conflicts(priv, port,
509 int sja1105_setup_tc_taprio(struct dsa_switch *ds, int port,
510 struct tc_taprio_qopt_offload *admin)
512 struct sja1105_private *priv = ds->priv;
513 struct sja1105_tas_data *tas_data = &priv->tas_data;
514 int other_port, rc, i;
516 /* Can't change an already configured port (must delete qdisc first).
517 * Can't delete the qdisc from an unconfigured port.
519 if ((!!tas_data->offload[port] && admin->cmd == TAPRIO_CMD_REPLACE) ||
520 (!tas_data->offload[port] && admin->cmd == TAPRIO_CMD_DESTROY))
523 if (admin->cmd == TAPRIO_CMD_DESTROY) {
524 taprio_offload_free(tas_data->offload[port]);
525 tas_data->offload[port] = NULL;
527 rc = sja1105_init_scheduling(priv);
531 return sja1105_static_config_reload(priv, SJA1105_SCHEDULING);
532 } else if (admin->cmd != TAPRIO_CMD_REPLACE) {
536 /* The cycle time extension is the amount of time the last cycle from
537 * the old OPER needs to be extended in order to phase-align with the
538 * base time of the ADMIN when that becomes the new OPER.
539 * But of course our switch needs to be reset to switch-over between
540 * the ADMIN and the OPER configs - so much for a seamless transition.
541 * So don't add insult over injury and just say we don't support cycle
544 if (admin->cycle_time_extension)
547 for (i = 0; i < admin->num_entries; i++) {
548 s64 delta_ns = admin->entries[i].interval;
549 s64 delta_cycles = ns_to_sja1105_delta(delta_ns);
550 bool too_long, too_short;
552 too_long = (delta_cycles >= SJA1105_TAS_MAX_DELTA);
553 too_short = (delta_cycles == 0);
554 if (too_long || too_short) {
555 dev_err(priv->ds->dev,
556 "Interval %llu too %s for GCL entry %d\n",
557 delta_ns, too_long ? "long" : "short", i);
562 for (other_port = 0; other_port < ds->num_ports; other_port++) {
563 if (other_port == port)
566 if (sja1105_tas_check_conflicts(priv, other_port, admin))
570 if (sja1105_gating_check_conflicts(priv, port, NULL)) {
571 dev_err(ds->dev, "Conflict with tc-gate schedule\n");
575 tas_data->offload[port] = taprio_offload_get(admin);
577 rc = sja1105_init_scheduling(priv);
581 return sja1105_static_config_reload(priv, SJA1105_SCHEDULING);
584 static int sja1105_tas_check_running(struct sja1105_private *priv)
586 struct sja1105_tas_data *tas_data = &priv->tas_data;
587 struct dsa_switch *ds = priv->ds;
588 struct sja1105_ptp_cmd cmd = {0};
591 rc = sja1105_ptp_commit(ds, &cmd, SPI_READ);
595 if (cmd.ptpstrtsch == 1)
596 /* Schedule successfully started */
597 tas_data->state = SJA1105_TAS_STATE_RUNNING;
598 else if (cmd.ptpstopsch == 1)
599 /* Schedule is stopped */
600 tas_data->state = SJA1105_TAS_STATE_DISABLED;
602 /* Schedule is probably not configured with PTP clock source */
608 /* Write to PTPCLKCORP */
609 static int sja1105_tas_adjust_drift(struct sja1105_private *priv,
612 const struct sja1105_regs *regs = priv->info->regs;
613 u32 ptpclkcorp = ns_to_sja1105_ticks(correction);
615 return sja1105_xfer_u32(priv, SPI_WRITE, regs->ptpclkcorp,
619 /* Write to PTPSCHTM */
620 static int sja1105_tas_set_base_time(struct sja1105_private *priv,
623 const struct sja1105_regs *regs = priv->info->regs;
624 u64 ptpschtm = ns_to_sja1105_ticks(base_time);
626 return sja1105_xfer_u64(priv, SPI_WRITE, regs->ptpschtm,
630 static int sja1105_tas_start(struct sja1105_private *priv)
632 struct sja1105_tas_data *tas_data = &priv->tas_data;
633 struct sja1105_ptp_cmd *cmd = &priv->ptp_data.cmd;
634 struct dsa_switch *ds = priv->ds;
637 dev_dbg(ds->dev, "Starting the TAS\n");
639 if (tas_data->state == SJA1105_TAS_STATE_ENABLED_NOT_RUNNING ||
640 tas_data->state == SJA1105_TAS_STATE_RUNNING) {
641 dev_err(ds->dev, "TAS already started\n");
648 rc = sja1105_ptp_commit(ds, cmd, SPI_WRITE);
652 tas_data->state = SJA1105_TAS_STATE_ENABLED_NOT_RUNNING;
657 static int sja1105_tas_stop(struct sja1105_private *priv)
659 struct sja1105_tas_data *tas_data = &priv->tas_data;
660 struct sja1105_ptp_cmd *cmd = &priv->ptp_data.cmd;
661 struct dsa_switch *ds = priv->ds;
664 dev_dbg(ds->dev, "Stopping the TAS\n");
666 if (tas_data->state == SJA1105_TAS_STATE_DISABLED) {
667 dev_err(ds->dev, "TAS already disabled\n");
674 rc = sja1105_ptp_commit(ds, cmd, SPI_WRITE);
678 tas_data->state = SJA1105_TAS_STATE_DISABLED;
683 /* The schedule engine and the PTP clock are driven by the same oscillator, and
684 * they run in parallel. But whilst the PTP clock can keep an absolute
685 * time-of-day, the schedule engine is only running in 'ticks' (25 ticks make
686 * up a delta, which is 200ns), and wrapping around at the end of each cycle.
687 * The schedule engine is started when the PTP clock reaches the PTPSCHTM time
689 * Because the PTP clock can be rate-corrected (accelerated or slowed down) by
690 * a software servo, and the schedule engine clock runs in parallel to the PTP
691 * clock, there is logic internal to the switch that periodically keeps the
692 * schedule engine from drifting away. The frequency with which this internal
693 * syntonization happens is the PTP clock correction period (PTPCLKCORP). It is
694 * a value also in the PTP clock domain, and is also rate-corrected.
695 * To be precise, during a correction period, there is logic to determine by
696 * how many scheduler clock ticks has the PTP clock drifted. At the end of each
697 * correction period/beginning of new one, the length of a delta is shrunk or
698 * expanded with an integer number of ticks, compared with the typical 25.
699 * So a delta lasts for 200ns (or 25 ticks) only on average.
700 * Sometimes it is longer, sometimes it is shorter. The internal syntonization
701 * logic can adjust for at most 5 ticks each 20 ticks.
703 * The first implication is that you should choose your schedule correction
704 * period to be an integer multiple of the schedule length. Preferably one.
705 * In case there are schedules of multiple ports active, then the correction
706 * period needs to be a multiple of them all. Given the restriction that the
707 * cycle times have to be multiples of one another anyway, this means the
708 * correction period can simply be the largest cycle time, hence the current
709 * choice. This way, the updates are always synchronous to the transmission
710 * cycle, and therefore predictable.
712 * The second implication is that at the beginning of a correction period, the
713 * first few deltas will be modulated in time, until the schedule engine is
714 * properly phase-aligned with the PTP clock. For this reason, you should place
715 * your best-effort traffic at the beginning of a cycle, and your
716 * time-triggered traffic afterwards.
718 * The third implication is that once the schedule engine is started, it can
719 * only adjust for so much drift within a correction period. In the servo you
720 * can only change the PTPCLKRATE, but not step the clock (PTPCLKADD). If you
721 * want to do the latter, you need to stop and restart the schedule engine,
722 * which is what the state machine handles.
724 static void sja1105_tas_state_machine(struct work_struct *work)
726 struct sja1105_tas_data *tas_data = work_to_sja1105_tas(work);
727 struct sja1105_private *priv = tas_to_sja1105(tas_data);
728 struct sja1105_ptp_data *ptp_data = &priv->ptp_data;
729 struct timespec64 base_time_ts, now_ts;
730 struct dsa_switch *ds = priv->ds;
731 struct timespec64 diff;
735 mutex_lock(&ptp_data->lock);
737 switch (tas_data->state) {
738 case SJA1105_TAS_STATE_DISABLED:
739 /* Can't do anything at all if clock is still being stepped */
740 if (tas_data->last_op != SJA1105_PTP_ADJUSTFREQ)
743 rc = sja1105_tas_adjust_drift(priv, tas_data->max_cycle_time);
747 rc = __sja1105_ptp_gettimex(ds, &now, NULL);
751 /* Plan to start the earliest schedule first. The others
752 * will be started in hardware, by way of their respective
753 * entry points delta.
754 * Try our best to avoid fringe cases (race condition between
755 * ptpschtm and ptpstrtsch) by pushing the oper_base_time at
756 * least one second in the future from now. This is not ideal,
757 * but this only needs to buy us time until the
758 * sja1105_tas_start command below gets executed.
760 base_time = future_base_time(tas_data->earliest_base_time,
761 tas_data->max_cycle_time,
762 now + 1ull * NSEC_PER_SEC);
763 base_time -= sja1105_delta_to_ns(1);
765 rc = sja1105_tas_set_base_time(priv, base_time);
769 tas_data->oper_base_time = base_time;
771 rc = sja1105_tas_start(priv);
775 base_time_ts = ns_to_timespec64(base_time);
776 now_ts = ns_to_timespec64(now);
778 dev_dbg(ds->dev, "OPER base time %lld.%09ld (now %lld.%09ld)\n",
779 base_time_ts.tv_sec, base_time_ts.tv_nsec,
780 now_ts.tv_sec, now_ts.tv_nsec);
784 case SJA1105_TAS_STATE_ENABLED_NOT_RUNNING:
785 if (tas_data->last_op != SJA1105_PTP_ADJUSTFREQ) {
786 /* Clock was stepped.. bad news for TAS */
787 sja1105_tas_stop(priv);
791 /* Check if TAS has actually started, by comparing the
792 * scheduled start time with the SJA1105 PTP clock
794 rc = __sja1105_ptp_gettimex(ds, &now, NULL);
798 if (now < tas_data->oper_base_time) {
799 /* TAS has not started yet */
800 diff = ns_to_timespec64(tas_data->oper_base_time - now);
801 dev_dbg(ds->dev, "time to start: [%lld.%09ld]",
802 diff.tv_sec, diff.tv_nsec);
806 /* Time elapsed, what happened? */
807 rc = sja1105_tas_check_running(priv);
811 if (tas_data->state != SJA1105_TAS_STATE_RUNNING)
812 /* TAS has started */
814 "TAS not started despite time elapsed\n");
818 case SJA1105_TAS_STATE_RUNNING:
819 /* Clock was stepped.. bad news for TAS */
820 if (tas_data->last_op != SJA1105_PTP_ADJUSTFREQ) {
821 sja1105_tas_stop(priv);
825 rc = sja1105_tas_check_running(priv);
829 if (tas_data->state != SJA1105_TAS_STATE_RUNNING)
830 dev_err(ds->dev, "TAS surprisingly stopped\n");
836 dev_err(ds->dev, "TAS in an invalid state (incorrect use of API)!\n");
839 if (rc && net_ratelimit())
840 dev_err(ds->dev, "An operation returned %d\n", rc);
842 mutex_unlock(&ptp_data->lock);
845 void sja1105_tas_clockstep(struct dsa_switch *ds)
847 struct sja1105_private *priv = ds->priv;
848 struct sja1105_tas_data *tas_data = &priv->tas_data;
850 if (!tas_data->enabled)
853 tas_data->last_op = SJA1105_PTP_CLOCKSTEP;
854 schedule_work(&tas_data->tas_work);
857 void sja1105_tas_adjfreq(struct dsa_switch *ds)
859 struct sja1105_private *priv = ds->priv;
860 struct sja1105_tas_data *tas_data = &priv->tas_data;
862 if (!tas_data->enabled)
865 /* No reason to schedule the workqueue, nothing changed */
866 if (tas_data->state == SJA1105_TAS_STATE_RUNNING)
869 tas_data->last_op = SJA1105_PTP_ADJUSTFREQ;
870 schedule_work(&tas_data->tas_work);
873 void sja1105_tas_setup(struct dsa_switch *ds)
875 struct sja1105_private *priv = ds->priv;
876 struct sja1105_tas_data *tas_data = &priv->tas_data;
878 INIT_WORK(&tas_data->tas_work, sja1105_tas_state_machine);
879 tas_data->state = SJA1105_TAS_STATE_DISABLED;
880 tas_data->last_op = SJA1105_PTP_NONE;
882 INIT_LIST_HEAD(&tas_data->gating_cfg.entries);
885 void sja1105_tas_teardown(struct dsa_switch *ds)
887 struct sja1105_private *priv = ds->priv;
888 struct tc_taprio_qopt_offload *offload;
891 cancel_work_sync(&priv->tas_data.tas_work);
893 for (port = 0; port < ds->num_ports; port++) {
894 offload = priv->tas_data.offload[port];
898 taprio_offload_free(offload);