1#!/usr/bin/env python3 2# 3# Copyright (C) 2021-2022 Intel Corporation. 4# 5# SPDX-License-Identifier: BSD-3-Clause 6# 7 8import sys, os, logging 9sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', 'library')) 10import lib.lib, lib.error 11 12def fn(board_etree, scenario_etree, allocation_etree): 13 # With the console vUART explicitly specified as COM port and communication vUART with explicit I/O port base 14 # addresses, there is no need to allocate any port I/O for now. 15 # 16 # This allocator is preserved here, though, as the implicit vUART connections for system-level power management, 17 # which has to be port I/O based and are to be added later, will need I/O port allocation again. 18 pass 19