mirror of
https://github.com/garrettsworkshop/ROMBUSDriver.git
synced 2025-02-15 23:30:59 +00:00
63 lines
1.9 KiB
ArmAsm
63 lines
1.9 KiB
ArmAsm
* spi calling convention
|
|
* A0 - ROM register
|
|
* A1 - readback address
|
|
* A2 - RX buffer
|
|
* A3 - TX buffer
|
|
* A4 - clobbered
|
|
* D0 - length (clobbered)
|
|
* D1 - nops (clobbered)
|
|
|
|
* spi single calling convention
|
|
* A0 - ROM register
|
|
* A1 - readback address
|
|
* D0 - data
|
|
* D1 - clobbered
|
|
|
|
.global _spi_hal_rxtx8
|
|
.global _spi_hal_rxtx8single
|
|
|
|
.include "spi_hal_common.s"
|
|
|
|
.macro _spi_hal_rxtx8_iteration nops
|
|
move.b (%A1), (%A2)+
|
|
move.b (%A3)+, %D1
|
|
move.b (%A0, %D1.W), %D1
|
|
.rept \nops
|
|
nop
|
|
.endr
|
|
.endm
|
|
|
|
.align 16
|
|
_spi_hal_rxtx8:
|
|
spi_call _spi_hal_rxtx8_lookup, 7
|
|
_spi_hal_rxtx8_single:
|
|
move.b (%A1), %D0
|
|
move.b (%A0, %D1.W), %D1
|
|
rts
|
|
.align 16
|
|
_spi_hal_rxtx8_lookup:
|
|
lookup_table _spi_hal_rxtx8_lookup, _spi_hal_rxtx8_table_0, 8, 256
|
|
lookup_table _spi_hal_rxtx8_lookup, _spi_hal_rxtx8_table_1, 10, 256
|
|
lookup_table _spi_hal_rxtx8_lookup, _spi_hal_rxtx8_table_2, 12, 256
|
|
lookup_table _spi_hal_rxtx8_lookup, _spi_hal_rxtx8_table_3, 14, 256
|
|
lookup_table _spi_hal_rxtx8_lookup, _spi_hal_rxtx8_table_4, 16, 256
|
|
lookup_table _spi_hal_rxtx8_lookup, _spi_hal_rxtx8_table_5, 18, 256
|
|
lookup_table _spi_hal_rxtx8_lookup, _spi_hal_rxtx8_table_6, 20, 256
|
|
lookup_table _spi_hal_rxtx8_lookup, _spi_hal_rxtx8_table_7, 22, 256
|
|
.align 16
|
|
_spi_hal_rxtx8_table_0: unroll_table _spi_hal_rxtx8_iteration, 0, 256
|
|
.align 16
|
|
_spi_hal_rxtx8_table_1: unroll_table _spi_hal_rxtx8_iteration, 1, 256
|
|
.align 16
|
|
_spi_hal_rxtx8_table_2: unroll_table _spi_hal_rxtx8_iteration, 2, 256
|
|
.align 16
|
|
_spi_hal_rxtx8_table_3: unroll_table _spi_hal_rxtx8_iteration, 3, 256
|
|
.align 16
|
|
_spi_hal_rxtx8_table_4: unroll_table _spi_hal_rxtx8_iteration, 4, 256
|
|
.align 16
|
|
_spi_hal_rxtx8_table_5: unroll_table _spi_hal_rxtx8_iteration, 5, 256
|
|
.align 16
|
|
_spi_hal_rxtx8_table_6: unroll_table _spi_hal_rxtx8_iteration, 6, 256
|
|
.align 16
|
|
_spi_hal_rxtx8_table_7: unroll_table _spi_hal_rxtx8_iteration, 7, 256
|