| // Copyright 2025 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. | |
| @available(added=HEAD) | |
| library fuchsia.hardware.vsi; | |
| using zx; | |
| /// The parent device to VSI that has access to power registers. | |
| closed protocol PowerParent { | |
| /// Call reset on the power registers. | |
| strict Reset() -> () error zx.Status; | |
| }; | |
| service PowerParentService { | |
| power client_end:PowerParent; | |
| }; |