ba35cdcfe2
The framework is required for RAS integration. When the RAS fields need to be retrieved, the framework will load the RAS library at run time, and then call the RAS function to retrieve RAS metrics. * The RdcModuleMgr will be used to manage different modules. RDC only has the telemetry module now. * When RDCTelemetryModule is loaded, it will load the RAS library. It will also call rdc_telemetry_fields_query() defined in the RAS library for the list of fields RAS supported. * The RdcSmiLib is a wrapper for the rocm_msi_lib to provide the interface required by the RDCTelemetryModule. * The RdcWatchTable will use the RdcModuleMgr to get the RDCTelemetryModule to bulk fetch mulitple fields. * The RdcTelemetryModule will dispatch those fields to different library: RdcSmiLib or RdcRasLib. The watch() and unwatch() in the RDCTelemetryModule will been implemented at the next task. Change-Id: I81b01d5b52d1ea3cdcec7c09af86b6622dd5899e
54 行
1.8 KiB
C++
54 行
1.8 KiB
C++
/*
|
|
Copyright (c) 2020 - present Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
*/
|
|
#ifndef RDC_LIB_IMPL_RDCMODULEMGRIMPL_H_
|
|
#define RDC_LIB_IMPL_RDCMODULEMGRIMPL_H_
|
|
|
|
#include <memory>
|
|
#include "rdc_lib/RdcModuleMgr.h"
|
|
#include "rdc_lib/RdcMetricFetcher.h"
|
|
#include "rdc_lib/RdcTelemetry.h"
|
|
#include "rdc_lib/impl/RdcRasLib.h"
|
|
|
|
namespace amd {
|
|
namespace rdc {
|
|
|
|
class RdcModuleMgrImpl: public RdcModuleMgr {
|
|
public:
|
|
RdcTelemetryPtr get_telemetry_module() override;
|
|
explicit RdcModuleMgrImpl(const RdcMetricFetcherPtr& fetcher);
|
|
private:
|
|
// Function module
|
|
RdcTelemetryPtr rdc_telemetry_module_;
|
|
|
|
// Domain module
|
|
RdcRasLibPtr ras_lib_;
|
|
|
|
RdcMetricFetcherPtr fetcher_;
|
|
|
|
};
|
|
|
|
} // namespace rdc
|
|
} // namespace amd
|
|
|
|
|
|
#endif // RDC_LIB_IMPL_RDCMODULEMGRIMPL_H_
|