[AS4630-54PE] Fix led drv and i2c bus order (#9170)

Signed-off-by: Jostar Yang jostar_yang@accton.com.tw

Why I did it
Fix led drv because CPLD SPEC is updated.
Fix i2c bus order
How I did it
Fix led drv. Set blacklist to i801 and ismt. Let accton util to modprobe i801 and ismt.

How to verify it
Test led and sensors cmd. Results are fine.
This commit is contained in:
jostar-yang 2022-03-05 09:40:27 +08:00 committed by GitHub
parent 85976cbca3
commit d959c4adcd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 13 deletions

View File

@ -1,3 +1,4 @@
CONSOLE_PORT=0x3f8
CONSOLE_DEV=0
CONSOLE_SPEED=115200
ONIE_PLATFORM_EXTRA_CMDLINE_LINUX="intel_iommu=off modprobe.blacklist=i2c-ismt,i2c_ismt,i2c-i801,i2c_i801"

View File

@ -118,7 +118,6 @@ def main():
elif opt in ('-f', '--force'):
FORCE = 1
else:
print("TEST")
logging.info('no option')
for arg in args:
if arg == 'install':
@ -167,7 +166,9 @@ def driver_inserted():
kos = [
'depmod -ae',
'modprobe i2c_dev',
'modprobe i2c_mux_pca954x force_deselect_on_exit=1',
'modprobe i2c_i801',
'modprobe i2c_ismt',
'modprobe i2c_mux_pca954x',
'modprobe ym2651y',
'modprobe x86_64_accton_as4630_54pe_cpld',
'modprobe x86_64_accton_as4630_54pe_leds',
@ -176,17 +177,7 @@ kos = [
def driver_install():
global FORCE
ret=log_os_system("lsmod|grep i2c_ismt",1)
my_log("rmmond i2cismt")
log_os_system("rmmod i2c_ismt", 1)
log_os_system("rmmod i2c_i801", 1)
log_os_system("modprobe i2c-i801", 1)
time.sleep(1)
log_os_system("modprobe i2c-ismt", 1)
for i in range(0,len(kos)):
status, output = log_os_system(kos[i], 1)
if status:
@ -226,6 +217,13 @@ def device_install():
if FORCE == 0:
return status
# set all pca954x idle_disconnect
cmd = 'echo -2 | tee /sys/bus/i2c/drivers/pca954x/*-00*/idle_state'
status, output = log_os_system(cmd, 1)
if status:
print(output)
if FORCE == 0:
return status
for i in range(0,len(sfp_map)):
if(i < 4):
opt='optoe2'