mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-09-23 22:34:57 -04:00
Harmonize the naming of firmware and app mode.
- The API changes name from `_SWITCH_APP` to `_SYSTEM_MODE_CTRL`. - The registers and wires changes name to `system_mode_*`, instead of a mix of `switch_app_*` and `fw_app_mode`.
This commit is contained in:
parent
69ef6dde8b
commit
aea2e319eb
16 changed files with 149 additions and 146 deletions
|
@ -21,5 +21,6 @@ The contents of the fw_ram is cleared when the FPGA is powered up and
|
|||
configured by the bitstream. The contents is not cleared by a system
|
||||
reset.
|
||||
|
||||
If the fw_app_mode input is set, no memory accesses are allowed. Any
|
||||
reads when the fw_app_mode is set will retun an all zero word.
|
||||
If the system_mode input is set, i.e. in firmware mode, no memory
|
||||
accesses are allowed. Any reads when the system_mode is set will
|
||||
return an all zero word.
|
||||
|
|
|
@ -17,7 +17,7 @@ module fw_ram (
|
|||
input wire clk,
|
||||
input wire reset_n,
|
||||
|
||||
input wire fw_app_mode,
|
||||
input wire system_mode,
|
||||
|
||||
input wire cs,
|
||||
input wire [ 3 : 0] we,
|
||||
|
@ -35,7 +35,7 @@ module fw_ram (
|
|||
reg [31 : 0] mem_read_data0;
|
||||
reg [31 : 0] mem_read_data1;
|
||||
reg ready_reg;
|
||||
wire fw_app_cs;
|
||||
wire system_mode_cs;
|
||||
reg bank0;
|
||||
reg bank1;
|
||||
|
||||
|
@ -43,9 +43,9 @@ module fw_ram (
|
|||
//----------------------------------------------------------------
|
||||
// Concurrent assignment of ports.
|
||||
//----------------------------------------------------------------
|
||||
assign read_data = tmp_read_data;
|
||||
assign ready = ready_reg;
|
||||
assign fw_app_cs = cs && ~fw_app_mode;
|
||||
assign read_data = tmp_read_data;
|
||||
assign ready = ready_reg;
|
||||
assign system_mode_cs = cs && ~system_mode;
|
||||
|
||||
|
||||
//----------------------------------------------------------------
|
||||
|
@ -56,12 +56,12 @@ module fw_ram (
|
|||
.RADDR({3'h0, address[7 : 0]}),
|
||||
.RCLK(clk),
|
||||
.RCLKE(1'h1),
|
||||
.RE(fw_app_cs & bank0),
|
||||
.RE(system_mode_cs & bank0),
|
||||
.WADDR({3'h0, address[7 : 0]}),
|
||||
.WCLK(clk),
|
||||
.WCLKE(1'h1),
|
||||
.WDATA(write_data[15 : 0]),
|
||||
.WE((|we & fw_app_cs & bank0)),
|
||||
.WE((|we & system_mode_cs & bank0)),
|
||||
.MASK({{8{~we[1]}}, {8{~we[0]}}})
|
||||
);
|
||||
|
||||
|
@ -70,12 +70,12 @@ module fw_ram (
|
|||
.RADDR({3'h0, address[7 : 0]}),
|
||||
.RCLK(clk),
|
||||
.RCLKE(1'h1),
|
||||
.RE(fw_app_cs & bank0),
|
||||
.RE(system_mode_cs & bank0),
|
||||
.WADDR({3'h0, address[7 : 0]}),
|
||||
.WCLK(clk),
|
||||
.WCLKE(1'h1),
|
||||
.WDATA(write_data[31 : 16]),
|
||||
.WE((|we & fw_app_cs & bank0)),
|
||||
.WE((|we & system_mode_cs & bank0)),
|
||||
.MASK({{8{~we[3]}}, {8{~we[2]}}})
|
||||
);
|
||||
|
||||
|
@ -85,12 +85,12 @@ module fw_ram (
|
|||
.RADDR({3'h0, address[7 : 0]}),
|
||||
.RCLK(clk),
|
||||
.RCLKE(1'h1),
|
||||
.RE(fw_app_cs & bank1),
|
||||
.RE(system_mode_cs & bank1),
|
||||
.WADDR({3'h0, address[7 : 0]}),
|
||||
.WCLK(clk),
|
||||
.WCLKE(1'h1),
|
||||
.WDATA(write_data[15 : 0]),
|
||||
.WE((|we & fw_app_cs & bank1)),
|
||||
.WE((|we & system_mode_cs & bank1)),
|
||||
.MASK({{8{~we[1]}}, {8{~we[0]}}})
|
||||
);
|
||||
|
||||
|
@ -99,12 +99,12 @@ module fw_ram (
|
|||
.RADDR({3'h0, address[7 : 0]}),
|
||||
.RCLK(clk),
|
||||
.RCLKE(1'h1),
|
||||
.RE(fw_app_cs & bank1),
|
||||
.RE(system_mode_cs & bank1),
|
||||
.WADDR({3'h0, address[7 : 0]}),
|
||||
.WCLK(clk),
|
||||
.WCLKE(1'h1),
|
||||
.WDATA(write_data[31 : 16]),
|
||||
.WE((|we & fw_app_cs & bank1)),
|
||||
.WE((|we & system_mode_cs & bank1)),
|
||||
.MASK({{8{~we[3]}}, {8{~we[2]}}})
|
||||
);
|
||||
|
||||
|
@ -129,7 +129,7 @@ module fw_ram (
|
|||
bank1 = 1'h0;
|
||||
tmp_read_data = 32'h0;
|
||||
|
||||
if (fw_app_cs) begin
|
||||
if (system_mode_cs) begin
|
||||
if (address[8]) begin
|
||||
bank1 = 1'h1;
|
||||
tmp_read_data = mem_read_data1;
|
||||
|
|
|
@ -26,7 +26,7 @@ applications.
|
|||
### Control of execution mode
|
||||
|
||||
```
|
||||
ADDR_SWITCH_APP: 0x08
|
||||
ADDR_SYSTEM_MODE_CTRL: 0x08
|
||||
```
|
||||
|
||||
This register controls if the device is executing in FW mode or in App
|
||||
|
@ -75,7 +75,7 @@ corresponding register is one or zero.
|
|||
These registers provide read only information to the loaded app to
|
||||
itself - where it was loaded and its size. The values are written by
|
||||
FW as part of the loading of the app. The registers can't be written
|
||||
when the ADDR_SWITCH_APP has been set.
|
||||
when the ADDR_SYSTEM_MODE_CTRL has been set.
|
||||
|
||||
|
||||
### Access to Blake2s
|
||||
|
@ -86,7 +86,7 @@ when the ADDR_SWITCH_APP has been set.
|
|||
|
||||
This register provides the 32-bit function pointer address to the
|
||||
Blake2s hash function in the FW. It is written by FW during boot. The
|
||||
register can't be written to when the ADDR_SWITCH_APP has been set.
|
||||
register can't be written to when the ADDR_SYSTEM_MODE_CTRL has been set.
|
||||
|
||||
|
||||
### Access to CDI
|
||||
|
@ -99,7 +99,7 @@ register can't be written to when the ADDR_SWITCH_APP has been set.
|
|||
These registers provide access to the 256-bit compound device secret
|
||||
calculated by the FW as part of loading an application. The registers
|
||||
are written by the FW. The register can't be written to when the
|
||||
ADDR_SWITCH_APP has been set. Apps can read the CDI and is it as base
|
||||
ADDR_SYSTEM_MODE_CTRL has been set. Apps can read the CDI and is it as base
|
||||
secret for any secrets it needs to perform its intended use case.
|
||||
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ module tk1 (
|
|||
input wire reset_n,
|
||||
|
||||
input wire cpu_trap,
|
||||
output wire fw_app_mode,
|
||||
output wire system_mode,
|
||||
|
||||
input wire [31 : 0] cpu_addr,
|
||||
input wire cpu_instr,
|
||||
|
@ -59,7 +59,7 @@ module tk1 (
|
|||
localparam ADDR_NAME1 = 8'h01;
|
||||
localparam ADDR_VERSION = 8'h02;
|
||||
|
||||
localparam ADDR_SWITCH_APP = 8'h08;
|
||||
localparam ADDR_SYSTEM_MODE_CTRL = 8'h08;
|
||||
|
||||
localparam ADDR_LED = 8'h09;
|
||||
localparam LED_R_BIT = 2;
|
||||
|
@ -112,8 +112,8 @@ module tk1 (
|
|||
reg [31 : 0] cdi_mem [0 : 7];
|
||||
reg cdi_mem_we;
|
||||
|
||||
reg switch_app_reg;
|
||||
reg switch_app_we;
|
||||
reg system_mode_reg;
|
||||
reg system_mode_we;
|
||||
|
||||
reg [ 2 : 0] led_reg;
|
||||
reg led_we;
|
||||
|
@ -185,7 +185,7 @@ module tk1 (
|
|||
assign read_data = tmp_read_data;
|
||||
assign ready = tmp_ready;
|
||||
|
||||
assign fw_app_mode = switch_app_reg;
|
||||
assign system_mode = system_mode_reg;
|
||||
|
||||
assign force_trap = force_trap_reg;
|
||||
|
||||
|
@ -248,7 +248,7 @@ module tk1 (
|
|||
//----------------------------------------------------------------
|
||||
always @(posedge clk) begin : reg_update
|
||||
if (!reset_n) begin
|
||||
switch_app_reg <= 1'h0;
|
||||
system_mode_reg <= 1'h0;
|
||||
led_reg <= 3'h6;
|
||||
gpio1_reg <= 2'h0;
|
||||
gpio2_reg <= 2'h0;
|
||||
|
@ -287,8 +287,8 @@ module tk1 (
|
|||
gpio2_reg[0] <= gpio2;
|
||||
gpio2_reg[1] <= gpio2_reg[0];
|
||||
|
||||
if (switch_app_we) begin
|
||||
switch_app_reg <= 1'h1;
|
||||
if (system_mode_we) begin
|
||||
system_mode_reg <= 1'h1;
|
||||
end
|
||||
|
||||
if (led_we) begin
|
||||
|
@ -414,7 +414,7 @@ module tk1 (
|
|||
// api
|
||||
//----------------------------------------------------------------
|
||||
always @* begin : api
|
||||
switch_app_we = 1'h0;
|
||||
system_mode_we = 1'h0;
|
||||
led_we = 1'h0;
|
||||
gpio3_we = 1'h0;
|
||||
gpio4_we = 1'h0;
|
||||
|
@ -443,8 +443,8 @@ module tk1 (
|
|||
if (cs) begin
|
||||
tmp_ready = 1'h1;
|
||||
if (we) begin
|
||||
if (address == ADDR_SWITCH_APP) begin
|
||||
switch_app_we = 1'h1;
|
||||
if (address == ADDR_SYSTEM_MODE_CTRL) begin
|
||||
system_mode_we = 1'h1;
|
||||
end
|
||||
|
||||
if (address == ADDR_LED) begin
|
||||
|
@ -457,13 +457,13 @@ module tk1 (
|
|||
end
|
||||
|
||||
if (address == ADDR_APP_START) begin
|
||||
if (!switch_app_reg) begin
|
||||
if (!system_mode_reg) begin
|
||||
app_start_we = 1'h1;
|
||||
end
|
||||
end
|
||||
|
||||
if (address == ADDR_APP_SIZE) begin
|
||||
if (!switch_app_reg) begin
|
||||
if (!system_mode_reg) begin
|
||||
app_size_we = 1'h1;
|
||||
end
|
||||
end
|
||||
|
@ -473,25 +473,25 @@ module tk1 (
|
|||
end
|
||||
|
||||
if (address == ADDR_BLAKE2S) begin
|
||||
if (!switch_app_reg) begin
|
||||
if (!system_mode_reg) begin
|
||||
blake2s_addr_we = 1'h1;
|
||||
end
|
||||
end
|
||||
|
||||
if ((address >= ADDR_CDI_FIRST) && (address <= ADDR_CDI_LAST)) begin
|
||||
if (!switch_app_reg) begin
|
||||
if (!system_mode_reg) begin
|
||||
cdi_mem_we = 1'h1;
|
||||
end
|
||||
end
|
||||
|
||||
if (address == ADDR_RAM_ADDR_RAND) begin
|
||||
if (!switch_app_reg) begin
|
||||
if (!system_mode_reg) begin
|
||||
ram_addr_rand_we = 1'h1;
|
||||
end
|
||||
end
|
||||
|
||||
if (address == ADDR_RAM_DATA_RAND) begin
|
||||
if (!switch_app_reg) begin
|
||||
if (!system_mode_reg) begin
|
||||
ram_data_rand_we = 1'h1;
|
||||
end
|
||||
end
|
||||
|
@ -538,8 +538,8 @@ module tk1 (
|
|||
tmp_read_data = TK1_VERSION;
|
||||
end
|
||||
|
||||
if (address == ADDR_SWITCH_APP) begin
|
||||
tmp_read_data = {32{switch_app_reg}};
|
||||
if (address == ADDR_SYSTEM_MODE_CTRL) begin
|
||||
tmp_read_data = {32{system_mode_reg}};
|
||||
end
|
||||
|
||||
if (address == ADDR_LED) begin
|
||||
|
@ -567,7 +567,7 @@ module tk1 (
|
|||
end
|
||||
|
||||
if ((address >= ADDR_UDI_FIRST) && (address <= ADDR_UDI_LAST)) begin
|
||||
if (!switch_app_reg) begin
|
||||
if (!system_mode_reg) begin
|
||||
tmp_read_data = udi_rdata;
|
||||
end
|
||||
end
|
||||
|
|
|
@ -27,7 +27,7 @@ module tb_tk1 ();
|
|||
localparam ADDR_NAME1 = 8'h01;
|
||||
localparam ADDR_VERSION = 8'h02;
|
||||
|
||||
localparam ADDR_SWITCH_APP = 8'h08;
|
||||
localparam ADDR_SYSTEM_MODE_CTRL = 8'h08;
|
||||
|
||||
localparam ADDR_LED = 8'h09;
|
||||
localparam LED_R_BIT = 2;
|
||||
|
@ -76,7 +76,7 @@ module tb_tk1 ();
|
|||
reg tb_clk;
|
||||
reg tb_reset_n;
|
||||
reg tb_cpu_trap;
|
||||
wire tb_fw_app_mode;
|
||||
wire tb_system_mode;
|
||||
|
||||
reg [31 : 0] tb_cpu_addr;
|
||||
reg tb_cpu_instr;
|
||||
|
@ -122,7 +122,7 @@ module tb_tk1 ();
|
|||
.reset_n(tb_reset_n),
|
||||
|
||||
.cpu_trap(tb_cpu_trap),
|
||||
.fw_app_mode(tb_fw_app_mode),
|
||||
.system_mode(tb_system_mode),
|
||||
|
||||
.cpu_addr (tb_cpu_addr),
|
||||
.cpu_instr (tb_cpu_instr),
|
||||
|
@ -192,7 +192,7 @@ module tb_tk1 ();
|
|||
$display("------------");
|
||||
if (tb_main_monitor) begin
|
||||
$display("Inputs and outputs:");
|
||||
$display("tb_cpu_trap: 0x%1x, fw_app_mode: 0x%1x", tb_cpu_trap, tb_fw_app_mode);
|
||||
$display("tb_cpu_trap: 0x%1x, system_mode: 0x%1x", tb_cpu_trap, tb_system_mode);
|
||||
$display("cpu_addr: 0x%08x, cpu_instr: 0x%1x, cpu_valid: 0x%1x, force_tap: 0x%1x",
|
||||
tb_cpu_addr, tb_cpu_instr, tb_cpu_valid, tb_force_trap);
|
||||
$display("ram_addr_rand: 0x%08x, ram_data_rand: 0x%08x", tb_ram_addr_rand,
|
||||
|
@ -441,7 +441,7 @@ module tb_tk1 ();
|
|||
read_check_word(ADDR_CDI_LAST + 0, 32'h70717273);
|
||||
|
||||
$display("--- test3: Switch to app mode.");
|
||||
write_word(ADDR_SWITCH_APP, 32'hdeadbeef);
|
||||
write_word(ADDR_SYSTEM_MODE_CTRL, 32'hdeadbeef);
|
||||
|
||||
$display("--- test3: Try to write CDI again.");
|
||||
write_word(ADDR_CDI_FIRST + 0, 32'hfffefdfc);
|
||||
|
@ -489,7 +489,7 @@ module tb_tk1 ();
|
|||
read_check_word(ADDR_BLAKE2S, 32'hcafebabe);
|
||||
|
||||
$display("--- test4: Switch to app mode.");
|
||||
write_word(ADDR_SWITCH_APP, 32'hf00ff00f);
|
||||
write_word(ADDR_SYSTEM_MODE_CTRL, 32'hf00ff00f);
|
||||
|
||||
$display("--- test4: Write Blake2s entry point again.");
|
||||
write_word(ADDR_BLAKE2S, 32'hdeadbeef);
|
||||
|
@ -525,7 +525,7 @@ module tb_tk1 ();
|
|||
read_check_word(ADDR_APP_SIZE, 32'h47114711);
|
||||
|
||||
$display("--- test5: Switch to app mode.");
|
||||
write_word(ADDR_SWITCH_APP, 32'hf000000);
|
||||
write_word(ADDR_SYSTEM_MODE_CTRL, 32'hf000000);
|
||||
|
||||
$display("--- test5: Write app start address and size again.");
|
||||
write_word(ADDR_APP_START, 32'hdeadbeef);
|
||||
|
@ -564,7 +564,7 @@ module tb_tk1 ();
|
|||
dut.ram_addr_rand, dut.ram_data_rand);
|
||||
|
||||
$display("--- test6: Switch to app mode.");
|
||||
write_word(ADDR_SWITCH_APP, 32'hf000000);
|
||||
write_word(ADDR_SYSTEM_MODE_CTRL, 32'hf000000);
|
||||
|
||||
$display("--- test6: Write to ADDR_RAM_ADDR_RAND and ADDR_RAM_DATA_RAND again.");
|
||||
write_word(ADDR_RAM_ADDR_RAND, 32'hdeadbeef);
|
||||
|
|
|
@ -6,7 +6,7 @@ Unique Device Secret core
|
|||
|
||||
This core store and protect the Unique Device Secret (UDS) asset. The
|
||||
UDS can be accessed as eight separate 32-bit words. The words can only
|
||||
be accessed as long as the fw_app_mode input is low, implying that the
|
||||
be accessed as long as the system_mode input is low, implying that the
|
||||
CPU is executing the FW.
|
||||
|
||||
The UDS words can be accessed in any order, but a given word can only
|
||||
|
|
|
@ -17,7 +17,7 @@ module uds (
|
|||
input wire clk,
|
||||
input wire reset_n,
|
||||
|
||||
input wire fw_app_mode,
|
||||
input wire system_mode,
|
||||
|
||||
input wire cs,
|
||||
input wire [ 2 : 0] address,
|
||||
|
@ -89,7 +89,7 @@ module uds (
|
|||
if (cs) begin
|
||||
tmp_ready = 1'h1;
|
||||
|
||||
if (!fw_app_mode) begin
|
||||
if (!system_mode) begin
|
||||
if (uds_rd_reg[address[2 : 0]] == 1'h0) begin
|
||||
uds_rd_we = 1'h1;
|
||||
end
|
||||
|
|
|
@ -37,7 +37,7 @@ module tb_uds ();
|
|||
|
||||
reg tb_clk;
|
||||
reg tb_reset_n;
|
||||
reg tb_fw_app_mode;
|
||||
reg tb_system_mode;
|
||||
reg tb_cs;
|
||||
reg [ 7 : 0] tb_address;
|
||||
wire [31 : 0] tb_read_data;
|
||||
|
@ -50,7 +50,7 @@ module tb_uds ();
|
|||
.clk(tb_clk),
|
||||
.reset_n(tb_reset_n),
|
||||
|
||||
.fw_app_mode(tb_fw_app_mode),
|
||||
.system_mode(tb_system_mode),
|
||||
|
||||
.cs(tb_cs),
|
||||
.address(tb_address),
|
||||
|
@ -95,7 +95,7 @@ module tb_uds ();
|
|||
$display("State of DUT at cycle: %08d", cycle_ctr);
|
||||
$display("------------");
|
||||
$display("Inputs and outputs:");
|
||||
$display("fw_app_mode: 0x%1x", tb_fw_app_mode);
|
||||
$display("system_mode: 0x%1x", tb_system_mode);
|
||||
$display("cs: 0x%1x, address: 0x%02x, read_data: 0x%08x", tb_cs, tb_address, tb_read_data);
|
||||
$display("");
|
||||
|
||||
|
@ -160,7 +160,7 @@ module tb_uds ();
|
|||
|
||||
tb_clk = 1'h0;
|
||||
tb_reset_n = 1'h1;
|
||||
tb_fw_app_mode = 1'h0;
|
||||
tb_system_mode = 1'h0;
|
||||
tb_cs = 1'h0;
|
||||
tb_address = 8'h0;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue