From 158eb3828058d7ec0adf33c6f59468ace48186ea Mon Sep 17 00:00:00 2001 From: Kunhui-Li Date: Fri, 30 Jul 2021 18:51:19 +0800 Subject: [PATCH] config_tools: update lpc slot number Update lpc slot to origin value 1 from 31 because GOP driver has assumption to config space layout of the device on 00:1f.0. Tracked-On: #6340 Signed-off-by: Kunhui-Li --- misc/config_tools/library/launch_cfg_lib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/config_tools/library/launch_cfg_lib.py b/misc/config_tools/library/launch_cfg_lib.py index 96b667691..d2aa3ebfb 100644 --- a/misc/config_tools/library/launch_cfg_lib.py +++ b/misc/config_tools/library/launch_cfg_lib.py @@ -40,10 +40,10 @@ PASSTHRU_DEVS = ['usb_xdci', 'ipu', 'ipu_i2c', 'cse', 'audio', 'sata', PT_SLOT = { "hostbridge":0, - "isa":1, + "lpc":1, "pci-gvt":2, "virtio-blk":3, - "lpc":31, + "igd-lpc":31, }