This page assumes nothing. Every letter, arrow, and word used in the parent note is built here from the ground up, in an order where each idea leans only on the ones before it.
Before any letters appear, picture what a chip is. A chip is a slab of silicon covered in billions of tiny switches called transistors. On their own they are meaningless — they only do something useful once they are wired into patterns that add, compare, and remember numbers.
The picture below shows this ladder: switches → gates → circuit.
Why the topic needs this: the whole note is about publishing the wiring diagram of these gates. To understand "open the design", you first need to know the design is this pattern of gates — nothing more mystical than a very large, very small electrical drawing.
Nobody draws a billion gates by hand. Engineers describe the wiring in a text language, and a program lays out the gates automatically — exactly like a programmer writes code and a compiler produces the machine instructions.
Why the topic needs this: the parent's definition of open hardware is literally "the RTL is published under a permissive license." Without knowing what RTL is, that sentence is empty.
See FPGA & RTL Verification for how RTL gets tested and turned into a real device.
The "R" in RISC-V and OpenRISC stands for RISC: Reduced Instruction Set Computer. One design choice from RISC drives a formula in the parent note, so we build it now.
Now the letters. We want a formula, so we must first name the quantities:
Why the topic needs this: the parent uses Bytes=4N and PCnext=PC+4; both are meaningless until N, w, byte, and PC are defined.
A fingerprint alone proves the data hasn't changed since the fingerprint was taken — but an attacker could replace both the image and its fingerprint. We need proof the fingerprint came from the real vendor. That is what a signature adds.
The figure below shows integrity (hash) versus authenticity (signature) side by side.
Every "verify" needs a trusted copy of pk. Where does that live so an attacker can't swap it? In fuses that can be written once and never rewritten.
Why the topic needs all of 5: the parent's secure-boot formula mi=H(Ii) and Verifypk(σi,mi)=true uses H, m, I, σ, pk, subscripts i, and "fuses" — every one is defined above.
The parent writes Ii, mi, σi with a little i. That subscript is just a stage counter: i=0 is the first boot stage, i=1 the next, and so on. "Stage i verifies stage i+1 before running it" is the chain of trust — an unbroken line of vouchers from the fused key up to the operating system.