title: Designing your instruction set
summary: >-
Which bits you own, how the dispatch path delivers them, how completion and
faults come back, and how to keep an encoding a compiler can emit.
tags:
- integrate
- isa
- guide
Designing your instruction set
Kind: mixed. The envelope in Β§2, the dispatch path in Β§3 and the completion protocol in Β§4 are fixed protocol. Everything in Β§5 β where to put an opcode, how to overlap fields, what zero should mean β is convention, and free: nothing checks any of it, and the payload bits it is about are yours. Β§6 is one project's worked example.
The framework carries instructions to your unit and completions back. It has no opinion about what an instruction means β that is the whole point. What it does have is an envelope, a delivery mechanism with a shape, and a completion protocol you have to fit into.
This page is about spending the bits well. The normative field allocation is spec/instruction-encoding.md; the flit layout around it is spec/flit-format.md.
1. You are not designing an ISA from scratch
The instruction space is shared. Three parties own bits, and only the third is yours:
| owner | what it defines | you |
|---|---|---|
kohakuaccel/noc |
the flit header: routing, message class, transaction id, batch marker | obey it |
| the system node | the memory instruction set: read and write descriptors, streaming fetches, entry geometry, multicast, and the memory mover's commands | use it |
| you | the CU_INST payload: what your unit computes |
define it |
The whole 256-bit payload is yours, with no framework-reserved region inside
it. noc_pkt.vh declares a substructure (NOC_INST_LEN, NOC_INST_CLASS)
that no module reads and that describes a multi-flit mechanism the framework does
not implement; spec/instruction-encoding.md Β§5
settles that in favour of the silicon and Β§7 there records the divergence. Spend
the payload from bit 255 downward as you like.
The middle row is the one that changes how you should think about this page. The memory agent already has an instruction set, and it is a good one β it expresses "fetch this run of entries and deliver each response tagged with where it goes". Those are instructions you will issue, not instructions you have to invent. Your ISA sits on top of a memory ISA that already works.
Practically, that means: before designing an opcode, find out what the memory protocol already does for you. Streaming fetches, per-request entry geometry, multi-destination delivery of one fetch, burst writes with one descriptor β all of these exist, and an opcode that reimplements one is an opcode you will regret. Read spec/memory-protocol.md before this page's Β§5.
Format conversion is not on that list, and a unit cannot ask for it. A fetch is never transformed: operands reach a unit in their final format, converted beforehand by a mover move through the transform slot. So an opcode does not carry a conversion flag, and a unit that finds itself wanting one is describing a mover pass its compiler should have scheduled.
There is a fourth instruction set above all of them, and it is worth knowing about even though you will not extend it: the host's control program β three opcodes, write, poll and done, executed by a small engine so that a whole run is one host transaction and the host is not in the loop per poll. That is the layer your driver emits into, and it is software-stack.md Β§3.
Each layer is narrower than the one above and none can express the one below. That is deliberate: the control program cannot branch, so your compiler unrolls; your unit cannot walk DRAM affinely, so it hands the memory agent a descriptor; and the memory agent has no idea what the bytes mean, which is why the transform stage is a slot rather than a feature (what-you-own.md Β§2).
1.1 And there may be a fifth: a processor in the node
The system node ships a control processor, and CPU_RV64
(spec/parameters.md Β§5) chooses which. Set, it is an
RV64IMA machine with Sv39 translation, an L1 onto DRAM, a scratchpad and the
memory mover as its memory unit β a full instruction set, and one you do not
design, extend or encode into. You target it with a RISC-V toolchain.
Two things follow for your unit's ISA, and only two:
- Nothing changes about your encoding. The RV64 complex has no compute-unit
shell: it is not on the mesh, it issues no
CU_INST, and it does not dispatch to you. Your instructions still arrive from the orchestrator, addressed and credited exactly as Β§3 describes. The five instruction sets do not overlap. - The layering argument above gains a rung, and it runs the other way. The control program cannot branch and your unit cannot walk memory; a processor in the node can do both. Work that would otherwise be a host round trip β deciding what to move next, reacting to a fault β has somewhere on-card it could live. Whether it should is a scheduling question for your compiler, not an encoding one.
Do not plan a kernel around it yet. CPU_RV64 defaults to 0, and in the
non-default branch the processor's mesh port is tied off in both directions: it
originates no flit and a flit sent to it is discarded. It can drive the mover and
touch memory; it cannot dispatch to your unit or sequence two units against each
other. That is the host's job in both configurations today.
spec/parameters.md Β§5 lists what the branch leaves
unconnected.
The register surfaces are spec/control-registers.md Β§6βΒ§7; the architecture is arch/cpu/rv64-sys/; and the reason the node has two processors at all is arch/cpu/.
2. The envelope
An instruction is one flit: a routing header, then a payload that is yours.
βββββββββββββββββ header: the framework's βββββββββββββββββ¬βββ payload ββββ
β dst_x dst_y src_x src_y type txn_id last rsvd β yours β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ΄ββββββββββββββββ
| field | who sets it | what it does |
|---|---|---|
dst_x, dst_y |
the dispatcher, from PROG_DST |
routes the flit. Overwritten in flight; whatever you staged there is discarded |
src_x, src_y |
the dispatcher, its own coordinates | where the completion goes. Your unit never has to know the orchestrator's address |
type |
you, and it must be CU_INST |
how the receiving unit separates instructions from everything else |
txn_id |
you | an 8-bit program id. Reported back verbatim on a batch completion |
last |
you | marks the final instruction of a batch |
rsvd |
reserved on CU_INST |
other message classes use it; do not |
| payload | you, all of it | your opcode and operands |
Two consequences worth internalising before you design anything:
An instruction is one flit, so it is one payload wide. There is no multi-flit instruction. If your operation needs more state than fits, split it: send setup instructions that load state into the unit, then an instruction that runs. That is what KohakuTPU's vector core does β two of its three opcodes exist only to load state.
You do not choose the destination in the encoding. The destination comes from a control register, and one dispatch goes to one unit. Work for four units is four dispatches. If you want an instruction that fans out, you encode the peer set in the payload and let each unit work out its own role β see Β§5.
3. How the bits reach your unit
host orchestrator mesh unit
ββββ ββββββββββββ ββββ ββββ
write payload words ββΊ staging RAM
write PROG_DST (destination)
write PROG_BASE (first staging slot)
write PROG_LEN (how many flits)
write PROG_CRED (credit seed)
write PROG_KICK ββΊ dispatcher
reads words, assembles a flit,
stamps dst from PROG_DST and
src from its own coordinates ββΊ routers ββΊ inst FIFO
β
NODE_STATUS ββ CU_SIGNAL ββ routers βββββββββββ
SIG_DONE++
Three properties of this path constrain an ISA design:
Dispatch is credit-controlled, and a completion is what returns a credit. The
dispatcher will not push more instructions than the unit has published room for.
An instruction that executes without a completion permanently consumes one
credit, and the machine stalls later with nothing to point at. This is why
exec_done is not optional and not best-effort.
A caution for the host side: a batch completion β the one produced by the instruction whose
lastbit is set β carries a different signal code and does not refill a credit. Credits are re-seeded per round by writingPROG_CRED, not accumulated indefinitely. See software-stack.md Β§3.
Order is preserved to one unit, and only to one unit. Instructions arrive at a unit in the order they were staged. Between two units there is no ordering at all β different dispatches, different routes. Anything that has to happen after something else on another unit is a host-side or compiler-side barrier, not an encoding feature.
The staging buffer is single-use while a dispatch runs. The dispatcher streams out of it as it goes, so refilling before the dispatch drains corrupts the program in flight. Waiting for the dispatch to drain is not the same as waiting for the unit to finish executing β the unit keeps working while the next program is staged, and that overlap is where the concurrency comes from.
The control-register names above are spec/control-registers.md.
4. Completion and faults
Your datapath drives three signals and the framework turns them into one signal flit:
| you drive | the framework sends | arg carries |
|---|---|---|
exec_done, last bit clear |
SIG_INST_COMPLETE |
your exec_result |
exec_done, last bit set |
SIG_BATCH_COMPLETE |
the program id from txn_id |
exec_done with exec_fault |
SIG_FAULT |
your exec_result |
A fault reports your result rather than the program id, on the grounds that why
it failed is more useful than which batch it was in β the host already knows
the batch from which node signalled. If you need both, encode the batch into
your own exec_result.
exec_result is 32 bits and is entirely yours. Real uses in the tree: a cycle
count for a program that ran, a fault code, a running count of instructions
retired by kind. Choose something that makes a wrong answer diagnosable, not
something that merely confirms success.
Faults are per instruction, not sticky. If a condition is detected
asynchronously β a malformed inbound stream, say, arriving between instructions β
latch it and report it once at the next instruction boundary, then clear.
mx_cluster_cu does exactly that, and its comment gives the reason: a malformed
burst should be one fault, not a unit that faults forever.
On the host side, signals do not queue: the orchestrator absorbs each one into a per-node status word (with a counter, so a host polling slower than events arrive can tell how many it missed) and increments a single global completion count. Queueing them was tried and is a deadlock: unread signals fill the receive FIFO, raise the orchestrator's busy line, and stop it accepting the very signals that return credits.
5. Making the encoding compiler-friendly
Every rule below is a decision visible in the tree, with the failure it prevents.
Fixed field positions. No variable-length encoding. A decode is a wire slice with no state:
wire [3:0] i_op = inst_flit[255 -: 4];
wire [33:0] i_addr = inst_flit[251 -: 34];
Anything else costs a decoder and buys nothing β you are not fighting for instruction cache space.
Opcode at the top of the payload. Both production units put it at
[255:252]. It makes the opcode readable at a glance in a hex dump of a staged
flit, which is a real debugging advantage when the only view you have is a
register window.
Overlap fields by role, not by opcode. Give one bit range one role β a
base address, a count β and let the opcode decide what it is the base of. Then
the hardware slices unconditionally and the encoder writes fields by name. In
KohakuTPU's cluster ISA, addr is the operand base for a fill and the
destination base for a drain, and n is entries in one case and sub-tiles in the
other; the decode wires do not branch.
Zero must mean the behaviour that existed before the field did. This is the single most valuable property for an ISA that will grow. In the cluster ISA, a drain sends to memory when its node-destination bit is zero, addresses the lower bank when its bank bits are zero, and is local when its remote-mesh field is zero β so every instruction word emitted before those fields existed still means what it meant. Old machine code stays valid, old recorded traces stay comparable, and a partially updated compiler produces the old machine rather than an undefined one.
Size the field for the worst case, not the common one. A count field that silently wraps produces a plausible wrong answer: in the cluster ISA the drain count is 16 bits because the resident tile can hold more sub-tiles than eight bits can express, and an 8-bit field would have silently re-drained the start of the tile. Widen the field and move everything below it; do not overlay it on a neighbour.
One field, one fact. Where a field is copied verbatim into something else β a descriptor's flag byte, say β do not borrow spare bits of it for an unrelated purpose. The cluster ISA gives the acknowledgement destination its own field for exactly this reason.
Decode derived decisions once, into a register. If a control decision is an arithmetic function of instruction fields, compute it at decode time and register it. Computed combinationally, a multiply of two instruction fields feeding a state machine's clock enable became the worst path in the unit.
Do not encode what the unit can derive. A shared fetch in the cluster ISA names every unit in the sharing set, and each unit independently decides whether it leads by comparing its own coordinate against the set. The compiler hands every participant the same bits; nobody negotiates, and there is no "am I the leader" bit that a compiler could get wrong for one member and right for another.
6. Worked example: KohakuTPU's cluster ISA
This section describes one project built on the framework, not the framework. It is here because it exercises every rule above.
src/kohakutpu/matmul/mx_cluster_cu.v has three opcodes in the top nibble:
| op | means | principal fields |
|---|---|---|
FILL |
fetch operand entries into local memory | base address (split across two fields), count, which operand, destination offset, bank, peer set |
GEMM |
sweep the loaded operands into the resident output tile | group counts, K blocks, accumulate flag, per-side offsets and banks, emit flag |
DRAIN |
write the resident tile out | destination base, sub-tile count, fused flag, node-or-memory, destination node, buffer id, flags, acknowledgement node, remote mesh |
The instructive parts:
FILLis a descriptor, not a loop. One instruction becomes one request flit, and the memory agent returns the whole run. The unit places words as they arrive and counts entries completed; it has no address cursor.FILLused to select a read-path transform, and the bit is now reserved. It said whether the operand in DRAM was already in the datapath's format or needed converting on the way out. A fetch is never transformed now β the slot moved onto the memory mover's read return, where a conversion is paid once per tensor rather than once per read β so the cluster drives the bit to zero and decodes nothing. The instructive part survives the change: the bit was a project's, the module behind it was a project's, and the mechanism carrying both was the framework's. That is still how the mover'sXFORM_IDworks, one layer down.FILL's address is SPLIT across two fields,[251:218]and[68:63]. Widening from 34 bits to 40 that way moved no other field and left every older encoding meaning what it meant β and it means a reader must rejoin them, or a staging or remote address decodes as local DRAM at the same offset.GEMMretires on issue. The sweep runs behind the sequencer, so holding the instruction would only stop the unit filling the other half of its operand memory β which is why the operand memory is addressable rather than double-buffered by hardware.DRAINretires when the last write has left the unit, not when the arithmetic stops. Retiring earlier reports completion ahead of the memory traffic it stands for, which is harmless right up until a later step reads what an earlier one wrote.acc,emitandfuseare one bit each and each removes a whole instruction.acclets one output tile span several instructions, so a reduction longer than local memory becomes expressible.emitstreams results out during the sweep andfuseturns the following drain into a barrier that waits for them rather than a second pass. These are the encoding paying for itself: a bit in an existing instruction instead of a new opcode.
src/kohakutpu/vector/vec_cu.v is a deliberately different shape β the second
worked example, and the useful one to read if your unit runs programs rather
than macro-ops:
| op | means |
|---|---|
IMEM |
write one word of the unit's instruction memory |
DESC |
set one field of one descriptor |
RUN |
start at a program counter; retires when the kernel halts, reporting its cycle count |
The whole ISA is three opcodes because the interesting instruction set is the one inside the unit, which the framework never sees. The framework-level ISA exists only to stage it and kick it. If your unit is programmable, this is the shape: the framework's instruction is a launch, not an operation.
7. Open questions
txn_idis 8 bits and serves two purposes. OnCU_INSTit is the program id reported by a batch completion; on other message classes units use it as a tag they chose. Nothing enforces that a program id is unique across in-flight batches to the same node.- There is no framework-side assembler, disassembler or encoding description. Every project writes its own encoder in Python and its own decode in Verilog, and nothing checks that the two agree except a test that compares emitted bytes against a second implementation. A machine-readable field description, with both sides generated from it, is the obvious fix and does not exist. See software-stack.md Β§6.
- Multi-destination dispatch is a host-side loop. One kick is one destination. Whether the dispatcher should learn a destination list, or whether fan-out belongs in the encoding as it does for shared fetches, is undecided.