eive-tmtc/pus_tc/devs/ploc_supervisor.py

663 lines
28 KiB
Python
Raw Normal View History

2021-07-11 14:29:11 +02:00
# -*- coding: utf-8 -*-
"""
@file ploc_supervisor.py
@brief Tests for commanding the supervisor of the PLOC.
The supervisor is programmed by Thales.
@author J. Meier
@date 10.07.2021
"""
import struct
2022-03-04 11:02:10 +01:00
from spacepackets.ecss.tc import PusTelecommand
2021-07-11 14:29:11 +02:00
from tmtccmd.config.definitions import QueueCommands
from tmtccmd.tc.packer import TcQueueT
2022-04-05 00:51:52 +02:00
from tmtccmd.logging import get_console_logger
from tmtccmd.tc.pus_200_fsfw_modes import pack_mode_data, Modes
2022-04-11 16:53:20 +02:00
from utility.input_helper import InputHelper
2021-08-02 15:28:34 +02:00
LOGGER = get_console_logger()
2021-07-11 14:29:11 +02:00
2021-07-28 19:35:46 +02:00
latchup_id_dict = {
2022-01-18 14:03:56 +01:00
"0": "0.85V",
"1": "1.8V",
"2": "MISC",
"3": "3.3V",
"4": "NVM_4XO",
"5": "MISSION",
"6": "SAFECOTS",
}
2022-04-11 16:53:20 +02:00
MANUAL_INPUT = "1"
update_file_dict = {
MANUAL_INPUT: ["manual input", ""],
"2": ["/mnt/sd0/ploc/supervisor/update.bin", "/mnt/sd0/ploc/supervisor/update.bin"],
2022-05-03 18:36:28 +02:00
"3": [
"/mnt/sd0/ploc/supervisor/update-large.bin",
"/mnt/sd0/ploc/supervisor/update-large.bin",
],
"4": [
"/mnt/sd0/ploc/supervisor/update-small.bin",
"/mnt/sd0/ploc/supervisor/update-small.bin",
],
2022-04-11 16:53:20 +02:00
}
2022-04-14 07:53:18 +02:00
event_buffer_path_dict = {
MANUAL_INPUT: ["manual input", ""],
"2": ["/mnt/sd0/ploc/supervisor", "/mnt/sd0/ploc/supervisor"],
}
2021-07-11 14:29:11 +02:00
class SupvActionIds:
HK_REPORT = 1
2021-07-23 13:40:27 +02:00
START_MPSOC = 3
SHUTWOWN_MPSOC = 4
SEL_MPSOC_BOOT_IMAGE = 5
SET_BOOT_TIMEOUT = 6
SET_MAX_RESTART_TRIES = 7
RESET_MPSOC = 8
SET_TIME_REF = 9
DISABLE_HK = 10
GET_BOOT_STATUS_REPORT = 11
UPDATE_AVAILABLE = 12
2021-07-28 19:35:46 +02:00
ENABLE_LATCHUP_ALERT = 15
DISABLE_LATCHUP_ALERT = 16
SET_ALERT_LIMIT = 18
SET_ADC_SWEEP_PERIOD = 20
SET_ADC_ENABLED_CHANNELS = 21
SET_ADC_WINDOW_AND_STRIDE = 22
SET_ADC_THRESHOLD = 23
GET_LATCHUP_STATUS_REPORT = 24
COPY_ADC_DATA_TO_MRAM = 25
SELECT_NVM = 27
RUN_AUTO_EM_TESTS = 28
WIPE_MRAM = 29
DUMP_MRAM = 30
SET_GPIO = 34
READ_GPIO = 35
RESTART_SUPERVISOR = 36
2021-08-02 15:28:34 +02:00
FACTORY_RESET_CLEAR_ALL = 37
2022-04-14 07:53:18 +02:00
LOGGING_REQUEST_COUNTERS = 38
2021-07-28 19:35:46 +02:00
UPDATE_IMAGE_DATA = 39
2021-08-02 15:28:34 +02:00
FACTORY_RESET_CLEAR_MIRROR = 40
FACTORY_RESET_CLEAR_CIRCULAR = 41
2022-04-11 16:53:20 +02:00
START_MPSOC_QUIET = 45
SET_SHUTDOWN_TIMEOUT = 46
FACTORY_FLASH = 47
PERFORM_UPDATE = 48
TERMINATE_SUPV_HELPER = 49
ENABLE_AUTO_TM = 50
DISABLE_AUTO_TM = 51
2022-04-14 07:53:18 +02:00
LOGGING_REQUEST_EVENT_BUFFERS = 54
LOGGING_CLEAR_COUNTERS = 55
LOGGING_SET_TOPIC = 56
2022-04-21 16:30:42 +02:00
REQUEST_ADC_REPORT = 57
2022-04-28 11:29:26 +02:00
RESET_PL = 58
2022-05-05 19:20:59 +02:00
ENABLE_NVMS = 59
2021-07-11 14:29:11 +02:00
class SupvHkIds:
HK_REPORT = 52
BOOT_STATUS_REPORT = 53
2021-07-11 14:29:11 +02:00
2022-03-17 19:42:27 +01:00
def pack_ploc_supv_commands(
2022-01-18 14:03:56 +01:00
object_id: bytearray, tc_queue: TcQueueT, op_code: str
) -> TcQueueT:
2021-07-11 14:29:11 +02:00
tc_queue.appendleft(
2022-01-18 14:03:56 +01:00
(
QueueCommands.PRINT,
"Testing PLOC Supervisor with object id: 0x" + object_id.hex(),
)
2021-07-11 14:29:11 +02:00
)
2022-03-28 11:40:13 +02:00
if op_code == "0":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Set mode off"))
2022-03-28 11:40:13 +02:00
command = pack_mode_data(object_id, Modes.OFF, 0)
command = PusTelecommand(service=200, subservice=1, ssc=9, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
if op_code == "1":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Set mode on"))
2022-03-28 11:40:13 +02:00
command = pack_mode_data(object_id, Modes.ON, 0)
command = PusTelecommand(service=200, subservice=1, ssc=10, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
if op_code == "2":
tc_queue.appendleft((QueueCommands.PRINT, "Star tracker: Mode Normal"))
command = pack_mode_data(object_id, Modes.NORMAL, 0)
command = PusTelecommand(service=200, subservice=1, ssc=11, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
2021-07-11 14:29:11 +02:00
if op_code == "3":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: TC Get Hk Report"))
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.HK_REPORT)
2021-07-11 14:29:11 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=20, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
2021-07-23 13:40:27 +02:00
elif op_code == "5":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Start MPSoC"))
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.START_MPSOC)
2021-07-23 13:40:27 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=22, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "6":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Shutdown MPSoC"))
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.SHUTWOWN_MPSOC)
2021-07-23 13:40:27 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=23, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "7":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Select MPSoC boot image")
)
2022-04-27 16:08:51 +02:00
mem = int(input("MEM (NVM0 - 0 or NVM1 - 1): "))
bp0 = int(input("BP0 (0 or 1): "))
bp1 = int(input("BP1 (0 or 1): "))
bp2 = int(input("BP2 (0 or 1): "))
2021-07-23 13:40:27 +02:00
command = pack_sel_boot_image_cmd(object_id, mem, bp0, bp1, bp2)
command = PusTelecommand(service=8, subservice=128, ssc=24, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "8":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
2022-05-03 19:09:23 +02:00
(QueueCommands.PRINT, "PLOC Supervisor: Set max restart tries")
2022-01-18 14:03:56 +01:00
)
2022-05-03 19:09:23 +02:00
restart_tries = int(input("Specify maximum restart tries: "))
2022-01-18 14:03:56 +01:00
command = (
object_id
+ struct.pack("!I", SupvActionIds.SET_MAX_RESTART_TRIES)
+ struct.pack("!B", restart_tries)
)
2021-07-23 13:40:27 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=25, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "9":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Reset MPSoC"))
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.RESET_MPSOC)
2021-07-23 13:40:27 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=26, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "10":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Set time reference")
)
command = object_id + struct.pack("!I", SupvActionIds.SET_TIME_REF)
2021-07-23 13:40:27 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=27, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "11":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Set boot timeout"))
2022-05-03 19:09:23 +02:00
boot_timeout = int(input("Specify boot timeout [ms]: "))
2022-01-18 14:03:56 +01:00
command = (
object_id
+ struct.pack("!I", SupvActionIds.SET_BOOT_TIMEOUT)
+ struct.pack("!I", boot_timeout)
)
2021-07-23 13:40:27 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=28, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "12":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Disable HK"))
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.DISABLE_HK)
command = PusTelecommand(service=8, subservice=128, ssc=29, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "13":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Request boot status report")
)
command = object_id + struct.pack("!I", SupvActionIds.GET_BOOT_STATUS_REPORT)
command = PusTelecommand(service=8, subservice=128, ssc=30, app_data=command)
2021-07-23 13:40:27 +02:00
tc_queue.appendleft(command.pack_command_tuple())
2021-07-28 19:35:46 +02:00
elif op_code == "17":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Enable latchup alert")
)
2021-07-28 19:35:46 +02:00
command = pack_lachtup_alert_cmd(object_id, True)
command = PusTelecommand(service=8, subservice=128, ssc=34, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "18":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Disable latchup alert")
)
2021-07-28 19:35:46 +02:00
command = pack_lachtup_alert_cmd(object_id, False)
command = PusTelecommand(service=8, subservice=128, ssc=35, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "20":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Set alert limit"))
command = pack_set_alert_limit_cmd(object_id)
command = PusTelecommand(service=8, subservice=128, ssc=37, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "23":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Set ADC enabled channels")
)
2021-07-28 19:35:46 +02:00
command = pack_set_adc_enabled_channels_cmd(object_id)
command = PusTelecommand(service=8, subservice=128, ssc=40, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "24":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Set ADC window and stride")
)
2021-07-28 19:35:46 +02:00
command = pack_set_adc_window_and_stride_cmd(object_id)
command = PusTelecommand(service=8, subservice=128, ssc=41, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "25":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Set ADC threshold"))
command = pack_set_adc_threshold_cmd(object_id)
command = PusTelecommand(service=8, subservice=128, ssc=42, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "26":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Request latchup status report")
)
command = object_id + struct.pack("!I", SupvActionIds.GET_LATCHUP_STATUS_REPORT)
2021-07-28 19:35:46 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=43, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "27":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Copy ADC data to MRAM")
)
command = object_id + struct.pack("!I", SupvActionIds.COPY_ADC_DATA_TO_MRAM)
2021-07-28 19:35:46 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=44, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "30":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Run auto EM tests"))
command = pack_auto_em_tests_cmd(object_id)
command = PusTelecommand(service=8, subservice=128, ssc=45, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "31":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Wipe MRAM"))
command = pack_mram_wipe_cmd(object_id)
command = PusTelecommand(service=8, subservice=128, ssc=46, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
2021-08-02 15:28:34 +02:00
elif op_code == "35":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Set GPIO command"))
command = pack_set_gpio_cmd(object_id)
command = PusTelecommand(service=8, subservice=128, ssc=50, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "36":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Read GPIO command"))
command = pack_read_gpio_cmd(object_id)
command = PusTelecommand(service=8, subservice=128, ssc=51, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "37":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Restart supervisor")
)
command = command = object_id + struct.pack(
"!I", SupvActionIds.RESTART_SUPERVISOR
)
2021-08-02 15:28:34 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=52, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "38":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Factory reset clear all")
)
command = command = object_id + struct.pack(
"!I", SupvActionIds.FACTORY_RESET_CLEAR_ALL
)
2021-08-02 15:28:34 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=53, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "39":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Factory reset clear mirror entries")
)
2022-04-30 09:26:19 +02:00
command = object_id + struct.pack(
2022-01-18 14:03:56 +01:00
"!I", SupvActionIds.FACTORY_RESET_CLEAR_MIRROR
)
2021-08-02 15:28:34 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=54, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "40":
2022-01-18 14:03:56 +01:00
tc_queue.appendleft(
(
QueueCommands.PRINT,
"PLOC Supervisor: Factory reset clear circular entries",
)
)
command = command = object_id + struct.pack(
"!I", SupvActionIds.FACTORY_RESET_CLEAR_CIRCULAR
)
2021-08-02 15:28:34 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=55, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
2022-04-11 16:53:20 +02:00
elif op_code == "42":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Perform update"))
command = pack_update_command(object_id)
command = PusTelecommand(service=8, subservice=128, ssc=57, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "43":
2022-05-03 18:36:28 +02:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Terminate supervisor process")
2022-04-11 16:53:20 +02:00
)
2022-05-03 18:36:28 +02:00
command = object_id + struct.pack("!I", SupvActionIds.TERMINATE_SUPV_HELPER)
2022-04-11 16:53:20 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=58, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "44":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Start MPSoC quiet"))
2022-05-03 18:36:28 +02:00
command = object_id + struct.pack("!I", SupvActionIds.START_MPSOC_QUIET)
2022-04-11 16:53:20 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=59, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "45":
2022-05-03 18:36:28 +02:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Set shutdown timeout")
)
2022-04-11 16:53:20 +02:00
command = pack_set_shutdown_timeout_command(object_id)
command = PusTelecommand(service=8, subservice=128, ssc=60, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "46":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Factory flash"))
2022-05-03 18:36:28 +02:00
command = object_id + struct.pack("!I", SupvActionIds.FACTORY_FLASH)
2022-04-11 16:53:20 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=61, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "47":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Enable auto TM"))
2022-05-03 18:36:28 +02:00
command = object_id + struct.pack("!I", SupvActionIds.ENABLE_AUTO_TM)
2022-04-11 16:53:20 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=62, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "48":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Disable auto TM"))
2022-05-03 18:36:28 +02:00
command = object_id + struct.pack("!I", SupvActionIds.DISABLE_AUTO_TM)
2022-04-11 16:53:20 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=63, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
2022-04-14 07:53:18 +02:00
elif op_code == "51":
2022-05-03 18:36:28 +02:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Logging request event buffers")
)
2022-04-14 07:53:18 +02:00
command = pack_logging_buffer_request(object_id)
command = PusTelecommand(service=8, subservice=128, ssc=66, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "52":
2022-05-03 18:36:28 +02:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Logging clear counters")
2022-04-14 07:53:18 +02:00
)
2022-05-03 18:36:28 +02:00
command = object_id + struct.pack("!I", SupvActionIds.LOGGING_CLEAR_COUNTERS)
2022-04-14 07:53:18 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=67, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "53":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Logging set topic"))
command = pack_logging_set_topic(object_id)
command = PusTelecommand(service=8, subservice=128, ssc=68, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
elif op_code == "54":
2022-05-03 18:36:28 +02:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Logging request counters")
)
command = object_id + struct.pack("!I", SupvActionIds.LOGGING_REQUEST_COUNTERS)
2022-04-14 07:53:18 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=69, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
2022-04-21 16:30:42 +02:00
elif op_code == "55":
2022-05-03 18:36:28 +02:00
tc_queue.appendleft(
(QueueCommands.PRINT, "PLOC Supervisor: Request ADC report")
)
command = object_id + struct.pack("!I", SupvActionIds.REQUEST_ADC_REPORT)
2022-04-21 16:30:42 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=70, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
2022-04-28 11:29:26 +02:00
elif op_code == "56":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Reset PL"))
2022-05-03 18:36:28 +02:00
command = object_id + struct.pack("!I", SupvActionIds.RESET_PL)
2022-04-28 11:29:26 +02:00
command = PusTelecommand(service=8, subservice=128, ssc=71, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
2022-05-05 19:20:59 +02:00
elif op_code == "57":
tc_queue.appendleft((QueueCommands.PRINT, "PLOC Supervisor: Enable NVMs"))
nvm01 = int(input("Enable (1) or disable(0) NVM 0 and 1: "))
nvm3 = int(input("Enable (1) or disable(0) NVM 3: "))
command = object_id + struct.pack('!I', SupvActionIds.ENABLE_NVMS) + struct.pack('B', nvm01) + \
struct.pack('B', nvm3)
command = PusTelecommand(service=8, subservice=128, ssc=72, app_data=command)
tc_queue.appendleft(command.pack_command_tuple())
2021-07-11 14:29:11 +02:00
return tc_queue
2021-07-23 13:40:27 +02:00
2022-01-18 14:03:56 +01:00
def pack_sel_boot_image_cmd(
object_id: bytearray, mem: int, bp0: int, bp1: int, bp2: int
) -> bytearray:
"""This function can be used to generate the command to select the image from which the MPSoC will boot
2021-07-23 13:40:27 +02:00
@param object_id The object id of the PLOC supervisor handler.
@param mem The memory from which the MPSoC shall boot (NVM0 - 0, NVM1 - 1)
@param bp0 Partition pin 0
@param bp1 Partition pin 1
@param bp2 Partition pin 2
"""
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.SEL_MPSOC_BOOT_IMAGE)
command = command + struct.pack("!B", mem)
command = command + struct.pack("!B", bp0)
command = command + struct.pack("!B", bp1)
command = command + struct.pack("!B", bp2)
2021-07-23 13:40:27 +02:00
return command
def pack_update_available_cmd(object_id: bytearray) -> bytearray:
"""
@brief This function packs the udpate availabe command.
@param object_id The object id of the PLOC supervisor handler.
"""
image_select = 1
image_partition = 0
image_size = 222
image_crc = 0x0
number_of_packets = 150
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.UPDATE_AVAILABLE)
command = command + struct.pack("!B", image_select)
command = command + struct.pack("!B", image_partition)
command = command + struct.pack("!I", image_size)
command = command + struct.pack("!I", image_crc)
command = command + struct.pack("!I", number_of_packets)
return command
def pack_watchdogs_enable_cmd(object_id: bytearray) -> bytearray:
"""
@brief This function packs the command to enable or disable watchdogs on the PLOC.
@param object_id The object id of the PLOC supervisor handler.
@note Enable = 1, Disable = 0
"""
watchdog_ps = 1
watchdog_pl = 1
watchdog_int = 0
command = bytearray()
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.WATCHDOGS_ENABLE)
command = command + struct.pack("!B", watchdog_ps)
command = command + struct.pack("!B", watchdog_pl)
command = command + struct.pack("!B", watchdog_int)
return command
2021-07-28 19:35:46 +02:00
def pack_watchdog_config_timeout_cmd(object_id: bytearray) -> bytearray:
"""
@brief This function packs the command set the timeout of one of the three watchdogs of the PLOC.
@param object_id The object id of the PLOC supervisor handler.
"""
watchdog = int(input("Specify watchdog (0 - PS, 1 - PL, 2 - INT):"))
timeout = int(input("Specify timeout (1000 ms - 360000 ms):"))
command = bytearray()
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.WATCHDOGS_CONFIG_TIMEOUT)
command = command + struct.pack("!B", watchdog)
command = command + struct.pack("!I", timeout)
2021-07-28 19:35:46 +02:00
return command
def pack_lachtup_alert_cmd(object_id: bytearray, state: bool) -> bytearray:
"""
@brief This function packs the command to enable or disable a certain latchup alerts.
@param object_id The object id of the PLOC supervisor handler.
@param state True - enable latchup alert, False - disable latchup alert
"""
latchup_id = get_latchup_id()
command = bytearray()
if state:
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.ENABLE_LATCHUP_ALERT)
2021-07-28 19:35:46 +02:00
else:
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.DISABLE_LATCHUP_ALERT)
command = command + struct.pack("!B", latchup_id)
2021-07-28 19:35:46 +02:00
return command
def pack_auto_calibrate_alert_cmd(object_id: bytearray) -> bytearray:
"""
@brief This function packs the command to auto calibrate a latchup alert.
@param object_id The object id of the PLOC supervisor handler.
"""
latchup_id = get_latchup_id()
2022-05-03 19:09:23 +02:00
mg = int(input("Specify MG: "))
2021-07-28 19:35:46 +02:00
command = bytearray()
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.AUTO_CALIBRATE_ALERT)
command = command + struct.pack("!B", latchup_id)
command = command + struct.pack("!I", mg)
2021-07-28 19:35:46 +02:00
return command
def get_latchup_id() -> int:
key_column_width = 10
description_column_width = 50
separator_width = key_column_width + description_column_width + 3
separator_string = separator_width * "-"
key_string = "Latchup ID".ljust(key_column_width)
description_string = "Description".ljust(description_column_width)
print(f"{key_string} | {description_string}")
print(separator_string)
for key in latchup_id_dict:
key_string = key.ljust(key_column_width)
description_string = latchup_id_dict[key].ljust(description_column_width)
print(f"{key_string} | {description_string}")
2022-04-29 18:21:18 +02:00
return int(input("Specify latchup ID: "))
2021-07-28 19:35:46 +02:00
def pack_set_alert_limit_cmd(object_id: bytearray) -> bytearray:
"""
@brief This function packs the command to set the limit of a latchup alert.
@param object_id The object id of the PLOC supervisor handler.
"""
latchup_id = get_latchup_id()
2022-05-03 19:09:23 +02:00
dutycycle = int(input("Specify dutycycle: "))
2021-07-28 19:35:46 +02:00
command = bytearray()
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.SET_ALERT_LIMIT)
command = command + struct.pack("!B", latchup_id)
command = command + struct.pack("!I", dutycycle)
2021-07-28 19:35:46 +02:00
return command
def pack_set_adc_enabled_channels_cmd(object_id: bytearray) -> bytearray:
"""
@brief This function packs the command to enable or disable channels of the ADC.
@param object_id The object id of the PLOC supervisor handler.
"""
2022-04-22 14:21:08 +02:00
ch = int(input("Specify ch: 0x"), 16)
2022-05-03 19:12:37 +02:00
cmd = object_id + struct.pack("!I", SupvActionIds.SET_ADC_ENABLED_CHANNELS)
cmd = cmd + struct.pack("!H", ch)
return cmd
2021-07-28 19:35:46 +02:00
def pack_set_adc_window_and_stride_cmd(object_id: bytearray) -> bytearray:
2022-05-03 19:09:23 +02:00
window_size = int(input("Specify window size: "))
striding_step_size = int(input("Specify striding step size: "))
2021-07-28 19:35:46 +02:00
command = bytearray()
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.SET_ADC_WINDOW_AND_STRIDE)
command = command + struct.pack("!H", window_size)
command = command + struct.pack("!H", striding_step_size)
2021-07-28 19:35:46 +02:00
return command
def pack_set_adc_threshold_cmd(object_id: bytearray) -> bytearray:
2022-04-22 18:02:49 +02:00
threshold = int(input("Specify threshold: "))
2021-07-28 19:35:46 +02:00
command = bytearray()
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.SET_ADC_THRESHOLD)
command = command + struct.pack("!I", threshold)
2021-07-28 19:35:46 +02:00
return command
def pack_select_nvm_cmd(object_id: bytearray) -> bytearray:
2022-05-03 19:09:23 +02:00
mem = int(input("Specify NVM (0 - NVM0, 1 - MVM1): "))
2021-07-28 19:35:46 +02:00
command = bytearray()
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.SELECT_NVM)
command = command + struct.pack("!B", mem)
2021-07-28 19:35:46 +02:00
return command
def pack_auto_em_tests_cmd(object_id: bytearray) -> bytearray:
2022-05-03 19:09:23 +02:00
test = int(input("Specify test (1 - complete, 2 - short): "))
2021-07-28 19:35:46 +02:00
command = bytearray()
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.RUN_AUTO_EM_TESTS)
command = command + struct.pack("!B", test)
2021-07-28 19:35:46 +02:00
return command
def pack_mram_wipe_cmd(object_id: bytearray) -> bytearray:
start = int(input("Start address: 0x"), 16)
stop = int(input("Stop address: 0x"), 16)
command = bytearray()
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.WIPE_MRAM)
command = command + struct.pack("!I", start)
command = command + struct.pack("!I", stop)
return command
2021-08-02 11:27:34 +02:00
2022-04-11 16:53:20 +02:00
def pack_update_command(object_id: bytearray) -> bytearray:
command = bytearray()
memory_id = int(input("Specify memory ID: "))
start_address = int(input("Specify start address: 0x"), 16)
update_file = get_update_file()
command += object_id
2022-05-03 18:36:28 +02:00
command += struct.pack("!I", SupvActionIds.PERFORM_UPDATE)
command += bytearray(update_file, "utf-8")
2022-04-11 16:53:20 +02:00
# Adding null terminator
2022-05-03 18:36:28 +02:00
command += struct.pack("!B", 0)
command += struct.pack("!B", memory_id)
command += struct.pack("!I", start_address)
2022-04-11 16:53:20 +02:00
return command
def pack_set_shutdown_timeout_command(object_id: bytearray) -> bytearray:
command = bytearray()
command += object_id
2022-05-03 18:36:28 +02:00
command += struct.pack("!I", SupvActionIds.SET_SHUTDOWN_TIMEOUT)
2022-04-11 16:53:20 +02:00
timeout = int(input("Specify shutdown timeout (ms): "))
2022-05-03 18:36:28 +02:00
command += struct.pack("!I", timeout)
2022-04-11 16:53:20 +02:00
return command
2022-04-14 07:53:18 +02:00
def pack_logging_buffer_request(object_id: bytearray) -> bytearray:
command = bytearray()
command += object_id
2022-05-03 18:36:28 +02:00
command += struct.pack("!I", SupvActionIds.LOGGING_REQUEST_EVENT_BUFFERS)
2022-04-14 07:53:18 +02:00
path = get_event_buffer_path()
2022-05-03 18:36:28 +02:00
command += bytearray(path, "utf-8")
2022-04-14 07:53:18 +02:00
return command
2021-08-02 15:28:34 +02:00
def pack_set_gpio_cmd(object_id: bytearray) -> bytearray:
port = int(input("Specify port: 0x"), 16)
2022-04-22 18:02:49 +02:00
pin = int(input("Specify pin: 0x"), 16)
val = int(input("Specify val: 0x"), 16)
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.SET_GPIO)
command = command + struct.pack("!B", port)
command = command + struct.pack("!B", pin)
command = command + struct.pack("!B", val)
2021-08-02 15:28:34 +02:00
return command
def pack_read_gpio_cmd(object_id: bytearray) -> bytearray:
2022-04-22 18:02:49 +02:00
port = int(input("Specify port: 0x"), 16)
pin = int(input("Specify pin: 0x"), 16)
2022-01-18 14:03:56 +01:00
command = object_id + struct.pack("!I", SupvActionIds.READ_GPIO)
command = command + struct.pack("!B", port)
command = command + struct.pack("!B", pin)
2021-08-02 15:28:34 +02:00
return command
2022-04-11 16:53:20 +02:00
2022-04-14 07:53:18 +02:00
def pack_logging_set_topic(objetc_id: bytearray) -> bytearray:
2022-05-03 18:36:28 +02:00
command = objetc_id + struct.pack("!I", SupvActionIds.LOGGING_SET_TOPIC)
2022-04-14 07:53:18 +02:00
tpc = int(input("Specify logging topic: "))
2022-05-03 18:36:28 +02:00
command += struct.pack("!B", tpc)
2022-04-14 07:53:18 +02:00
return command
2022-04-11 16:53:20 +02:00
def get_update_file() -> str:
LOGGER.info("Specify update file ")
input_helper = InputHelper(update_file_dict)
key = input_helper.get_key()
if key == MANUAL_INPUT:
2022-04-14 07:53:18 +02:00
file = input("Ploc Supervisor: Specify absolute name of update file: ")
2022-04-11 16:53:20 +02:00
else:
file = update_file_dict[key][1]
return file
2022-04-14 07:53:18 +02:00
def get_event_buffer_path() -> str:
LOGGER.info("Specify path where to store event buffer file ")
input_helper = InputHelper(event_buffer_path_dict)
key = input_helper.get_key()
if key == MANUAL_INPUT:
file = input("Ploc Supervisor: Specify path: ")
else:
file = event_buffer_path_dict[key][1]
return file