/* SPDX-License-Identifier: GPL-2.0+ */
#ifndef __CF_FSI_FW_H
#define __CF_FSI_FW_H
/*
* uCode file layout
*
* 0000...03ff : m68k exception vectors
* 0400...04ff : Header info & boot config block
* 0500....... : Code & stack
*/
/*
* Header info & boot config area
*
* The Header info is built into the ucode and provide version and
* platform information.
*
* the Boot config needs to be adjusted by the ARM prior to starting
* the ucode if the Command/Status area isn't at 0x320000 in CF space
* (ie. beginning of SRAM).
*/
#define HDR_OFFSET 0 x400
/* Info: Signature & version */
#define HDR_SYS_SIG 0 x00 /* 2 bytes system signature */
#define SYS_SIG_SHARED 0 x5348
#define SYS_SIG_SPLIT 0 x5350
#define HDR_FW_VERS 0 x02 /* 2 bytes Major.Minor */
#define HDR_API_VERS 0 x04 /* 2 bytes Major.Minor */
#define API_VERSION_MAJ 2 /* Current version */
#define API_VERSION_MIN 1
#define HDR_FW_OPTIONS 0 x08 /* 4 bytes option flags */
#define FW_OPTION_TRACE_EN 0 x00000001 /* FW tracing enabled */
#define FW_OPTION_CONT_CLOCK 0 x00000002 /* Continuous clocking supported */
#define HDR_FW_SIZE 0 x10 /* 4 bytes size for combo image */
/* Boot Config: Address of Command/Status area */
#define HDR_CMD_STAT_AREA 0 x80 /* 4 bytes CF address */
#define HDR_FW_CONTROL 0 x84 /* 4 bytes control flags */
#define FW_CONTROL_CONT_CLOCK 0 x00000002 /* Continuous clocking enabled */
#define FW_CONTROL_DUMMY_RD 0 x00000004 /* Extra dummy read (AST2400) */
#define FW_CONTROL_USE_STOP 0 x00000008 /* Use STOP instructions */
#define HDR_CLOCK_GPIO_VADDR 0 x90 /* 2 bytes offset from GPIO base */
#define HDR_CLOCK_GPIO_DADDR 0 x92 /* 2 bytes offset from GPIO base */
#define HDR_DATA_GPIO_VADDR 0 x94 /* 2 bytes offset from GPIO base */
#define HDR_DATA_GPIO_DADDR 0 x96 /* 2 bytes offset from GPIO base */
#define HDR_TRANS_GPIO_VADDR 0 x98 /* 2 bytes offset from GPIO base */
#define HDR_TRANS_GPIO_DADDR 0 x9a /* 2 bytes offset from GPIO base */
#define HDR_CLOCK_GPIO_BIT 0 x9c /* 1 byte bit number */
#define HDR_DATA_GPIO_BIT 0 x9d /* 1 byte bit number */
#define HDR_TRANS_GPIO_BIT 0 x9e /* 1 byte bit number */
/*
* Command/Status area layout: Main part
*/
/* Command/Status register:
*
* +---------------------------+
* | STAT | RLEN | CLEN | CMD |
* | 8 | 8 | 8 | 8 |
* +---------------------------+
* | | | |
* status | | |
* Response len | |
* (in bits) | |
* | |
* Command len |
* (in bits) |
* |
* Command code
*
* Due to the big endian layout, that means that a byte read will
* return the status byte
*/
#define CMD_STAT_REG 0 x00
#define CMD_REG_CMD_MASK 0 x000000ff
#define CMD_REG_CMD_SHIFT 0
#define CMD_NONE 0 x00
#define CMD_COMMAND 0 x01
#define CMD_BREAK 0 x02
#define CMD_IDLE_CLOCKS 0 x03 /* clen = #clocks */
#define CMD_INVALID 0 xff
#define CMD_REG_CLEN_MASK 0 x0000ff00
#define CMD_REG_CLEN_SHIFT 8
#define CMD_REG_RLEN_MASK 0 x00ff0000
#define CMD_REG_RLEN_SHIFT 16
#define CMD_REG_STAT_MASK 0 xff000000
#define CMD_REG_STAT_SHIFT 24
#define STAT_WORKING 0 x00
#define STAT_COMPLETE 0 x01
#define STAT_ERR_INVAL_CMD 0 x80
#define STAT_ERR_INVAL_IRQ 0 x81
#define STAT_ERR_MTOE 0 x82
/* Response tag & CRC */
#define STAT_RTAG 0 x04
/* Response CRC */
#define STAT_RCRC 0 x05
/* Echo and Send delay */
#define ECHO_DLY_REG 0 x08
#define SEND_DLY_REG 0 x09
/* Command data area
*
* Last byte of message must be left aligned
*/
#define CMD_DATA 0 x10 /* 64 bit of data */
/* Response data area, right aligned, unused top bits are 1 */
#define RSP_DATA 0 x20 /* 32 bit of data */
/* Misc */
#define INT_CNT 0 x30 /* 32-bit interrupt count */
#define BAD_INT_VEC 0 x34 /* 32-bit bad interrupt vector # */
#define CF_STARTED 0 x38 /* byte, set to -1 when copro started */
#define CLK_CNT 0 x3c /* 32-bit, clock count (debug only) */
/*
* SRAM layout: GPIO arbitration part
*/
#define ARB_REG 0 x40
#define ARB_ARM_REQ 0 x01
#define ARB_ARM_ACK 0 x02
/* Misc2 */
#define CF_RESET_D0 0 x50
#define CF_RESET_D1 0 x54
#define BAD_INT_S0 0 x58
#define BAD_INT_S1 0 x5c
#define STOP_CNT 0 x60
/* Internal */
/*
* SRAM layout: Trace buffer (debug builds only)
*/
#define TRACEBUF 0 x100
#define TR_CLKOBIT0 0 xc0
#define TR_CLKOBIT1 0 xc1
#define TR_CLKOSTART 0 x82
#define TR_OLEN 0 x83 /* + len */
#define TR_CLKZ 0 x84 /* + count */
#define TR_CLKWSTART 0 x85
#define TR_CLKTAG 0 x86 /* + tag */
#define TR_CLKDATA 0 x87 /* + len */
#define TR_CLKCRC 0 x88 /* + raw crc */
#define TR_CLKIBIT0 0 x90
#define TR_CLKIBIT1 0 x91
#define TR_END 0 xff
#endif /* __CF_FSI_FW_H */
Messung V0.5 in Prozent C=94 H=94 G=93
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet am 2026-06-08)
¤
*© Formatika GbR, Deutschland