#ifndef __NUBUSFPGARAMDSKDRVR_H__ #define __NUBUSFPGARAMDSKDRVR_H__ #include #include #include #include #include #include #define ENABLE_DMA 1 #include "NuBusFPGADrvr.h" struct RAMDrvContext { DrvSts2 drvsts; char slot; #ifdef ENABLE_DMA unsigned int dma_blk_size; unsigned int dma_blk_size_mask; unsigned int dma_blk_size_shift; unsigned long dma_blk_base; unsigned long dma_mem_size; #endif }; #define DRIVE_SIZE_BYTES ((256ul-8ul)*1024ul*1024ul) // FIXME: mem size minus fb size #ifdef ENABLE_DMA /* FIXME; should be auto-generated for CSR addresses... */ /* WARNING: 0x00100800 is the offset to GOBOFB_BASE !! */ #define DMA_BLK_SIZE (0x00100800 | 0x00) #define DMA_BLK_BASE (0x00100800 | 0x04) #define DMA_MEM_SIZE (0x00100800 | 0x08) //#define DMA_IRQ_CTL (0x00a00800 | 0x0c) // IRQ not connected #define DMA_BLK_ADDR (0x00100800 | 0x10) #define DMA_DMA_ADDR (0x00100800 | 0x14) #define DMA_BLK_CNT (0x00100800 | 0x18) #define DMA_STATUS (0x00100800 | 0x2c) #define DMA_STATUS_CHECK_BITS (0x01F) #endif uint32_t rledec(uint32_t* out, const uint32_t* in, const uint32_t len); #endif