1 #ifndef EXCITE_FPGA_H_INCLUDED
2 #define EXCITE_FPGA_H_INCLUDED
6 * Address alignment of the individual FPGA bytes.
7 * The address arrangement of the individual bytes of the FPGA is two
8 * byte aligned at the embedded MK2 platform.
10 #ifdef EXCITE_CCI_FPGA_MK2
11 typedef unsigned char excite_cci_fpga_align_t __attribute__ ((aligned(2)));
13 typedef unsigned char excite_cci_fpga_align_t;
18 * Size of Dual Ported RAM.
20 #define EXCITE_DPR_SIZE 263
24 * Size of Reserved Status Fields in Dual Ported RAM.
26 #define EXCITE_DPR_STATUS_SIZE 7
32 * Hardware register layout of the FPGA interface. The FPGA must accessed
34 * @see EXCITE_CCI_DPR_MK2
36 typedef struct excite_fpga {
41 excite_cci_fpga_align_t dpr[EXCITE_DPR_SIZE];
46 excite_cci_fpga_align_t status[EXCITE_DPR_STATUS_SIZE];
48 #ifdef EXCITE_CCI_FPGA_MK2
51 * Write access initiates interrupt at the RM9000 (MIPS) processor of the eXcite.
53 excite_cci_fpga_align_t rm9k_int;
57 * Write access initiates interrupt at the ARM processor of the MK2.
59 excite_cci_fpga_align_t mk2_int;
61 excite_cci_fpga_align_t gap[0x1000-0x10f];
64 * IRQ Source/Acknowledge.
66 excite_cci_fpga_align_t rm9k_irq_src;
70 * Set bits enable the related interrupt.
72 excite_cci_fpga_align_t rm9k_irq_mask;
80 #endif /* ndef EXCITE_FPGA_H_INCLUDED */