blob: 9ff807545a966e956f808d6a6bd7858c8291d098 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#ifndef ZIRCON_SYSTEM_DEV_BUS_PCI_TEST_FAKE_UPSTREAM_NODE_H_
#define ZIRCON_SYSTEM_DEV_BUS_PCI_TEST_FAKE_UPSTREAM_NODE_H_
#include "../ref_counted.h"
#include "../upstream_node.h"
#include "fake_allocator.h"
namespace pci {
class FakeUpstreamNode : public UpstreamNode {
public:
FakeUpstreamNode(Type type, uint32_t mbus_id)
: UpstreamNode(type, mbus_id) {}
PciAllocator& pf_mmio_regions() { return fake_alloc_; }
PciAllocator& mmio_regions() { return fake_alloc_; }
PciAllocator& pio_regions() { return fake_alloc_; }
void UnplugDownstream() final {
UpstreamNode::UnplugDownstream();
}
void DisableDownstream() final {
UpstreamNode::DisableDownstream();
}
PCI_IMPLEMENT_REFCOUNTED;
private:
FakeAllocator fake_alloc_;
};
} // namespace pci
#endif // ZIRCON_SYSTEM_DEV_BUS_PCI_TEST_FAKE_UPSTREAM_NODE_H_