1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /* linux/drivers/spi/spi_s3c24xx_fiq.S
4 * Copyright 2009 Simtec Electronics
5 * Ben Dooks <ben@simtec.co.uk>
7 * S3C24XX SPI - FIQ pseudo-DMA transfer code
10 #include <linux/linkage.h>
11 #include <asm/assembler.h>
14 #include <mach/regs-irq.h>
15 #include <plat/regs-spi.h>
17 #include "spi-s3c24xx-fiq.h"
21 @ entry to these routines is as follows, with the register names
22 @ defined in fiq.h so that they can be shared with the C files which
23 @ setup the calling registers.
25 @ fiq_rirq The base of the IRQ registers to find S3C2410_SRCPND
26 @ fiq_rtmp Temporary register to hold tx/rx data
27 @ fiq_rspi The base of the SPI register block
28 @ fiq_rtx The tx buffer pointer
29 @ fiq_rrx The rx buffer pointer
30 @ fiq_rcount The number of bytes to move
32 @ each entry starts with a word entry of how long it is
33 @ and an offset to the irq acknowledgment word
35 ENTRY(s3c24xx_spi_fiq_rx)
37 .word fiq_rx_end - fiq_rx_start
38 .word fiq_rx_irq_ack - fiq_rx_start
40 ldr fiq_rtmp, fiq_rx_irq_ack
41 str fiq_rtmp, [ fiq_rirq, # S3C2410_SRCPND - S3C24XX_VA_IRQ ]
43 ldrb fiq_rtmp, [ fiq_rspi, # S3C2410_SPRDAT ]
44 strb fiq_rtmp, [ fiq_rrx ], #1
47 strb fiq_rtmp, [ fiq_rspi, # S3C2410_SPTDAT ]
49 subs fiq_rcount, fiq_rcount, #1
50 subnes pc, lr, #4 @@ return, still have work to do
52 @@ set IRQ controller so that next op will trigger IRQ
54 str fiq_rtmp, [ fiq_rirq, # S3C2410_INTMOD - S3C24XX_VA_IRQ ]
61 ENTRY(s3c24xx_spi_fiq_txrx)
63 .word fiq_txrx_end - fiq_txrx_start
64 .word fiq_txrx_irq_ack - fiq_txrx_start
67 ldrb fiq_rtmp, [ fiq_rspi, # S3C2410_SPRDAT ]
68 strb fiq_rtmp, [ fiq_rrx ], #1
70 ldr fiq_rtmp, fiq_txrx_irq_ack
71 str fiq_rtmp, [ fiq_rirq, # S3C2410_SRCPND - S3C24XX_VA_IRQ ]
73 ldrb fiq_rtmp, [ fiq_rtx ], #1
74 strb fiq_rtmp, [ fiq_rspi, # S3C2410_SPTDAT ]
76 subs fiq_rcount, fiq_rcount, #1
77 subnes pc, lr, #4 @@ return, still have work to do
80 str fiq_rtmp, [ fiq_rirq, # S3C2410_INTMOD - S3C24XX_VA_IRQ ]
88 ENTRY(s3c24xx_spi_fiq_tx)
90 .word fiq_tx_end - fiq_tx_start
91 .word fiq_tx_irq_ack - fiq_tx_start
93 ldrb fiq_rtmp, [ fiq_rspi, # S3C2410_SPRDAT ]
95 ldr fiq_rtmp, fiq_tx_irq_ack
96 str fiq_rtmp, [ fiq_rirq, # S3C2410_SRCPND - S3C24XX_VA_IRQ ]
98 ldrb fiq_rtmp, [ fiq_rtx ], #1
99 strb fiq_rtmp, [ fiq_rspi, # S3C2410_SPTDAT ]
101 subs fiq_rcount, fiq_rcount, #1
102 subnes pc, lr, #4 @@ return, still have work to do
105 str fiq_rtmp, [ fiq_rirq, # S3C2410_INTMOD - S3C24XX_VA_IRQ ]