blob: 9696b5440160dc9efe3796fb6cce1c71f5d34162 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SRC_DEVICES_BUS_DRIVERS_PCI_TEST_DRIVER_DRIVER_TESTS_H_
#define SRC_DEVICES_BUS_DRIVERS_PCI_TEST_DRIVER_DRIVER_TESTS_H_
// Constants used for the driver protocol tests.
#include <inttypes.h>
#define PCI_TEST_DRIVER_VID 0x0eff
#define PCI_TEST_DRIVER_DID 0x0fff
#define PCI_TEST_BUS_ID 0x00
#define PCI_TEST_DEV_ID 0x01
#define PCI_TEST_FUNC_ID 0x02
constexpr char kFakeBusDriverName[] = "pcictl";
constexpr char kProtocolTestDriverName[] = "pciproto";
#endif // SRC_DEVICES_BUS_DRIVERS_PCI_TEST_DRIVER_DRIVER_TESTS_H_