1

对于 TSN 感知的通信协议栈和框架,我需要能够执行实时线程,不仅以非常精确的间隔运行,而且从 ptpd 中扣除的精确时隙开始。

目前,我通过延迟/让出任务直到开始时间来做到这一点。对于我的 TSN 通信的 PoC,这已经足够了,但是有了 Linux 实时扩展,必须有更好/更有效的方法。两个 Beaglebone 之间引入的抖动约为 800us(运行 Linux 4.14.71-ti-r80 #1 SMP PREEMPT)。

使用循环 pthread,我同步了网络生产者任务的启动(注意:vos_ 前缀表示我的操作系统抽象方法,实际上匹配 POSIX 调用):

for (;; )
{
    /* Synchronize with starttime */
    vos_getTime(&now);                      /* get initial time */
    vos_subTime(&now, &startTime);

    /* Wait for multiples of interval */

    execTime = ((UINT32)now.tv_usec % interval);
    waitingTime = interval - execTime;
    if (waitingTime >= interval)
    {
        ...error checks omitted
    }

    /* Idle for the difference */
    vos_threadDelay(waitingTime); /* pthread_testcancel() inside */

    vos_getTime(&priorCall);  /* get initial time */
    pFunction(pArguments);    /* thread function: send data */
    vos_getTime(&afterCall);  /* get time after function has returned */

    /* get the runtime of pFunction() */
    vos_subTime(&afterCall, &priorCall);

    /* afterCall holds now the time difference... */
    if (afterCall.tv_sec <= MAXSEC_FOR_USECPRESENTATION)
    {
        ...runtime / error handling omitted
    }
}

上面的代码在 5ms 的时间间隔内产生大约 800us 的抖动(使用没有 RT 扩展和策略 Round-Robin 的 Linux 4.14),这是相当好的 - 但当涉及到多个线程都执行预定流量时无效......

对于 Linux 4.1.15-ti-rt-r43 #1 SMP PREEMPT RT,我计划使用 SCHED_DEADLINE 作为策略,但 struct sched_attr 不提供启动时间参数。则不需要上述代码中的运行时检查。但:

我如何有效地使用 Linux 的实时扩展来让线程在精确的绝对时间运行,例如从绝对实时“现在”+ 0.0075 秒开始每 1 毫秒(例如 now.0085、now.0095、now.0105 ...),没有上述代码的开销?

4

1 回答 1

0

POSIX 函数具有clock_nanosleep()绝对期限模式:

#define NSEC_PER_SEC 1000000000
/* Initial delay, 7.5ms */
const long start_delay_ns = 7500000;
/* Cycle time, 1ms */
const long cycle_time_ns = 1000000;
struct timespec deadline;

clock_gettime(CLOCK_MONOTONIC, &deadline);
deadline.tv_nsec += start_delay_ns;
deadline.tv_sec += deadline.tv_nsec / NSEC_PER_SEC;
deadline.tv_nsec %= NSEC_PER_SEC;

for (;;)
{
    struct timespec now;

    /* Sleep until deadline */
    while (clock_nanosleep(CLOCK_MONOTONIC, TIMER_ABSTIME, &deadline, NULL) != 0)
        if (errno != EINTR)
            return; /* error handling here */

    pFunction(pArguments);    /* thread function: send data */

    /* Calculate next deadline */
    deadline.tv_nsec += cycle_time_ns;
    deadline.tv_sec += deadline.tv_nsec / NSEC_PER_SEC;
    deadline.tv_nsec %= NSEC_PER_SEC;

    clock_gettime(CLOCK_MONOTONIC, &now);
    if (now.tv_sec > deadline.tv_sec || (now.tv_sec == deadline.tv_sec && deadline.tv_nsec > now.tv_nsec))
        return; /* time overrun error handling here */
}
于 2019-01-21T05:26:09.570 回答