170 lines
7.6 KiB
NASM
170 lines
7.6 KiB
NASM
|
|
;;#############################################################################
|
||
|
|
;;! \file source/iir5biq32.asm
|
||
|
|
;;!
|
||
|
|
;;! \brief 32-bit IIR filter
|
||
|
|
;;!
|
||
|
|
;;! \date Jan 11, 2011
|
||
|
|
;;!
|
||
|
|
;;
|
||
|
|
;;#############################################################################
|
||
|
|
;;!
|
||
|
|
;;! Copyright: Copyright (C) 2023 Texas Instruments Incorporated -
|
||
|
|
;;! All rights reserved not granted herein.
|
||
|
|
;;! Limited License.
|
||
|
|
;;!
|
||
|
|
;;! Texas Instruments Incorporated grants a world-wide, royalty-free,
|
||
|
|
;;! non-exclusive license under copyrights and patents it now or hereafter
|
||
|
|
;;! owns or controls to make, have made, use, import, offer to sell and sell
|
||
|
|
;;! ("Utilize") this software subject to the terms herein. With respect to the
|
||
|
|
;;! foregoing patent license, such license is granted solely to the extent that
|
||
|
|
;;! any such patent is necessary to Utilize the software alone. The patent
|
||
|
|
;;! license shall not apply to any combinations which include this software,
|
||
|
|
;;! other than combinations with devices manufactured by or for TI
|
||
|
|
;;! ("TI Devices").
|
||
|
|
;;! No hardware patent is licensed hereunder.
|
||
|
|
;;!
|
||
|
|
;;! Redistributions must preserve existing copyright notices and reproduce this
|
||
|
|
;;! license (including the above copyright notice and the disclaimer and
|
||
|
|
;;! (if applicable) source code license limitations below) in the documentation
|
||
|
|
;;! and/or other materials provided with the distribution.
|
||
|
|
;;!
|
||
|
|
;;! Redistribution and use in binary form, without modification, are permitted
|
||
|
|
;;! provided that the following conditions are met:
|
||
|
|
;;!
|
||
|
|
;;! * No reverse engineering, decompilation, or disassembly of this software is
|
||
|
|
;;! permitted with respect to any software provided in binary form.
|
||
|
|
;;! * Any redistribution and use are licensed by TI for use only
|
||
|
|
;;! with TI Devices.
|
||
|
|
;;! * Nothing shall obligate TI to provide you with source code for the
|
||
|
|
;;! software licensed and provided to you in object code.
|
||
|
|
;;!
|
||
|
|
;;! If software source code is provided to you, modification and redistribution
|
||
|
|
;;! of the source code are permitted provided that the following conditions
|
||
|
|
;;! are met:
|
||
|
|
;;!
|
||
|
|
;;! * any redistribution and use of the source code, including any resulting
|
||
|
|
;;! derivative works, are licensed by TI for use only with TI Devices.
|
||
|
|
;;! * any redistribution and use of any object code compiled from the source
|
||
|
|
;;! code and any resulting derivative works, are licensed by TI for use
|
||
|
|
;;! only with TI Devices.
|
||
|
|
;;!
|
||
|
|
;;! Neither the name of Texas Instruments Incorporated nor the names of its
|
||
|
|
;;! suppliers may be used to endorse or promote products derived from this
|
||
|
|
;;! software without specific prior written permission.
|
||
|
|
;;#############################################################################
|
||
|
|
;;
|
||
|
|
;;*****************************************************************************
|
||
|
|
;; includes
|
||
|
|
;;*****************************************************************************
|
||
|
|
;;
|
||
|
|
;;*****************************************************************************
|
||
|
|
;; globals
|
||
|
|
;;*****************************************************************************
|
||
|
|
; Module definition for external reference
|
||
|
|
|
||
|
|
.if __TI_EABI__
|
||
|
|
.asg IIR5BIQ32_init, _IIR5BIQ32_init
|
||
|
|
.asg IIR5BIQ32_calc, _IIR5BIQ32_calc
|
||
|
|
.endif
|
||
|
|
|
||
|
|
.def _IIR5BIQ32_init
|
||
|
|
.def _IIR5BIQ32_calc
|
||
|
|
;;=============================================================================
|
||
|
|
;; Routine Type : C Callable
|
||
|
|
;; Description :
|
||
|
|
;; void IIR5BIQ32_calc(IIR5BIQ32_handle)
|
||
|
|
;;
|
||
|
|
;; This routine implements the IIR filter using cascade biquad structure
|
||
|
|
;;=============================================================================
|
||
|
|
;;typedef struct {<------------ XAR4
|
||
|
|
;; void (*init)(void *); /* + 0 Ptr to Init funtion */
|
||
|
|
;; void (*calc)(void *); /* + 2 Ptr to calc fn */
|
||
|
|
;; int32_t *coeff_ptr; /* + 4 Pointer to Filter coefficient */
|
||
|
|
;; int32_t *dbuffer_ptr; /* + 6 Delay buffer ptr */
|
||
|
|
;; uint16_t nbiq; /* + 8 No of biquad */
|
||
|
|
;; int32_t input; /* + 9 Latest Input sample */
|
||
|
|
;; int32_t isf; /* +10 Input Scale Factor */
|
||
|
|
;; int32_t output32; /* +12 Filter Output */
|
||
|
|
;; int16_t output16 /* +13 Filter Output */
|
||
|
|
;; uint16_t qfmat; /* +14 Coefficients Q Format */
|
||
|
|
;; }IIR5BIQ32;
|
||
|
|
;;=============================================================================
|
||
|
|
|
||
|
|
_IIR5BIQ32_init:
|
||
|
|
ADDB XAR4,#6 ; XAR4->dbuffer_ptr
|
||
|
|
MOVL XAR6,*+XAR4[0] ; XAR6=dbuffer_ptr
|
||
|
|
MOV ACC,*+XAR4[2]<<2 ; ACC=4*nbiq
|
||
|
|
SUB ACC,#1 ; ACC=(4*nbiq)-1
|
||
|
|
MOVZ AR0,AL ; AR0=(4*nbiq)-1
|
||
|
|
ADDL ACC,*XAR4 ; ACC=dbuffer_ptr + (4*nbiq) - 1
|
||
|
|
MOVL *XAR4++,ACC ; XAR4->nbiq,
|
||
|
|
; dbuffer_ptr=dbuffer_ptr + (4*nbiq) - 1
|
||
|
|
|
||
|
|
ADDB XAR4,#2
|
||
|
|
MOV *+XAR4[1],#0 ; input=0
|
||
|
|
MOVB ACC,#32
|
||
|
|
SUB ACC,*+XAR4[7]
|
||
|
|
MOV *+XAR4[7],AL ; qfmat=32-qfmat
|
||
|
|
MOV *+XAR4[6],#0 ; output16=0
|
||
|
|
MOV *+XAR4[5],#0 ; output32=0
|
||
|
|
MOV *+XAR4[4],#0 ; output32=0
|
||
|
|
|
||
|
|
RPT AR0
|
||
|
|
|| MOV *XAR6++,#0
|
||
|
|
|
||
|
|
LRETR
|
||
|
|
|
||
|
|
|
||
|
|
_IIR5BIQ32_calc:
|
||
|
|
SETC SXM,OVM
|
||
|
|
ZAPA ; Zero the ACC, P registers and OVC counter
|
||
|
|
|
||
|
|
ADDB XAR4,#4 ; AR4->coeff_ptr
|
||
|
|
MOVL XAR7,*XAR4++ ; XAR4->dbuffer_ptr, XAR7=coeff_ptr->a21
|
||
|
|
MOVL XAR6,*XAR4++ ; XAR4->order, XAR6=dbuffer_ptr->d1(n-2)
|
||
|
|
MOVZ AR0,*XAR4++ ; XAR4->input, AR0=nbiq
|
||
|
|
|
||
|
|
;MOVX TL,*XAR4++ ; XAR4->isf, T=input
|
||
|
|
ADDB XAR4,#1
|
||
|
|
MOVL XT,*XAR4++ ; XAR4->isf, T=input
|
||
|
|
|
||
|
|
QMPYL ACC,XT,*XAR4++ ; XAR4->output32, ACC=input*isf
|
||
|
|
ADDB XAR6,#2
|
||
|
|
SUBB XAR0,#1 ; AR0=nbiq-1
|
||
|
|
|
||
|
|
; kth Biquad Computation where k=1:nbiq
|
||
|
|
biqd:
|
||
|
|
MOVL XT,*--XAR6 ; T=dk(n-2)
|
||
|
|
QMPYL P,XT,*XAR7++ ; P= dk(n-2)*a2k
|
||
|
|
MOVL XT,*--XAR6 ; T=dk(n-1)
|
||
|
|
QMPYAL P,XT,*XAR7++ ; ACC=input*isf + dk(n-2)*a2k, P=dk(n-1)*a1k
|
||
|
|
|
||
|
|
MOVL XT,*+XAR6[2] ; T=dk(n-2)
|
||
|
|
QMPYAL P,XT,*XAR7++ ; ACC=input*isf + dk(n-2)*a2k + dk(n-1)*a1k
|
||
|
|
; P=dk(n-2)*b2k
|
||
|
|
|
||
|
|
MOV T,*+XAR4[3] ; T=qfmat
|
||
|
|
LSLL ACC,T ; ACC=input*isf + dk(n-2)*a2k + dk(n-1)*a1k (Q31)
|
||
|
|
|
||
|
|
MOVDL XT,*XAR6 ; XT=dk(n-1), dk(n-2)=dk(n-1)
|
||
|
|
MOVL *XAR6,ACC ; dk(n-1)=dk(n)
|
||
|
|
QMPYL ACC,XT,*XAR7++ ; ACC=dk(n-1)*b1k
|
||
|
|
|
||
|
|
MOVL XT,*XAR6 ; XT=dk(n)
|
||
|
|
QMPYAL P,XT,*XAR7++ ; ACC=dk(n-1)*b1k + dk(n-2)*b2k, P=dk(n)*b0k
|
||
|
|
ADDL ACC,P
|
||
|
|
|
||
|
|
BANZ biqd,AR0--
|
||
|
|
|
||
|
|
MOV T,*+XAR4[3] ; T=qfmat, XAR4->output32
|
||
|
|
LSLL ACC,T
|
||
|
|
ROR ACC
|
||
|
|
MOVL *XAR4++,ACC ; output32=Filtered Output in Q30 format
|
||
|
|
MOV *XAR4,AH ; output16=Filtered Output in Q14 format
|
||
|
|
CLRC OVM
|
||
|
|
LRETR
|
||
|
|
|
||
|
|
;;#############################################################################
|
||
|
|
;; End of File
|
||
|
|
;;#############################################################################
|