From e6c4f4d0f2474ec1a4810a8c5b17c3f34a710153 Mon Sep 17 00:00:00 2001 From: Eric Kooistra <kooistra@astron.nl> Date: Wed, 11 Oct 2023 11:27:44 +0200 Subject: [PATCH] Rename N_bdo_destinations_max. --- applications/lofar2/libraries/sdp/sdp.peripheral.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/applications/lofar2/libraries/sdp/sdp.peripheral.yaml b/applications/lofar2/libraries/sdp/sdp.peripheral.yaml index eb327cc935..e10ec55d9f 100644 --- a/applications/lofar2/libraries/sdp/sdp.peripheral.yaml +++ b/applications/lofar2/libraries/sdp/sdp.peripheral.yaml @@ -194,7 +194,7 @@ peripherals: peripheral_description: "SDP beamlet data output (BDO) destinations." parameters: # Parameters fixed in sdp_bdo_destinations_reg.vhd / sdp_pkg.vhd - - { name: N_destinations_max, value: 32 } + - { name: N_bdo_destinations_max, value: 32 } mm_ports: # MM port for sdp_bdo_destinations_reg.vhd / mm_fields.vhd - mm_port_name: REG_BDO_DESTINATIONS @@ -203,14 +203,14 @@ peripherals: mm_port_description: | "The SDP beamlets in a beamset can be send to 1 or multiple destinations, each identified by destination MAC addess, IP address and UDP port. - The number of destinations is 1 <= nof_destinations <= N_destinations_max. The actual + The number of destinations is 1 <= nof_destinations <= N_bdo_destinations_max. The actual nof_destinations is reported via nof_destinations_act. The actual number of blocks per packet depends on nof_destinations_act, and is reported via nof_blocks_per_packet." fields: - - - { field_name: eth_destination_mac, number_of_fields: N_destinations_max, mm_width: 32, user_width: 48, radix: uint64, access_mode: RW, address_offset: 0x0 } - - - { field_name: ip_destination_address, number_of_fields: N_destinations_max, mm_width: 32, access_mode: RW, address_offset: 0x100 } - - - { field_name: udp_destination_port, number_of_fields: N_destinations_max, mm_width: 16, access_mode: RW, address_offset: 0x180 } + - - { field_name: eth_destination_mac, number_of_fields: N_bdo_destinations_max, mm_width: 32, user_width: 48, radix: uint64, access_mode: RW, address_offset: 0x0 } + - - { field_name: ip_destination_address, number_of_fields: N_bdo_destinations_max, mm_width: 32, access_mode: RW, address_offset: 0x100 } + - - { field_name: udp_destination_port, number_of_fields: N_bdo_destinations_max, mm_width: 16, access_mode: RW, address_offset: 0x180 } - - { field_name: nof_destinations, mm_width: 8, access_mode: RW, address_offset: 0x200 } # = 512 = 128 * 4 - - { field_name: nof_destinations_act, mm_width: 8, access_mode: RO, address_offset: 0x204 } # = 516 = 129 * 4 - - { field_name: nof_destinations_max, mm_width: 8, access_mode: RO, address_offset: 0x208 } # = 520 = 130 * 4 -- GitLab