2019-06-04 11:11:33 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2009-11-25 18:41:04 +03:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 Sascha Hauer <s.hauer@pengutronix.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <asm/assembler.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* r8 = bit 0-15: tx offset, bit 16-31: tx buffer size
|
|
|
|
* r9 = bit 0-15: rx offset, bit 16-31: rx buffer size
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define SSI_STX0 0x00
|
|
|
|
#define SSI_SRX0 0x08
|
|
|
|
#define SSI_SISR 0x14
|
|
|
|
#define SSI_SIER 0x18
|
|
|
|
#define SSI_SACNT 0x38
|
|
|
|
|
|
|
|
#define SSI_SACNT_AC97EN (1 << 0)
|
|
|
|
|
|
|
|
#define SSI_SIER_TFE0_EN (1 << 0)
|
|
|
|
#define SSI_SISR_TFE0 (1 << 0)
|
|
|
|
#define SSI_SISR_RFF0 (1 << 2)
|
|
|
|
#define SSI_SIER_RFF0_EN (1 << 2)
|
|
|
|
|
|
|
|
.text
|
|
|
|
.global imx_ssi_fiq_start
|
|
|
|
.global imx_ssi_fiq_end
|
|
|
|
.global imx_ssi_fiq_base
|
|
|
|
.global imx_ssi_fiq_rx_buffer
|
|
|
|
.global imx_ssi_fiq_tx_buffer
|
|
|
|
|
2012-08-10 15:53:24 +04:00
|
|
|
/*
|
|
|
|
* imx_ssi_fiq_start is _intentionally_ not marked as a function symbol
|
|
|
|
* using ENDPROC(). imx_ssi_fiq_start and imx_ssi_fiq_end are used to
|
|
|
|
* mark the function body so that it can be copied to the FIQ vector in
|
|
|
|
* the vectors page. imx_ssi_fiq_start should only be called as the result
|
|
|
|
* of an FIQ: calling it directly will not work.
|
|
|
|
*/
|
2009-11-25 18:41:04 +03:00
|
|
|
imx_ssi_fiq_start:
|
2012-08-10 15:53:24 +04:00
|
|
|
ldr r12, .L_imx_ssi_fiq_base
|
2009-11-25 18:41:04 +03:00
|
|
|
|
|
|
|
/* TX */
|
2012-08-10 15:53:24 +04:00
|
|
|
ldr r13, .L_imx_ssi_fiq_tx_buffer
|
2009-11-25 18:41:04 +03:00
|
|
|
|
|
|
|
/* shall we send? */
|
2012-08-10 15:53:24 +04:00
|
|
|
ldr r11, [r12, #SSI_SIER]
|
|
|
|
tst r11, #SSI_SIER_TFE0_EN
|
2009-11-25 18:41:04 +03:00
|
|
|
beq 1f
|
|
|
|
|
|
|
|
/* TX FIFO empty? */
|
2012-08-10 15:53:24 +04:00
|
|
|
ldr r11, [r12, #SSI_SISR]
|
|
|
|
tst r11, #SSI_SISR_TFE0
|
2009-11-25 18:41:04 +03:00
|
|
|
beq 1f
|
|
|
|
|
|
|
|
mov r10, #0x10000
|
|
|
|
sub r10, #1
|
|
|
|
and r10, r10, r8 /* r10: current buffer offset */
|
|
|
|
|
2012-08-10 15:53:24 +04:00
|
|
|
add r13, r13, r10
|
2009-11-25 18:41:04 +03:00
|
|
|
|
2012-08-10 15:53:24 +04:00
|
|
|
ldrh r11, [r13]
|
|
|
|
strh r11, [r12, #SSI_STX0]
|
2009-11-25 18:41:04 +03:00
|
|
|
|
2012-08-10 15:53:24 +04:00
|
|
|
ldrh r11, [r13, #2]
|
|
|
|
strh r11, [r12, #SSI_STX0]
|
2009-11-25 18:41:04 +03:00
|
|
|
|
2012-08-10 15:53:24 +04:00
|
|
|
ldrh r11, [r13, #4]
|
|
|
|
strh r11, [r12, #SSI_STX0]
|
2009-11-25 18:41:04 +03:00
|
|
|
|
2012-08-10 15:53:24 +04:00
|
|
|
ldrh r11, [r13, #6]
|
|
|
|
strh r11, [r12, #SSI_STX0]
|
2009-11-25 18:41:04 +03:00
|
|
|
|
|
|
|
add r10, #8
|
2012-08-10 15:53:24 +04:00
|
|
|
lsr r11, r8, #16 /* r11: buffer size */
|
|
|
|
cmp r10, r11
|
|
|
|
lslgt r8, r11, #16
|
2009-11-25 18:41:04 +03:00
|
|
|
addle r8, #8
|
|
|
|
1:
|
|
|
|
/* RX */
|
|
|
|
|
|
|
|
/* shall we receive? */
|
2012-08-10 15:53:24 +04:00
|
|
|
ldr r11, [r12, #SSI_SIER]
|
|
|
|
tst r11, #SSI_SIER_RFF0_EN
|
2009-11-25 18:41:04 +03:00
|
|
|
beq 1f
|
|
|
|
|
|
|
|
/* RX FIFO full? */
|
2012-08-10 15:53:24 +04:00
|
|
|
ldr r11, [r12, #SSI_SISR]
|
|
|
|
tst r11, #SSI_SISR_RFF0
|
2009-11-25 18:41:04 +03:00
|
|
|
beq 1f
|
|
|
|
|
2012-08-10 15:53:24 +04:00
|
|
|
ldr r13, .L_imx_ssi_fiq_rx_buffer
|
2009-11-25 18:41:04 +03:00
|
|
|
|
|
|
|
mov r10, #0x10000
|
|
|
|
sub r10, #1
|
|
|
|
and r10, r10, r9 /* r10: current buffer offset */
|
|
|
|
|
2012-08-10 15:53:24 +04:00
|
|
|
add r13, r13, r10
|
2009-11-25 18:41:04 +03:00
|
|
|
|
2012-08-10 15:53:24 +04:00
|
|
|
ldr r11, [r12, #SSI_SACNT]
|
|
|
|
tst r11, #SSI_SACNT_AC97EN
|
2009-11-25 18:41:04 +03:00
|
|
|
|
2012-08-10 15:53:24 +04:00
|
|
|
ldr r11, [r12, #SSI_SRX0]
|
|
|
|
strh r11, [r13]
|
2009-11-25 18:41:04 +03:00
|
|
|
|
2012-08-10 15:53:24 +04:00
|
|
|
ldr r11, [r12, #SSI_SRX0]
|
|
|
|
strh r11, [r13, #2]
|
2009-11-25 18:41:04 +03:00
|
|
|
|
|
|
|
/* dummy read to skip slot 12 */
|
2012-08-10 15:53:24 +04:00
|
|
|
ldrne r11, [r12, #SSI_SRX0]
|
2009-11-25 18:41:04 +03:00
|
|
|
|
2012-08-10 15:53:24 +04:00
|
|
|
ldr r11, [r12, #SSI_SRX0]
|
|
|
|
strh r11, [r13, #4]
|
2009-11-25 18:41:04 +03:00
|
|
|
|
2012-08-10 15:53:24 +04:00
|
|
|
ldr r11, [r12, #SSI_SRX0]
|
|
|
|
strh r11, [r13, #6]
|
2009-11-25 18:41:04 +03:00
|
|
|
|
|
|
|
/* dummy read to skip slot 12 */
|
2012-08-10 15:53:24 +04:00
|
|
|
ldrne r11, [r12, #SSI_SRX0]
|
2009-11-25 18:41:04 +03:00
|
|
|
|
|
|
|
add r10, #8
|
2012-08-10 15:53:24 +04:00
|
|
|
lsr r11, r9, #16 /* r11: buffer size */
|
|
|
|
cmp r10, r11
|
|
|
|
lslgt r9, r11, #16
|
2009-11-25 18:41:04 +03:00
|
|
|
addle r9, #8
|
|
|
|
|
|
|
|
1:
|
|
|
|
@ return from FIQ
|
|
|
|
subs pc, lr, #4
|
2010-11-16 16:13:37 +03:00
|
|
|
|
|
|
|
.align
|
2012-08-10 15:53:24 +04:00
|
|
|
.L_imx_ssi_fiq_base:
|
2009-11-25 18:41:04 +03:00
|
|
|
imx_ssi_fiq_base:
|
|
|
|
.word 0x0
|
2012-08-10 15:53:24 +04:00
|
|
|
.L_imx_ssi_fiq_rx_buffer:
|
2009-11-25 18:41:04 +03:00
|
|
|
imx_ssi_fiq_rx_buffer:
|
|
|
|
.word 0x0
|
2012-08-10 15:53:24 +04:00
|
|
|
.L_imx_ssi_fiq_tx_buffer:
|
2009-11-25 18:41:04 +03:00
|
|
|
imx_ssi_fiq_tx_buffer:
|
|
|
|
.word 0x0
|
2012-08-10 15:53:24 +04:00
|
|
|
.L_imx_ssi_fiq_end:
|
2009-11-25 18:41:04 +03:00
|
|
|
imx_ssi_fiq_end:
|
Revert "arm: move exports to definitions"
This reverts commit 4dd1837d7589f468ed109556513f476e7a7f9121.
Moving the exports for assembly code into the assembly files breaks
KSYM trimming, but also breaks modversions.
While fixing the KSYM trimming is trivial, fixing modversions brings
us to a technically worse position that we had prior to the above
change:
- We end up with the prototype definitions divorsed from everything
else, which means that adding or removing assembly level ksyms
become more fragile:
* if adding a new assembly ksyms export, a missed prototype in
asm-prototypes.h results in a successful build if no module in
the selected configuration makes use of the symbol.
* when removing a ksyms export, asm-prototypes.h will get forgotten,
with armksyms.c, you'll get a build error if you forget to touch
the file.
- We end up with the same amount of include files and prototypes,
they're just in a header file instead of a .c file with their
exports.
As for lines of code, we don't get much of a size reduction:
(original commit)
47 files changed, 131 insertions(+), 208 deletions(-)
(fix for ksyms trimming)
7 files changed, 18 insertions(+), 5 deletions(-)
(two fixes for modversions)
1 file changed, 34 insertions(+)
3 files changed, 7 insertions(+), 2 deletions(-)
which results in a net total of only 25 lines deleted.
As there does not seem to be much benefit from this change of approach,
revert the change.
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
2016-11-23 13:00:03 +03:00
|
|
|
|