mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-23 00:38:26 +00:00
540f4349f5
Signed-off-by: Evan Lezar <elezar@nvidia.com>
159 lines
3.6 KiB
Go
159 lines
3.6 KiB
Go
/*
|
|
* Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package nvpci
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"gitlab.com/nvidia/cloud-native/go-nvlib/pkg/nvpci/bytes"
|
|
)
|
|
|
|
// MockNvpci mock pci device
|
|
type MockNvpci struct {
|
|
*nvpci
|
|
}
|
|
|
|
var _ Interface = (*MockNvpci)(nil)
|
|
|
|
// NewMockNvpci create new mock PCI and remove old devices
|
|
func NewMockNvpci() (mock *MockNvpci, rerr error) {
|
|
rootDir, err := os.MkdirTemp(os.TempDir(), "")
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
defer func() {
|
|
if rerr != nil {
|
|
os.RemoveAll(rootDir)
|
|
}
|
|
}()
|
|
|
|
mock = &MockNvpci{
|
|
NewFrom(rootDir).(*nvpci),
|
|
}
|
|
|
|
return mock, nil
|
|
}
|
|
|
|
// Cleanup remove the mocked PCI devices root folder
|
|
func (m *MockNvpci) Cleanup() {
|
|
os.RemoveAll(m.pciDevicesRoot)
|
|
}
|
|
|
|
// AddMockA100 Create an A100 like GPU mock device
|
|
func (m *MockNvpci) AddMockA100(address string, numaNode int) error {
|
|
deviceDir := filepath.Join(m.pciDevicesRoot, address)
|
|
err := os.MkdirAll(deviceDir, 0755)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
vendor, err := os.Create(filepath.Join(deviceDir, "vendor"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = vendor.WriteString(fmt.Sprintf("0x%x", PCINvidiaVendorID))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
class, err := os.Create(filepath.Join(deviceDir, "class"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = class.WriteString(fmt.Sprintf("0x%x", PCI3dControllerClass))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
device, err := os.Create(filepath.Join(deviceDir, "device"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = device.WriteString("0x20bf")
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = os.Create(filepath.Join(deviceDir, "nvidia"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = os.Symlink(filepath.Join(deviceDir, "nvidia"), filepath.Join(deviceDir, "driver"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
_, err = os.Create(filepath.Join(deviceDir, "20"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
err = os.Symlink(filepath.Join(deviceDir, "20"), filepath.Join(deviceDir, "iommu_group"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
numa, err := os.Create(filepath.Join(deviceDir, "numa_node"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = numa.WriteString(fmt.Sprintf("%v", numaNode))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
config, err := os.Create(filepath.Join(deviceDir, "config"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_data := make([]byte, PCICfgSpaceStandardSize)
|
|
data := bytes.New(&_data)
|
|
data.Write16(0, PCINvidiaVendorID)
|
|
data.Write16(2, uint16(0x20bf))
|
|
data.Write8(PCIStatusBytePosition, PCIStatusCapabilityList)
|
|
_, err = config.Write(*data.Raw())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
bar0 := []uint64{0x00000000c2000000, 0x00000000c2ffffff, 0x0000000000040200}
|
|
resource, err := os.Create(filepath.Join(deviceDir, "resource"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_, err = resource.WriteString(fmt.Sprintf("0x%x 0x%x 0x%x", bar0[0], bar0[1], bar0[2]))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
pmcID := uint32(0x170000a1)
|
|
resource0, err := os.Create(filepath.Join(deviceDir, "resource0"))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
_data = make([]byte, bar0[1]-bar0[0]+1)
|
|
data = bytes.New(&_data).LittleEndian()
|
|
data.Write32(0, pmcID)
|
|
_, err = resource0.Write(*data.Raw())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|