-
Notifications
You must be signed in to change notification settings - Fork 157
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix the exception when configure unsupported frequency #397
base: master
Are you sure you want to change the base?
Changes from 8 commits
c52ba69
199338c
3847751
3808069
0a70144
b8466a5
126f845
f7df53b
7d491c0
9a75f59
b868eeb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1323,18 +1323,38 @@ def configure_tx_output_power(self, api, lport, tx_power): | |
self.log_error("{} configured tx power {} > maximum power {} supported".format(lport, tx_power, max_p)) | ||
return api.set_tx_power(tx_power) | ||
|
||
def configure_laser_frequency(self, api, lport, freq, grid=75): | ||
_, _, _, lowf, highf = api.get_supported_freq_config() | ||
def verify_config_laser_frequency(self, api, lport, freq, grid=75): | ||
grid_supported, _, _, lowf, highf = api.get_supported_freq_config() | ||
if freq < lowf: | ||
self.log_error("{} configured freq:{} GHz is lower than the supported freq:{} GHz".format(lport, freq, lowf)) | ||
return False | ||
if freq > highf: | ||
self.log_error("{} configured freq:{} GHz is higher than the supported freq:{} GHz".format(lport, freq, highf)) | ||
chan = int(round((freq - 193100)/25)) | ||
if chan % 3 != 0: | ||
self.log_error("{} configured freq:{} GHz is NOT in 75GHz grid".format(lport, freq)) | ||
return False | ||
if grid == 75: | ||
if (grid_supported >> 7) & 0x1 != 1: | ||
self.log_error("{} 75GHz is not supported".format(lport)) | ||
return False | ||
chan = int(round((freq - 193100)/25)) | ||
if chan % 3 != 0: | ||
self.log_error("{} configured freq:{} GHz is NOT in 75GHz grid".format(lport, freq)) | ||
return False | ||
elif grid == 100: | ||
if (grid_supported >> 5) & 0x1 != 1: | ||
self.log_error("{} 100GHz is not supported".format(lport)) | ||
return False | ||
else: | ||
self.log_error("{} {}GHz is not supported".format(lport, grid)) | ||
return False | ||
return True | ||
|
||
def configure_laser_frequency(self, api, lport, freq, grid=75): | ||
if api.get_tuning_in_progress(): | ||
self.log_error("{} Tuning in progress, subport selection may fail!".format(lport)) | ||
return api.set_laser_freq(freq, grid) | ||
try: | ||
return api.set_laser_freq(freq, grid) | ||
except: | ||
return False | ||
|
||
def post_port_active_apsel_to_db(self, api, lport, host_lanes_mask): | ||
try: | ||
|
@@ -1559,11 +1579,12 @@ def task_worker(self): | |
|
||
# For ZR module, Datapath needes to be re-initlialized on new channel selection | ||
if api.is_coherent_module(): | ||
freq = self.port_dict[lport]['laser_freq'] | ||
# If user requested frequency is NOT the same as configured on the module | ||
# force datapath re-initialization | ||
if 0 != freq and freq != api.get_laser_config_freq(): | ||
need_update = True | ||
freq = self.port_dict[lport]['laser_freq'] | ||
# If user requested frequency is NOT the same as configured on the module | ||
# force datapath re-initialization | ||
if 0 != freq and freq != api.get_laser_config_freq(): | ||
if self.verify_config_laser_frequency(api, lport, freq) == True: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we move this to configure_laser_frequency? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Line 1571: need_update = self.is_cmis_application_update_required(api, appl, host_lanes_mask) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Line 1571: need_update = self.is_cmis_application_update_required(api, appl, host_lanes_mask) |
||
need_update = True | ||
|
||
if not need_update: | ||
# No application updates | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you please add a description for this function?
Also, are we not planning to handle other frequency grid checks in this function?