qspixip (C-12) is an execute-in-place (XIP) QSPI/OSPI NOR-flash read controller delivered as synthesizable SystemVerilog soft-IP. It is delivered as a licensable soft-IP block engineered as an ASIL-B Safety Element out of Context — not just RTL, but the complete functional-safety work package needed to carry it into an ISO 26262 program:
qspi_xip (#C-12) is an execute-in-place (XIP) QSPI/OSPI NOR-flash read controller delivered as synthesizable SystemVerilog soft-IP.
JEDEC SPI-NOR (xSPI), SFDP
ASIL-B (SEooC) · SPFM 94.50% · LFM 89.52% · PASS
ISO 26262:2018 · FMEDA available · Safety Manual included
| Offset | Register | Description |
|---|---|---|
0x00 | CR | [0]=EN [1]=INTEG_EN [3:2]=IOW(0=x1/1=x2/2=x4) [4]=ADDR4B(0=3B/1=4B) [5]=RANGE_EN |
0x04 | CMDR | [7:0]=READ_OPCODE (e.g. 0x03 single, 0xEB quad) [12:8]=DUMMY (dummy SCK cycles) |
0x08 | DIVR | [7:0]=SCK half-period in clk cycles; SCK = clk/(2*(DIVR+1)) |
0x0C | BASER | [31:0]=range base address (plausibility low bound, RANGE_EN) |
0x10 | LIMITR | [31:0]=range limit address (plausibility high bound, RANGE_EN) |
…2 more registers — see datasheet for the full table.
// Minimal instantiation
qspi_xip #(
.ADDR_W(6)
) u_qspi_xip (
.clk (clk),
.rst_n (rst_n),
// APB4
.p_paddr (paddr),
.p_psel (psel),
.p_penable (penable),
.p_pwrite (pwrite),
.p_pwdata (pwdata),
.p_prdata (prdata),
.p_pready (pready),
// Safety
.err_clear (1'b0),
.err_valid (err_valid),
.err_code (err_code)
);Configure via the CTRL register after reset to enable the IP and set operating parameters. Monitor err_valid / err_code for any safety faults reported by the built-in safety monitor.
Typically deployed in in-vehicle networks, industrial gateways, and sensor/actuator links where a bus controller has to carry its own safety argument.
Pricing, the per-IP FMEDA, safety manual, and RTL data room are shared under a mutual NDA.
Figures are pre-silicon engineering-grade estimates for a Safety Element out of Context (SEooC); final ASIL sign-off is the integrator’s, supported under NDA. FMEDA and Safety Manual available under NDA.
circuit-design.space · +1-971-357-1400 · sales@circuit-design.space