blob: 8aee3bc827ce664c0803d37ff0500de9aa595a70 [file] [log] [blame]
// Copyright lowRISC contributors.
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
// SPDX-License-Identifier: Apache-2.0
use bitflags::bitflags;
bitflags! {
pub struct TpmAccess: u8 {
const ESTABLISHMENT = 0x01;
const REQUEST_USE = 0x02;
const PENDING_REQUEST = 0x04;
const SEIZE = 0x08;
const BEEN_SEIZES = 0x10;
const ACTIVE_LOCALITY = 0x20;
const VALID = 0x80;
}
}