| // Copyright 2024 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_GRAPHICS_DISPLAY_DRIVERS_VIRTIO_GPU_DISPLAY_CPP_GPU_DEVICE_DRIVER_H_ |
| #define SRC_GRAPHICS_DISPLAY_DRIVERS_VIRTIO_GPU_DISPLAY_CPP_GPU_DEVICE_DRIVER_H_ |
| |
| #include <lib/driver/component/cpp/driver_base2.h> |
| #include <lib/driver/component/cpp/driver_export2.h> |
| #include <lib/fdf/cpp/dispatcher.h> |
| #include <lib/zx/result.h> |
| #include <zircon/types.h> |
| |
| #include <cstdint> |
| #include <functional> |
| #include <memory> |
| #include <span> |
| #include <thread> |
| |
| #include "src/graphics/display/drivers/virtio-gpu-display/cpp/display-engine.h" |
| #include "src/graphics/display/drivers/virtio-gpu-display/cpp/gpu-control-server.h" |
| #include "src/graphics/display/lib/api-protocols/cpp/display-engine-events-fidl.h" |
| #include "src/graphics/display/lib/api-protocols/cpp/display-engine-fidl-adapter.h" |
| |
| namespace virtio_display { |
| |
| // Integration between this driver and the Driver Framework. |
| class GpuDeviceDriver : public fdf::DriverBase2, public GpuControlServer::Owner { |
| public: |
| explicit GpuDeviceDriver(); |
| |
| GpuDeviceDriver(const GpuDeviceDriver&) = delete; |
| GpuDeviceDriver& operator=(const GpuDeviceDriver&) = delete; |
| GpuDeviceDriver(GpuDeviceDriver&&) = delete; |
| GpuDeviceDriver& operator=(GpuDeviceDriver&&) = delete; |
| |
| virtual ~GpuDeviceDriver(); |
| |
| // fdf::DriverBase: |
| void Start(fdf::DriverContext context, fdf::StartCompleter completer) override; |
| void Stop(fdf::StopCompleter completer) override; |
| |
| // GpuControlServer::DeviceAccessor interface. |
| void SendHardwareCommand(std::span<uint8_t> request, |
| std::function<void(std::span<uint8_t>)> callback) override; |
| |
| private: |
| // Resource initialization that is not suitable for the constructor. |
| zx::result<> InitResources(const fdf::Namespace& incoming); |
| |
| // Must be called after `InitResources()`. |
| zx::result<> InitDisplayNode(); |
| |
| // Must be called after `InitResources()`. |
| zx::result<> InitGpuControlNode(); |
| |
| // Must outlive `display_engine_` and `engine_fidl_adapter_`. |
| std::unique_ptr<display::DisplayEngineEventsFidl> engine_events_; |
| |
| // Must outlive `engine_fidl_adapter_`. |
| std::unique_ptr<DisplayEngine> display_engine_; |
| |
| std::unique_ptr<display::DisplayEngineFidlAdapter> engine_fidl_adapter_; |
| |
| std::unique_ptr<GpuControlServer> gpu_control_server_; |
| |
| // Used by Start() for deferred initialization. |
| // |
| // Not started (and therefore not joinable) until Start() is called. |
| std::thread start_thread_; |
| |
| fidl::WireSyncClient<fuchsia_driver_framework::NodeController> display_node_controller_; |
| |
| fidl::WireSyncClient<fuchsia_driver_framework::NodeController> gpu_control_node_controller_; |
| }; |
| |
| } // namespace virtio_display |
| |
| #endif // SRC_GRAPHICS_DISPLAY_DRIVERS_VIRTIO_GPU_DISPLAY_CPP_GPU_DEVICE_DRIVER_H_ |