Path: blob/master/arch/m68k/include/asm/apollodma.h
10820 views
/*1* linux/include/asm/dma.h: Defines for using and allocating dma channels.2* Written by Hennus Bergman, 1992.3* High DMA channel support & info by Hannu Savolainen4* and John Boyd, Nov. 1992.5*/67#ifndef _ASM_APOLLO_DMA_H8#define _ASM_APOLLO_DMA_H910#include <asm/apollohw.h> /* need byte IO */11#include <linux/spinlock.h> /* And spinlocks */12#include <linux/delay.h>131415#define dma_outb(val,addr) (*((volatile unsigned char *)(addr+IO_BASE)) = (val))16#define dma_inb(addr) (*((volatile unsigned char *)(addr+IO_BASE)))1718/*19* NOTES about DMA transfers:20*21* controller 1: channels 0-3, byte operations, ports 00-1F22* controller 2: channels 4-7, word operations, ports C0-DF23*24* - ALL registers are 8 bits only, regardless of transfer size25* - channel 4 is not used - cascades 1 into 2.26* - channels 0-3 are byte - addresses/counts are for physical bytes27* - channels 5-7 are word - addresses/counts are for physical words28* - transfers must not cross physical 64K (0-3) or 128K (5-7) boundaries29* - transfer count loaded to registers is 1 less than actual count30* - controller 2 offsets are all even (2x offsets for controller 1)31* - page registers for 5-7 don't use data bit 0, represent 128K pages32* - page registers for 0-3 use bit 0, represent 64K pages33*34* DMA transfers are limited to the lower 16MB of _physical_ memory.35* Note that addresses loaded into registers must be _physical_ addresses,36* not logical addresses (which may differ if paging is active).37*38* Address mapping for channels 0-3:39*40* A23 ... A16 A15 ... A8 A7 ... A0 (Physical addresses)41* | ... | | ... | | ... |42* | ... | | ... | | ... |43* | ... | | ... | | ... |44* P7 ... P0 A7 ... A0 A7 ... A045* | Page | Addr MSB | Addr LSB | (DMA registers)46*47* Address mapping for channels 5-7:48*49* A23 ... A17 A16 A15 ... A9 A8 A7 ... A1 A0 (Physical addresses)50* | ... | \ \ ... \ \ \ ... \ \51* | ... | \ \ ... \ \ \ ... \ (not used)52* | ... | \ \ ... \ \ \ ... \53* P7 ... P1 (0) A7 A6 ... A0 A7 A6 ... A054* | Page | Addr MSB | Addr LSB | (DMA registers)55*56* Again, channels 5-7 transfer _physical_ words (16 bits), so addresses57* and counts _must_ be word-aligned (the lowest address bit is _ignored_ at58* the hardware level, so odd-byte transfers aren't possible).59*60* Transfer count (_not # bytes_) is limited to 64K, represented as actual61* count - 1 : 64K => 0xFFFF, 1 => 0x0000. Thus, count is always 1 or more,62* and up to 128K bytes may be transferred on channels 5-7 in one operation.63*64*/6566#define MAX_DMA_CHANNELS 86768/* The maximum address that we can perform a DMA transfer to on this platform */#define MAX_DMA_ADDRESS (PAGE_OFFSET+0x1000000)6970/* 8237 DMA controllers */71#define IO_DMA1_BASE 0x10C00 /* 8 bit slave DMA, channels 0..3 */72#define IO_DMA2_BASE 0x10D00 /* 16 bit master DMA, ch 4(=slave input)..7 */7374/* DMA controller registers */75#define DMA1_CMD_REG (IO_DMA1_BASE+0x08) /* command register (w) */76#define DMA1_STAT_REG (IO_DMA1_BASE+0x08) /* status register (r) */77#define DMA1_REQ_REG (IO_DMA1_BASE+0x09) /* request register (w) */78#define DMA1_MASK_REG (IO_DMA1_BASE+0x0A) /* single-channel mask (w) */79#define DMA1_MODE_REG (IO_DMA1_BASE+0x0B) /* mode register (w) */80#define DMA1_CLEAR_FF_REG (IO_DMA1_BASE+0x0C) /* clear pointer flip-flop (w) */81#define DMA1_TEMP_REG (IO_DMA1_BASE+0x0D) /* Temporary Register (r) */82#define DMA1_RESET_REG (IO_DMA1_BASE+0x0D) /* Master Clear (w) */83#define DMA1_CLR_MASK_REG (IO_DMA1_BASE+0x0E) /* Clear Mask */84#define DMA1_MASK_ALL_REG (IO_DMA1_BASE+0x0F) /* all-channels mask (w) */8586#define DMA2_CMD_REG (IO_DMA2_BASE+0x10) /* command register (w) */87#define DMA2_STAT_REG (IO_DMA2_BASE+0x10) /* status register (r) */88#define DMA2_REQ_REG (IO_DMA2_BASE+0x12) /* request register (w) */89#define DMA2_MASK_REG (IO_DMA2_BASE+0x14) /* single-channel mask (w) */90#define DMA2_MODE_REG (IO_DMA2_BASE+0x16) /* mode register (w) */91#define DMA2_CLEAR_FF_REG (IO_DMA2_BASE+0x18) /* clear pointer flip-flop (w) */92#define DMA2_TEMP_REG (IO_DMA2_BASE+0x1A) /* Temporary Register (r) */93#define DMA2_RESET_REG (IO_DMA2_BASE+0x1A) /* Master Clear (w) */94#define DMA2_CLR_MASK_REG (IO_DMA2_BASE+0x1C) /* Clear Mask */95#define DMA2_MASK_ALL_REG (IO_DMA2_BASE+0x1E) /* all-channels mask (w) */9697#define DMA_ADDR_0 (IO_DMA1_BASE+0x00) /* DMA address registers */98#define DMA_ADDR_1 (IO_DMA1_BASE+0x02)99#define DMA_ADDR_2 (IO_DMA1_BASE+0x04)100#define DMA_ADDR_3 (IO_DMA1_BASE+0x06)101#define DMA_ADDR_4 (IO_DMA2_BASE+0x00)102#define DMA_ADDR_5 (IO_DMA2_BASE+0x04)103#define DMA_ADDR_6 (IO_DMA2_BASE+0x08)104#define DMA_ADDR_7 (IO_DMA2_BASE+0x0C)105106#define DMA_CNT_0 (IO_DMA1_BASE+0x01) /* DMA count registers */107#define DMA_CNT_1 (IO_DMA1_BASE+0x03)108#define DMA_CNT_2 (IO_DMA1_BASE+0x05)109#define DMA_CNT_3 (IO_DMA1_BASE+0x07)110#define DMA_CNT_4 (IO_DMA2_BASE+0x02)111#define DMA_CNT_5 (IO_DMA2_BASE+0x06)112#define DMA_CNT_6 (IO_DMA2_BASE+0x0A)113#define DMA_CNT_7 (IO_DMA2_BASE+0x0E)114115#define DMA_MODE_READ 0x44 /* I/O to memory, no autoinit, increment, single mode */116#define DMA_MODE_WRITE 0x48 /* memory to I/O, no autoinit, increment, single mode */117#define DMA_MODE_CASCADE 0xC0 /* pass thru DREQ->HRQ, DACK<-HLDA only */118119#define DMA_AUTOINIT 0x10120121#define DMA_8BIT 0122#define DMA_16BIT 1123#define DMA_BUSMASTER 2124125extern spinlock_t dma_spin_lock;126127static __inline__ unsigned long claim_dma_lock(void)128{129unsigned long flags;130spin_lock_irqsave(&dma_spin_lock, flags);131return flags;132}133134static __inline__ void release_dma_lock(unsigned long flags)135{136spin_unlock_irqrestore(&dma_spin_lock, flags);137}138139/* enable/disable a specific DMA channel */140static __inline__ void enable_dma(unsigned int dmanr)141{142if (dmanr<=3)143dma_outb(dmanr, DMA1_MASK_REG);144else145dma_outb(dmanr & 3, DMA2_MASK_REG);146}147148static __inline__ void disable_dma(unsigned int dmanr)149{150if (dmanr<=3)151dma_outb(dmanr | 4, DMA1_MASK_REG);152else153dma_outb((dmanr & 3) | 4, DMA2_MASK_REG);154}155156/* Clear the 'DMA Pointer Flip Flop'.157* Write 0 for LSB/MSB, 1 for MSB/LSB access.158* Use this once to initialize the FF to a known state.159* After that, keep track of it. :-)160* --- In order to do that, the DMA routines below should ---161* --- only be used while holding the DMA lock ! ---162*/163static __inline__ void clear_dma_ff(unsigned int dmanr)164{165if (dmanr<=3)166dma_outb(0, DMA1_CLEAR_FF_REG);167else168dma_outb(0, DMA2_CLEAR_FF_REG);169}170171/* set mode (above) for a specific DMA channel */172static __inline__ void set_dma_mode(unsigned int dmanr, char mode)173{174if (dmanr<=3)175dma_outb(mode | dmanr, DMA1_MODE_REG);176else177dma_outb(mode | (dmanr&3), DMA2_MODE_REG);178}179180/* Set transfer address & page bits for specific DMA channel.181* Assumes dma flipflop is clear.182*/183static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a)184{185if (dmanr <= 3) {186dma_outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE );187dma_outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE );188} else {189dma_outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE );190dma_outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE );191}192}193194195/* Set transfer size (max 64k for DMA1..3, 128k for DMA5..7) for196* a specific DMA channel.197* You must ensure the parameters are valid.198* NOTE: from a manual: "the number of transfers is one more199* than the initial word count"! This is taken into account.200* Assumes dma flip-flop is clear.201* NOTE 2: "count" represents _bytes_ and must be even for channels 5-7.202*/203static __inline__ void set_dma_count(unsigned int dmanr, unsigned int count)204{205count--;206if (dmanr <= 3) {207dma_outb( count & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE );208dma_outb( (count>>8) & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE );209} else {210dma_outb( (count>>1) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE );211dma_outb( (count>>9) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE );212}213}214215216/* Get DMA residue count. After a DMA transfer, this217* should return zero. Reading this while a DMA transfer is218* still in progress will return unpredictable results.219* If called before the channel has been used, it may return 1.220* Otherwise, it returns the number of _bytes_ left to transfer.221*222* Assumes DMA flip-flop is clear.223*/224static __inline__ int get_dma_residue(unsigned int dmanr)225{226unsigned int io_port = (dmanr<=3)? ((dmanr&3)<<1) + 1 + IO_DMA1_BASE227: ((dmanr&3)<<2) + 2 + IO_DMA2_BASE;228229/* using short to get 16-bit wrap around */230unsigned short count;231232count = 1 + dma_inb(io_port);233count += dma_inb(io_port) << 8;234235return (dmanr<=3)? count : (count<<1);236}237238239/* These are in kernel/dma.c: */240extern int request_dma(unsigned int dmanr, const char * device_id); /* reserve a DMA channel */241extern void free_dma(unsigned int dmanr); /* release it again */242243/* These are in arch/m68k/apollo/dma.c: */244extern unsigned short dma_map_page(unsigned long phys_addr,int count,int type);245extern void dma_unmap_page(unsigned short dma_addr);246247#endif /* _ASM_APOLLO_DMA_H */248249250