Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop ID from GET_IDEV_CSR docs. #1791

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rom/dev/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ ROM supports the following set of commands before handling the FW_DOWNLOAD comma
4. **SELF_TEST_GET_RESULTS**: This command is used to check if a SELF_TEST command is in progress. [Self Test Get Results command](https://github.com/chipsalliance/caliptra-sw/blob/main/runtime/README.md#self_test_get_results).
5. **SHUTDOWN**: This command is used clear the hardware crypto blocks including the keyvault. [Shutdown command](https://github.com/chipsalliance/caliptra-sw/blob/main/runtime/README.md#shutdown).
6. **CAPABILITIES**: This command is used to query the ROM capabilities. Capabilities is a 128-bit value with individual bits indicating a specific capability. Currently, the only capability supported is ROM_BASE (bit 0). [Capabilities command](https://github.com/chipsalliance/caliptra-sw/blob/main/runtime/README.md#capabilities).
7. **GET_IDEVID_CSR**: This command is used to fetch the IDevID CSR from ROM. [Fetch IDevIDCSR command](https://github.com/chipsalliance/caliptra-sw/blob/main/runtime/README.md#get_idevid_csr).
7. **GET_IDEV_CSR**: This command is used to get the IDevID CSR from ROM. [Get IDevCSR command](https://github.com/chipsalliance/caliptra-sw/blob/main/runtime/README.md#get_idev_csr).

### Downloading images from mailbox

Expand Down
6 changes: 3 additions & 3 deletions runtime/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -792,17 +792,17 @@ Command Code: `0x4154_5348` ("ATSH")
| fips_status | u32 | Indicates if the command is FIPS approved or an error. |
| auth_req_result | u32 | AUTHORIZE_IMAGE: 0xDEADC0DE and DENY_IMAGE_AUTHORIZATION: 0x21523F21 |

### GET\_IDEVID\_CSR
### GET\_IDEV\_CSR

Command Code: `0x4944_4352` ("IDCR")

*Table: `GET_IDEVID_CSR` input arguments*
*Table: `GET_IDEV_CSR` input arguments*

| **Name** | **Type** | **Description**
| -------- | -------- | ---------------
| chksum | u32 | Checksum over other input arguments, computed by the caller. Little endian. |

*Table: `GET_IDEVID_CSR` output arguments*
*Table: `GET_IDEV_CSR` output arguments*
| **Name** | **Type** | **Description**
| -------- | -------- | ---------------
| chksum | u32 | Checksum over other output arguments, computed by Caliptra. Little endian. |
Expand Down
Loading