요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.
1. 요약·해설
원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.
2. 영어 원문 전체
번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.
원문 전체 펼치기
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/tpm/microsoft,ftpm.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#
title: Microsoft firmware-based Trusted Platform Module (fTPM)
maintainers:
- Thirupathaiah Annapureddy <[email protected]>
- Sasha Levin <[email protected]>
description: |
Commodity CPU architectures, such as ARM and Intel CPUs, have started to
offer trusted computing features in their CPUs aimed at displacing dedicated
trusted hardware. Unfortunately, these CPU architectures raise serious
challenges to building trusted systems because they omit providing secure
resources outside the CPU perimeter.
Microsoft's firmware-based TPM 2.0 (fTPM) leverages ARM TrustZone to overcome
these challenges and provide software with security guarantees similar to
those of dedicated trusted hardware.
https://www.microsoft.com/en-us/research/publication/ftpm-software-implementation-tpm-chip/
https://github.com/Microsoft/ms-tpm-20-ref/tree/main/Samples/ARM32-FirmwareTPM
properties:
compatible:
const: microsoft,ftpm
required:
- compatible
- linux,sml-base
- linux,sml-size
allOf:
- $ref: tpm-common.yaml#
unevaluatedProperties: false
examples:
- |
tpm {
compatible = "microsoft,ftpm";
linux,sml-base = <0x0 0xc0000000>;
linux,sml-size = <0x10000>;
};
3. 한국어 전문 번역
영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.
Microsoft firmware TPM
1-26GPL-2.0-only 또는 BSD-2-Clause 라이선스의 이 스키마는 Microsoft firmware-based Trusted Platform Module(fTPM)을 정의합니다. ARM과 Intel 같은 commodity CPU architecture는 dedicated trusted hardware를 대체하려는 trusted computing 기능을 제공하기 시작했지만 CPU 경계 밖의 secure resource가 없어 trusted system 구축에 중대한 어려움이 있습니다.
Microsoft fTPM 2.0은 ARM TrustZone을 활용해 이 문제를 극복하고 dedicated trusted hardware와 유사한 security guarantee를 software에 제공합니다. 연구 문서와 ARM32 reference implementation 링크가 원문에 포함됩니다. Maintainer는 Thirupathaiah Annapureddy와 Sasha Levin입니다.
Event log memory
27-40`compatible`은 `microsoft,ftpm`입니다. `compatible`, `linux,sml-base`, `linux,sml-size`가 필수이며 공통 TPM 속성은 `tpm-common.yaml`에서 상속합니다. 평가되지 않은 추가 속성은 허용하지 않습니다.
properties:
compatible:
const: microsoft,ftpm
required:
- compatible
- linux,sml-base
- linux,sml-size
allOf:
- $ref: tpm-common.yaml#
unevaluatedProperties: false
64 KiB event log 예제
41-47예제 `tpm` node는 fTPM event log base를 0xc0000000, size를 0x10000인 64 KiB로 지정합니다.
examples:
- |
tpm {
compatible = "microsoft,ftpm";
linux,sml-base = <0x0 0xc0000000>;
linux,sml-size = <0x10000>;
};
요약과 해설
microsoft,ftpm.yaml:1-47ARM TrustZone 기반 Microsoft fTPM과 event log memory를 설명합니다. 접을 수 있는 영어 원문 전체와 한국어 전문 번역을 함께 제공하며 compatible, interrupt, bus, register, phandle, 수치와 줄 좌표를 원형대로 보존합니다.