Cherry-pick "[msd-arm-mali] Reload driver using fuchsia.driver.development"

>  Speaking the fuchsia.device protocol to drivers is only half-supported
>  in DFv2 (GetTopologicalPath doesn't work) and fuchsia.driver isn't
>  exposed through the SDK. Its replacement is using
>  fuchsia.driver.development to enable/disable drivers and restart
>  devhosts.
>
>  This also allows us to get rid of the rebind driver, since restarting
>  the devhost allows the regular driver to be rebound.
>
>  Multiply: msd-arm-mali-integration-tests
>  Bug: 42075799, 42078129
>  Change-Id: I8b1357d9bbfb31a061606d343147f42c6beb5368
>  Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/982212
>  Fuchsia-Auto-Submit: John Bauman <jbauman@google.com>
>  Commit-Queue: Auto-Submit <auto-submit@fuchsia-infra.iam.gserviceaccount.com>
>  Reviewed-by: Craig Stout <cstout@google.com>

Change-Id: I37f0e74671f1fc5e3515c93127bbd912a9e8c661
Reviewed-on: https://fuchsia-review.googlesource.com/c/drivers/graphics/gpu/+/990872
Fuchsia-Auto-Submit: John Bauman <jbauman@google.com>
Commit-Queue: Auto-Submit <auto-submit@fuchsia-infra.iam.gserviceaccount.com>
Reviewed-by: Craig Stout <cstout@google.com>
15 files changed
tree: a5d00ffcd3d3d398d0694ba7fa2239585fb86607
  1. common/
  2. drivers/
  3. fidl/
  4. manifests/
  5. scripts/
  6. third_party/
  7. tools/
  8. .bazelrc
  9. .clang-format
  10. .gitignore
  11. .gitmodules
  12. AUTHORS
  13. BUILD.bazel
  14. CONTRIBUTING.md
  15. fuchsia_env.toml
  16. LICENSE
  17. OWNERS
  18. PATENTS
  19. README.md
  20. shac.star
  21. shac.textproto
  22. WORKSPACE.bazel
README.md

Fuchsia <change_me> Driver Repository

<change_me: This repository is a template that we will use when creating new driver repositories for Fuchsia>.

Template repository is located in: https://fuchsia.googlesource.com/template/driver/

Getting Started

To perform an initial bootstrap, execute the following:

  1. In a terminal, clone the repository:

    git clone https://fuchsia.googlesource.com/drivers/<change_me>
    
  2. Change to that directory:

    cd <change_me>
    
  3. Fetch all git submodules:

    git submodule init && git submodule update --recursive
    
  4. Bootstrap the build environment:

    scripts/bootstrap.sh
    
  5. Fetch and build the SDK:

    tools/bazel build @fuchsia_sdk//:fuchsia_toolchain_sdk
    

See the getting started guide for more info.

Building And Testing Driver

Run the full test-suite with:

tools/bazel test :tests

Run only the <change_me> driver tests with:

tools/bazel test <change_me>:<fuchsia_unittest_package_name>