2022-11-13 02:15:47 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright (C) 2018 Intel Corporation.
|
|
|
|
# All rights reserved.
|
|
|
|
|
2022-12-17 17:28:29 +00:00
|
|
|
|
2019-09-18 08:24:58 +00:00
|
|
|
def framework_get_subsystems(client):
|
|
|
|
return client.call('framework_get_subsystems')
|
2018-02-26 19:16:59 +00:00
|
|
|
|
|
|
|
|
2019-09-18 10:09:24 +00:00
|
|
|
def framework_get_config(client, name):
|
2018-03-27 21:04:40 +00:00
|
|
|
params = {'name': name}
|
2019-09-18 10:09:24 +00:00
|
|
|
return client.call('framework_get_config', params)
|
2021-12-12 10:19:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
def framework_get_pci_devices(client):
|
|
|
|
return client.call('framework_get_pci_devices')
|