linuxptp/designated_fsm.c
Vedang Patel 83be05256b Add BMCA config option.
This adds config option to specify static roles for master and slave
in the Best Master Clock Algorithm. This is the case for Automotive
Profile where networks are mostly static and role for each device is
known in advance.

masterOnly and slaveOnly will be used to determine the roles for the
devices. Since masterOnly is a per-port config and slaveOnly is a global
config option, role assignment will be slightly odd in case of bridges.
If slaveOnly is set to 1, all the ports will be in slave roles except
for the ones where masterOnly is set to 1. These ports will assume the
master role.

Two new FSMs which will be used for master and slave roles for this
config option have also been added.

Signed-off-by: Vedang Patel <vedang.patel@intel.com>
2018-10-04 19:38:19 -07:00

108 lines
2.2 KiB
C

/**
* @file designated_fsm.c
* @brief Implements designated Finite State Machines.
* @note Copyright (C) 2018 Intel Corporation
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA.
*/
#include "fsm.h"
#include "designated_fsm.h"
enum port_state designated_master_fsm(enum port_state state,
enum fsm_event event,
int mdiff)
{
enum port_state next = state;
if (EV_INITIALIZE == event || EV_POWERUP == event)
return PS_INITIALIZING;
switch (state) {
case PS_INITIALIZING:
switch (event) {
case EV_FAULT_DETECTED:
next = PS_FAULTY;
break;
case EV_INIT_COMPLETE:
next = PS_MASTER;
break;
default:
break;
}
break;
case PS_FAULTY:
if (event == EV_FAULT_CLEARED) {
next = PS_INITIALIZING;
}
break;
case PS_MASTER:
if (event == EV_FAULT_DETECTED) {
next = PS_FAULTY;
}
break;
default:
break;
}
return next;
}
enum port_state designated_slave_fsm(enum port_state state,
enum fsm_event event,
int mdiff)
{
enum port_state next = state;
if (EV_INITIALIZE == event || EV_POWERUP == event)
return PS_INITIALIZING;
switch (state) {
case PS_INITIALIZING:
switch (event) {
case EV_FAULT_DETECTED:
next = PS_FAULTY;
break;
case EV_INIT_COMPLETE:
next = PS_SLAVE;
break;
default:
break;
}
break;
case PS_FAULTY:
if (event == EV_FAULT_CLEARED) {
next = PS_INITIALIZING;
}
break;
case PS_SLAVE:
switch (event) {
case EV_FAULT_DETECTED:
next = PS_FAULTY;
break;
default:
break;
}
break;
default:
break;
}
return next;
}