/* SPDX-License-Identifier: GPL-2.0 */1/*2* include/asm-alpha/dma.h3*4* This is essentially the same as the i386 DMA stuff, as the AlphaPCs5* use ISA-compatible dma. The only extension is support for high-page6* registers that allow to set the top 8 bits of a 32-bit DMA address.7* This register should be written last when setting up a DMA address8* as this will also enable DMA across 64 KB boundaries.9*/1011/* $Id: dma.h,v 1.7 1992/12/14 00:29:34 root Exp root $12* linux/include/asm/dma.h: Defines for using and allocating dma channels.13* Written by Hennus Bergman, 1992.14* High DMA channel support & info by Hannu Savolainen15* and John Boyd, Nov. 1992.16*/1718#ifndef _ASM_DMA_H19#define _ASM_DMA_H2021#include <linux/spinlock.h>22#include <asm/io.h>2324#define dma_outb outb25#define dma_inb inb2627/*28* NOTES about DMA transfers:29*30* controller 1: channels 0-3, byte operations, ports 00-1F31* controller 2: channels 4-7, word operations, ports C0-DF32*33* - ALL registers are 8 bits only, regardless of transfer size34* - channel 4 is not used - cascades 1 into 2.35* - channels 0-3 are byte - addresses/counts are for physical bytes36* - channels 5-7 are word - addresses/counts are for physical words37* - transfers must not cross physical 64K (0-3) or 128K (5-7) boundaries38* - transfer count loaded to registers is 1 less than actual count39* - controller 2 offsets are all even (2x offsets for controller 1)40* - page registers for 5-7 don't use data bit 0, represent 128K pages41* - page registers for 0-3 use bit 0, represent 64K pages42*43* DMA transfers are limited to the lower 16MB of _physical_ memory.44* Note that addresses loaded into registers must be _physical_ addresses,45* not logical addresses (which may differ if paging is active).46*47* Address mapping for channels 0-3:48*49* A23 ... A16 A15 ... A8 A7 ... A0 (Physical addresses)50* | ... | | ... | | ... |51* | ... | | ... | | ... |52* | ... | | ... | | ... |53* P7 ... P0 A7 ... A0 A7 ... A054* | Page | Addr MSB | Addr LSB | (DMA registers)55*56* Address mapping for channels 5-7:57*58* A23 ... A17 A16 A15 ... A9 A8 A7 ... A1 A0 (Physical addresses)59* | ... | \ \ ... \ \ \ ... \ \60* | ... | \ \ ... \ \ \ ... \ (not used)61* | ... | \ \ ... \ \ \ ... \62* P7 ... P1 (0) A7 A6 ... A0 A7 A6 ... A063* | Page | Addr MSB | Addr LSB | (DMA registers)64*65* Again, channels 5-7 transfer _physical_ words (16 bits), so addresses66* and counts _must_ be word-aligned (the lowest address bit is _ignored_ at67* the hardware level, so odd-byte transfers aren't possible).68*69* Transfer count (_not # bytes_) is limited to 64K, represented as actual70* count - 1 : 64K => 0xFFFF, 1 => 0x0000. Thus, count is always 1 or more,71* and up to 128K bytes may be transferred on channels 5-7 in one operation.72*73*/7475#define MAX_DMA_CHANNELS 87677/*78ISA DMA limitations on Alpha platforms,7980These may be due to SIO (PCI<->ISA bridge) chipset limitation, or81just a wiring limit.82*/8384/* The maximum address for ISA DMA transfer on RUFFIAN,85due to an hardware SIO limitation, is 16MB.86*/87#define ALPHA_RUFFIAN_MAX_ISA_DMA_ADDRESS 0x01000000UL8889/* The maximum address for ISA DMA transfer on SABLE, and some ALCORs,90due to an hardware SIO chip limitation, is 2GB.91*/92#define ALPHA_SABLE_MAX_ISA_DMA_ADDRESS 0x80000000UL93#define ALPHA_ALCOR_MAX_ISA_DMA_ADDRESS 0x80000000UL9495/*96Maximum address for all the others is the complete 32-bit bus97address space.98*/99#define ALPHA_MAX_ISA_DMA_ADDRESS 0x100000000UL100101#ifdef CONFIG_ALPHA_GENERIC102# define MAX_ISA_DMA_ADDRESS (alpha_mv.max_isa_dma_address)103#else104# if defined(CONFIG_ALPHA_RUFFIAN)105# define MAX_ISA_DMA_ADDRESS ALPHA_RUFFIAN_MAX_ISA_DMA_ADDRESS106# elif defined(CONFIG_ALPHA_SABLE)107# define MAX_ISA_DMA_ADDRESS ALPHA_SABLE_MAX_ISA_DMA_ADDRESS108# elif defined(CONFIG_ALPHA_ALCOR)109# define MAX_ISA_DMA_ADDRESS ALPHA_ALCOR_MAX_ISA_DMA_ADDRESS110# else111# define MAX_ISA_DMA_ADDRESS ALPHA_MAX_ISA_DMA_ADDRESS112# endif113#endif114115/* If we have the iommu, we don't have any address limitations on DMA.116Otherwise (Nautilus, RX164), we have to have 0-16 Mb DMA zone117like i386. */118#define MAX_DMA_ADDRESS (alpha_mv.mv_pci_tbi ? \119~0UL : IDENT_ADDR + 0x01000000)120121/* 8237 DMA controllers */122#define IO_DMA1_BASE 0x00 /* 8 bit slave DMA, channels 0..3 */123#define IO_DMA2_BASE 0xC0 /* 16 bit master DMA, ch 4(=slave input)..7 */124125/* DMA controller registers */126#define DMA1_CMD_REG 0x08 /* command register (w) */127#define DMA1_STAT_REG 0x08 /* status register (r) */128#define DMA1_REQ_REG 0x09 /* request register (w) */129#define DMA1_MASK_REG 0x0A /* single-channel mask (w) */130#define DMA1_MODE_REG 0x0B /* mode register (w) */131#define DMA1_CLEAR_FF_REG 0x0C /* clear pointer flip-flop (w) */132#define DMA1_TEMP_REG 0x0D /* Temporary Register (r) */133#define DMA1_RESET_REG 0x0D /* Master Clear (w) */134#define DMA1_CLR_MASK_REG 0x0E /* Clear Mask */135#define DMA1_MASK_ALL_REG 0x0F /* all-channels mask (w) */136#define DMA1_EXT_MODE_REG (0x400 | DMA1_MODE_REG)137138#define DMA2_CMD_REG 0xD0 /* command register (w) */139#define DMA2_STAT_REG 0xD0 /* status register (r) */140#define DMA2_REQ_REG 0xD2 /* request register (w) */141#define DMA2_MASK_REG 0xD4 /* single-channel mask (w) */142#define DMA2_MODE_REG 0xD6 /* mode register (w) */143#define DMA2_CLEAR_FF_REG 0xD8 /* clear pointer flip-flop (w) */144#define DMA2_TEMP_REG 0xDA /* Temporary Register (r) */145#define DMA2_RESET_REG 0xDA /* Master Clear (w) */146#define DMA2_CLR_MASK_REG 0xDC /* Clear Mask */147#define DMA2_MASK_ALL_REG 0xDE /* all-channels mask (w) */148#define DMA2_EXT_MODE_REG (0x400 | DMA2_MODE_REG)149150#define DMA_ADDR_0 0x00 /* DMA address registers */151#define DMA_ADDR_1 0x02152#define DMA_ADDR_2 0x04153#define DMA_ADDR_3 0x06154#define DMA_ADDR_4 0xC0155#define DMA_ADDR_5 0xC4156#define DMA_ADDR_6 0xC8157#define DMA_ADDR_7 0xCC158159#define DMA_CNT_0 0x01 /* DMA count registers */160#define DMA_CNT_1 0x03161#define DMA_CNT_2 0x05162#define DMA_CNT_3 0x07163#define DMA_CNT_4 0xC2164#define DMA_CNT_5 0xC6165#define DMA_CNT_6 0xCA166#define DMA_CNT_7 0xCE167168#define DMA_PAGE_0 0x87 /* DMA page registers */169#define DMA_PAGE_1 0x83170#define DMA_PAGE_2 0x81171#define DMA_PAGE_3 0x82172#define DMA_PAGE_5 0x8B173#define DMA_PAGE_6 0x89174#define DMA_PAGE_7 0x8A175176#define DMA_HIPAGE_0 (0x400 | DMA_PAGE_0)177#define DMA_HIPAGE_1 (0x400 | DMA_PAGE_1)178#define DMA_HIPAGE_2 (0x400 | DMA_PAGE_2)179#define DMA_HIPAGE_3 (0x400 | DMA_PAGE_3)180#define DMA_HIPAGE_4 (0x400 | DMA_PAGE_4)181#define DMA_HIPAGE_5 (0x400 | DMA_PAGE_5)182#define DMA_HIPAGE_6 (0x400 | DMA_PAGE_6)183#define DMA_HIPAGE_7 (0x400 | DMA_PAGE_7)184185#define DMA_MODE_READ 0x44 /* I/O to memory, no autoinit, increment, single mode */186#define DMA_MODE_WRITE 0x48 /* memory to I/O, no autoinit, increment, single mode */187#define DMA_MODE_CASCADE 0xC0 /* pass thru DREQ->HRQ, DACK<-HLDA only */188189#define DMA_AUTOINIT 0x10190191extern spinlock_t dma_spin_lock;192193static __inline__ unsigned long claim_dma_lock(void)194{195unsigned long flags;196spin_lock_irqsave(&dma_spin_lock, flags);197return flags;198}199200static __inline__ void release_dma_lock(unsigned long flags)201{202spin_unlock_irqrestore(&dma_spin_lock, flags);203}204205/* enable/disable a specific DMA channel */206static __inline__ void enable_dma(unsigned int dmanr)207{208if (dmanr<=3)209dma_outb(dmanr, DMA1_MASK_REG);210else211dma_outb(dmanr & 3, DMA2_MASK_REG);212}213214static __inline__ void disable_dma(unsigned int dmanr)215{216if (dmanr<=3)217dma_outb(dmanr | 4, DMA1_MASK_REG);218else219dma_outb((dmanr & 3) | 4, DMA2_MASK_REG);220}221222/* Clear the 'DMA Pointer Flip Flop'.223* Write 0 for LSB/MSB, 1 for MSB/LSB access.224* Use this once to initialize the FF to a known state.225* After that, keep track of it. :-)226* --- In order to do that, the DMA routines below should ---227* --- only be used while interrupts are disabled! ---228*/229static __inline__ void clear_dma_ff(unsigned int dmanr)230{231if (dmanr<=3)232dma_outb(0, DMA1_CLEAR_FF_REG);233else234dma_outb(0, DMA2_CLEAR_FF_REG);235}236237/* set mode (above) for a specific DMA channel */238static __inline__ void set_dma_mode(unsigned int dmanr, char mode)239{240if (dmanr<=3)241dma_outb(mode | dmanr, DMA1_MODE_REG);242else243dma_outb(mode | (dmanr&3), DMA2_MODE_REG);244}245246/* set extended mode for a specific DMA channel */247static __inline__ void set_dma_ext_mode(unsigned int dmanr, char ext_mode)248{249if (dmanr<=3)250dma_outb(ext_mode | dmanr, DMA1_EXT_MODE_REG);251else252dma_outb(ext_mode | (dmanr&3), DMA2_EXT_MODE_REG);253}254255/* Set only the page register bits of the transfer address.256* This is used for successive transfers when we know the contents of257* the lower 16 bits of the DMA current address register.258*/259static __inline__ void set_dma_page(unsigned int dmanr, unsigned int pagenr)260{261switch(dmanr) {262case 0:263dma_outb(pagenr, DMA_PAGE_0);264dma_outb((pagenr >> 8), DMA_HIPAGE_0);265break;266case 1:267dma_outb(pagenr, DMA_PAGE_1);268dma_outb((pagenr >> 8), DMA_HIPAGE_1);269break;270case 2:271dma_outb(pagenr, DMA_PAGE_2);272dma_outb((pagenr >> 8), DMA_HIPAGE_2);273break;274case 3:275dma_outb(pagenr, DMA_PAGE_3);276dma_outb((pagenr >> 8), DMA_HIPAGE_3);277break;278case 5:279dma_outb(pagenr & 0xfe, DMA_PAGE_5);280dma_outb((pagenr >> 8), DMA_HIPAGE_5);281break;282case 6:283dma_outb(pagenr & 0xfe, DMA_PAGE_6);284dma_outb((pagenr >> 8), DMA_HIPAGE_6);285break;286case 7:287dma_outb(pagenr & 0xfe, DMA_PAGE_7);288dma_outb((pagenr >> 8), DMA_HIPAGE_7);289break;290}291}292293294/* Set transfer address & page bits for specific DMA channel.295* Assumes dma flipflop is clear.296*/297static __inline__ void set_dma_addr(unsigned int dmanr, unsigned int a)298{299if (dmanr <= 3) {300dma_outb( a & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE );301dma_outb( (a>>8) & 0xff, ((dmanr&3)<<1) + IO_DMA1_BASE );302} else {303dma_outb( (a>>1) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE );304dma_outb( (a>>9) & 0xff, ((dmanr&3)<<2) + IO_DMA2_BASE );305}306set_dma_page(dmanr, a>>16); /* set hipage last to enable 32-bit mode */307}308309310/* Set transfer size (max 64k for DMA1..3, 128k for DMA5..7) for311* a specific DMA channel.312* You must ensure the parameters are valid.313* NOTE: from a manual: "the number of transfers is one more314* than the initial word count"! This is taken into account.315* Assumes dma flip-flop is clear.316* NOTE 2: "count" represents _bytes_ and must be even for channels 5-7.317*/318static __inline__ void set_dma_count(unsigned int dmanr, unsigned int count)319{320count--;321if (dmanr <= 3) {322dma_outb( count & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE );323dma_outb( (count>>8) & 0xff, ((dmanr&3)<<1) + 1 + IO_DMA1_BASE );324} else {325dma_outb( (count>>1) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE );326dma_outb( (count>>9) & 0xff, ((dmanr&3)<<2) + 2 + IO_DMA2_BASE );327}328}329330331/* Get DMA residue count. After a DMA transfer, this332* should return zero. Reading this while a DMA transfer is333* still in progress will return unpredictable results.334* If called before the channel has been used, it may return 1.335* Otherwise, it returns the number of _bytes_ left to transfer.336*337* Assumes DMA flip-flop is clear.338*/339static __inline__ int get_dma_residue(unsigned int dmanr)340{341unsigned int io_port = (dmanr<=3)? ((dmanr&3)<<1) + 1 + IO_DMA1_BASE342: ((dmanr&3)<<2) + 2 + IO_DMA2_BASE;343344/* using short to get 16-bit wrap around */345unsigned short count;346347count = 1 + dma_inb(io_port);348count += dma_inb(io_port) << 8;349350return (dmanr<=3)? count : (count<<1);351}352353354/* These are in kernel/dma.c: */355extern int request_dma(unsigned int dmanr, const char * device_id); /* reserve a DMA channel */356extern void free_dma(unsigned int dmanr); /* release it again */357#define KERNEL_HAVE_CHECK_DMA358extern int check_dma(unsigned int dmanr);359360#endif /* _ASM_DMA_H */361362363