blob: 21276c8a87a7e803c95d83f57da382239368c694 [file] [log] [blame] [edit]
// Copyright 2022 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.
library fuchsia.tpm;
using zx;
/// This interface is intended to remove TPM ownership
/// and clear any keying material when the device is factory reset.
@discoverable
protocol Deprovision {
/// Connects to the Physical Presence Interface via ACPI and
/// instructs the firmware to reset the TPM on reboot.
RemoveOwnership(table {}) -> () error zx.status;
};