/* ============================================================================ * Copyright (c) Texas Instruments Incorporated 2008-2016 * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the * distribution. * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ /** * @file csl_chipAux.h * * @brief * API Auxilary header file for CHIP CSL to read/write from the C64x+ CPU * Control Register File. * * \par * ============================================================================ * @n (C) Copyright 2008, 2009, 2016 Texas Instruments, Inc. * @n Use of this software is controlled by the terms and conditions found * @n in the license agreement under which this software has been supplied. * =========================================================================== * \par */ #ifndef CSL_CHIPAUX_H #define CSL_CHIPAUX_H #ifdef __cplusplus extern "C" { #endif #include /** @addtogroup CSL_CHIP_FUNCTION @{ */ /** ============================================================================ * @n@b CSL_chipReadAMR * * @b Description * @n This API reads the Addressing Mode (AMR) control register and returns its * contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n AMR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 amrVal; amrVal = CSL_chipReadAMR (); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadAMR(void); static inline Uint32 CSL_chipReadAMR(void) { /** Addressing Mode Register */ return AMR; } /** ============================================================================ * @n@b CSL_chipReadCSR * * @b Description * @n This API reads the Control Status (CSR) register and returns its * contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n CSR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 csrVal; csrVal = CSL_chipReadCSR (); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadCSR(void); static inline Uint32 CSL_chipReadCSR(void) { /** Control Status Register */ return CSR; } /** ============================================================================ * @n@b CSL_chipReadIFR * * @b Description * @n This API reads the Interrrupt Flag register (IFR) and returns its * contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n IFR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 ifrVal; ifrVal = CSL_chipReadIFR (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadIFR(void); static inline Uint32 CSL_chipReadIFR(void) { /** Interrupt Flag Register */ return IFR; } /** ============================================================================ * @n@b CSL_chipReadIER * * @b Description * @n This API reads the Interrrupt Enable register (IER) and returns its * contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n IER * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 ierVal; ierVal = CSL_chipReadIER (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadIER(void); static inline Uint32 CSL_chipReadIER(void) { /** Interrupt Enable Register */ return IER; } /** ============================================================================ * @n@b CSL_chipReadISTP * * @b Description * @n This API reads the Interrrupt Service Table Pointer register (ISTP) and * returns its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n ISTP * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 istpVal; istpVal = CSL_chipReadISTP (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadISTP(void); static inline Uint32 CSL_chipReadISTP(void) { /** Interrupt Service Table Pointer Register */ return ISTP; } /** ============================================================================ * @n@b CSL_chipReadIRP * * @b Description * @n This API reads the Interrrupt Return Pointer register (IRP) and * returns its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n IRP * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 irpVal; irpVal = CSL_chipReadIRP (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadIRP(void); static inline Uint32 CSL_chipReadIRP(void) { /** Interrupt Return Pointer Register */ return IRP; } /** ============================================================================ * @n@b CSL_chipReadNRP * * @b Description * @n This API reads the Nonmaskable Interrupt Return Pointer register (NRP) * and returns its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n NRP * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 nrpVal; nrpVal = CSL_chipReadNRP (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadNRP(void); static inline Uint32 CSL_chipReadNRP(void) { /** Nonmaskable Interrupt (NMI) Registers */ return NRP; } /** ============================================================================ * @n@b CSL_chipReadERP * * @b Description * @n This API reads the Exception Return Pointer register (ERP) and returns * its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n NRP * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 erpVal; erpVal = CSL_chipReadERP (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadERP(void); static inline Uint32 CSL_chipReadERP(void) { /** Exception Return Pointer Registers */ return NRP; } /** ============================================================================ * @n@b CSL_chipReadTSCL * * @b Description * @n This API reads the Time Stamp Counter Lower Order 32-bits (TSCL) register * and returns its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n @a CSL_chipWriteTSCL() must be called with any arbitrary value to * enable the TSC first before this API is called. * * Post Condition * @n None * * @b Reads * @n TSCL * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 tsclVal; tsclVal = CSL_chipReadTSCL (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadTSCL(void); static inline Uint32 CSL_chipReadTSCL(void) { /** Time Stamp Counter Register - Low */ return TSCL; } /** ============================================================================ * @n@b CSL_chipReadTSCH * * @b Description * @n This API reads the Time Stamp Counter Higher Order 32-bits (TSCH) register * and returns its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n @a CSL_chipWriteTSCL() must be called with any arbitrary value to * enable the TSC first before this API is called. * * Post Condition * @n None * * @b Reads * @n TSCH * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 tschVal; tschVal = CSL_chipReadTSCH (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadTSCH(void); static inline Uint32 CSL_chipReadTSCH(void) { /** Time Stamp Counter Registers - High */ return TSCH; } /** ============================================================================ * @n@b CSL_chipReadARP * * @b Description * @n This API reads the Analysis Return Pointer (ARP) register * and returns its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n ARP * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 arpVal; arpVal = CSL_chipReadARP (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadARP(void); static inline Uint32 CSL_chipReadARP(void) { /** Analysis Return Pointer */ return ARP; } /** ============================================================================ * @n@b CSL_chipReadILC * * @b Description * @n This API reads the Inner Loop SPL Buffer Count (ILC) register * and returns its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n ILC * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 ilcVal; ilcVal = CSL_chipReadILC (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadILC(void); static inline Uint32 CSL_chipReadILC(void) { /** SPLOOP Inner Loop Count Register */ return ILC; } /** ============================================================================ * @n@b CSL_chipReadRILC * * @b Description * @n This API reads the Reload Inner Loop SPL Buffer Count (RILC) register * and returns its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n RILC * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 rilcVal; rilcVal = CSL_chipReadRILC (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadRILC(void); static inline Uint32 CSL_chipReadRILC(void) { /** SPLOOP Reload Inner Loop Count Register */ return RILC; } /** ============================================================================ * @n@b CSL_chipReadREP * * @b Description * @n This API reads the Restricted Entry Point Address (REP) register * and returns its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n REP * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 repVal; repVal = CSL_chipReadREP (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadREP(void); static inline Uint32 CSL_chipReadREP(void) { /** Restricted Entry Point Address Register */ return REP; } /** ============================================================================ * @n@b CSL_chipReadPCE1 * * @b Description * @n This API reads the Program Counter, E1 Phase (PCE1) register and returns * its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n PCE1 * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 pce1Val; pce1Val = CSL_chipReadPCE1 (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadPCE1(void); static inline Uint32 CSL_chipReadPCE1(void) { /** E1 Phase Program Counter */ return PCE1; } /** ============================================================================ * @n@b CSL_chipReadDNUM * * @b Description * @n This API reads the DSP Core Number (DSPNUM) register and returns * its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n DNUM * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 dnumVal; dnumVal = CSL_chipReadDNUM (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadDNUM(void); static inline Uint32 CSL_chipReadDNUM(void) { /** DSP Core Number Register */ return DNUM; } /** ============================================================================ * @n@b CSL_chipReadSSR * * @b Description * @n This API reads the Saturation Status Register (SSR) and returns * its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n SSR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 ssrVal; ssrVal = CSL_chipReadSSR (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadSSR(void); static inline Uint32 CSL_chipReadSSR(void) { /** Saturation Status Register */ return SSR; } /** ============================================================================ * @n@b CSL_chipReadGPLYA * * @b Description * @n This API reads the GMPY A-side polynomial Register (GPLYA) and returns * its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n GPLYA * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 gplyaVal; gplyaVal = CSL_chipReadGPLYA (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadGPLYA(void); static inline Uint32 CSL_chipReadGPLYA(void) { /** GMPY Polynomial.A Side Register */ return GPLYA; } /** ============================================================================ * @n@b CSL_chipReadGPLYB * * @b Description * @n This API reads the GMPY B-side polynomial Register (GPLYB) and returns * its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n GPLYB * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 gplybVal; gplybVal = CSL_chipReadGPLYB (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadGPLYB(void); static inline Uint32 CSL_chipReadGPLYB(void) { /** GMPY Polynomial.B Side Register */ return GPLYB; } /** ============================================================================ * @n@b CSL_chipReadGFPGFR * * @b Description * @n This API reads the Galios Field Multiply Control Register (GFPGFR) and * returns its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n GFPGFR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 gfpgfrVal; gfpgfrVal = CSL_chipReadGFPGFR (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadGFPGFR(void); static inline Uint32 CSL_chipReadGFPGFR(void) { /** Galois Field Polynomial Generator Function Register */ return GFPGFR; } /** ============================================================================ * @n@b CSL_chipReadDIER * * @b Description * @n This API reads the Debug Interrupt Enable Register (DIER) and returns its * contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n DIER * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 dierVal; dierVal = CSL_chipReadDIER (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadDIER(void); static inline Uint32 CSL_chipReadDIER(void) { /** Debug Interrupt Enable Register */ return DIER; } /** ============================================================================ * @n@b CSL_chipReadTSR * * @b Description * @n This API reads the Task State Register (TSR) and returns its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n TSR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 tsrVal; tsrVal = CSL_chipReadTSR (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadTSR(void); static inline Uint32 CSL_chipReadTSR(void) { /** Task State Register */ return TSR; } /** ============================================================================ * @n@b CSL_chipReadITSR * * @b Description * @n This API reads the Interrupt Task State Register (ITSR) and returns its * contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n ITSR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 itsrVal; itsrVal = CSL_chipReadITSR (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadITSR(void); static inline Uint32 CSL_chipReadITSR(void) { /** Interrupt Task State Register */ return ITSR; } /** ============================================================================ * @n@b CSL_chipReadNTSR * * @b Description * @n This API reads the NMI/Exception Task State Register (NTSR) and returns its * contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n NTSR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 ntsrVal; ntsrVal = CSL_chipReadNTSR (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadNTSR(void); static inline Uint32 CSL_chipReadNTSR(void) { /** NMI/Exception Task State Register */ return NTSR; } /** ============================================================================ * @n@b CSL_chipReadEFR * * @b Description * @n This API reads the Exception Flag Register (EFR) and returns its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n EFR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 efrVal; efrVal = CSL_chipReadEFR (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadEFR(void); static inline Uint32 CSL_chipReadEFR(void) { /** Exception Flag Register */ return EFR; } /** ============================================================================ * @n@b CSL_chipReadIERR * * @b Description * @n This API reads the Internal Exception Report Register (IERR) and returns * its contents. * * @b Arguments None * * Return Value Uint32 * @li The control register value read * * Pre Condition * @n None * * Post Condition * @n None * * @b Reads * @n IERR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 ierrVal; ierrVal = CSL_chipReadIERR (void); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipReadIERR(void); static inline Uint32 CSL_chipReadIERR(void) { /** Internal Exception Report Register */ return IERR; } /** ============================================================================ * @n@b CSL_chipWriteAMR * * @b Description * @n This API configures the Addressing Mode Register (AMR) with the specified * new value 'val'. This API returns the old AMR value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * * Return Value Uint32 * @li New programmed value * * Pre Condition * @n None * * Post Condition * @n The AMR control register is written with the value passed * * @b Writes * @n AMR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldamr; oldamr = CSL_chipWriteAMR (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteAMR(CSL_Reg32 val); static inline Uint32 CSL_chipWriteAMR(CSL_Reg32 val) { Uint32 oldVal; /** Addressing Mode Register */ oldVal = AMR; AMR = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteCSR * * @b Description * @n This API configures the Control Status Register (CSR) with the specified * new value 'val'. This API returns the old CSR value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value * * Pre Condition * @n None * * Post Condition * @n The CSR control register is written with the value passed * * @b Writes * @n CSR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldcsr; oldcsr = CSL_chipWriteCSR (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteCSR(CSL_Reg32 val); static inline Uint32 CSL_chipWriteCSR(CSL_Reg32 val) { Uint32 oldVal; /** Control Status Register */ oldVal = CSR; CSR = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteISR * * @b Description * @n This API configures the Interrupt Set Register (ISR) with the specified * new value 'val'. This API returns the old ISR value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value * * Pre Condition * @n None * * Post Condition * @n The ISR control register is written with the value passed * * @b Writes * @n ISR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldISR; oldISR = CSL_chipWriteISR (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteISR(CSL_Reg32 val); static inline Uint32 CSL_chipWriteISR(CSL_Reg32 val) { Uint32 oldVal; /** Read Interrupt Flag Register and write to the Interrupt Set Register */ oldVal = IFR; ISR = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteICR * * @b Description * @n This API writes to the Interrupt Clear Register (ICR) with the specified * new value 'val' to clear the maskable interrupts configured in the IFR * register. This API returns the old interrupt state from IFR value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from IFR * * Pre Condition * @n None * * Post Condition * @n The ICR control register is written with the value passed * * @b Writes * @n ICR * * @b Affects * @n IFR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldIFR; oldIFR = CSL_chipWriteICR (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteICR(CSL_Reg32 val); static inline Uint32 CSL_chipWriteICR(CSL_Reg32 val) { Uint32 oldVal; /* Reads the old interrupt set status from the Interrupt Flag Register and * clears the interrupts specified by writing to Interrupt Clear Register */ oldVal = IFR; ICR = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteIER * * @b Description * @n This API writes to the Interrupt Enable Register (IER) with the specified * new value 'val' to enable/disable individual interrupts in the system. * This API returns the old interrupt enable state from IER value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from IER * * Pre Condition * @n None * * Post Condition * @n The IER control register is written with the value passed * * @b Writes * @n IER * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldIER; oldIER = CSL_chipWriteIER (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteIER(CSL_Reg32 val); static inline Uint32 CSL_chipWriteIER(CSL_Reg32 val) { Uint32 oldVal; /** Interrupt Enable Register */ oldVal = IER; IER = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteISTP * * @b Description * @n This API writes to the Interrupt Service Table Pointer Register (ISTP) * with the specified value 'val' to setup a ISR base address for a given * interrupt in the ISTB. This API returns the old ISTP value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from ISTP * * Pre Condition * @n None * * Post Condition * @n The ISTP control register is written with the value passed * * @b Writes * @n ISTP * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldISTP; oldISTP = CSL_chipWriteISTP (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteISTP(CSL_Reg32 val); static inline Uint32 CSL_chipWriteISTP(CSL_Reg32 val) { Uint32 oldVal; /** Interrupt Service Table Pointer Register */ oldVal = ISTP; ISTP = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteIRP * * @b Description * @n This API writes to the Interrupt Return Pointer Register (IRP) * with the specified value 'val' to setup a return point in the program to * continue execution after a maskable interrupt is executed. This API * returns the old IRP value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from IRP * * Pre Condition * @n None * * Post Condition * @n The IRP control register is written with the value passed * * @b Writes * @n IRP * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldIRP; oldIRP = CSL_chipWriteIRP (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteIRP(CSL_Reg32 val); static inline Uint32 CSL_chipWriteIRP(CSL_Reg32 val) { Uint32 oldVal; /** Interrupt Return Pointer Register */ oldVal = IRP; IRP = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteNRP * * @b Description * @n This API writes to the NMI Return Pointer Register (NRP) with the specified * value 'val' to setup a return point in the program to continue execution after * an NMI has occured. This API returns the old NRP value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from NRP * * Pre Condition * @n None * * Post Condition * @n The NRP control register is written with the value passed * * @b Writes * @n NRP * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldNRP; oldNRP = CSL_chipWriteNRP (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteNRP(CSL_Reg32 val); static inline Uint32 CSL_chipWriteNRP(CSL_Reg32 val) { Uint32 oldVal; /** Nonmaskable Interrupt (NMI) Registers */ oldVal = NRP; NRP = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteERP * * @b Description * @n This API writes to the Exception Return Pointer Register (ERP) with the specified * value 'val' to setup a return point in the program to continue execution after * an exception has occured. This API returns the old ERP value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from NRP register * * Pre Condition * @n None * * Post Condition * @n The NRP control register is written with the value passed * * @b Writes * @n NRP * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldERP; oldERP = CSL_chipWriteERP (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteERP(CSL_Reg32 val); static inline Uint32 CSL_chipWriteERP(CSL_Reg32 val) { Uint32 oldVal; /** Exception Return Point (ERP) Registers */ oldVal = NRP; NRP = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteTSCL * * @b Description * @n This API writes to the Time-Stamp Counter (low order 32 bits) Register (TSCL) * with the specified value 'val' to enable the TSC. This API returns the * old TSCL value on return. The actual value written "val" to TSCL has no effect on * the Time stamp counter. The value is simply ignored by the hardware, and a write to * TSCL is used only to enable the Time Stamp Counter. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from TSCL register * * Pre Condition * @n None * * Post Condition * @n The TSCL control register is written with the value passed * * @b Writes * @n TSCL * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldTSCL; oldTSCL = CSL_chipWriteTSCL (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteTSCL(CSL_Reg32 val); static inline Uint32 CSL_chipWriteTSCL(CSL_Reg32 val) { Uint32 oldVal; /** Time Stamp Counter Register - Low */ oldVal = TSCL; TSCL = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteARP * * @b Description * @n This API writes to the Analysis Return Pointer (ARP) with the * specified value 'val'. This API returns the old ARP value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from ARP register * * Pre Condition * @n None * * Post Condition * @n The ARP control register is written with the value passed * * @b Writes * @n ARP * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldARP; oldARP = CSL_chipWriteARP (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteARP(CSL_Reg32 val); static inline Uint32 CSL_chipWriteARP(CSL_Reg32 val) { Uint32 oldVal; /** Analysis Return Point Register */ oldVal = ARP; ARP = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteILC * * @b Description * @n This API writes to the SPLOOP Inner Loop Count Register (ILC) with the * specified value 'val'. This API returns the old ILC value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from ILC register * * Pre Condition * @n None * * Post Condition * @n The ILC control register is written with the value passed * * @b Writes * @n ILC * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldILC; oldILC = CSL_chipWriteILC (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteILC(CSL_Reg32 val); static inline Uint32 CSL_chipWriteILC(CSL_Reg32 val) { Uint32 oldVal; /** SPLOOP Inner Loop Count Register */ oldVal = ILC; ILC = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteRILC * * @b Description * @n This API writes to the SPLOOP Reload Inner Loop Count Register (RILC) with * the specified value 'val'. This API returns the old RILC value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from RILC register * * Pre Condition * @n None * * Post Condition * @n The RILC control register is written with the value passed * * @b Writes * @n RILC * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldRILC; oldRILC = CSL_chipWriteRILC (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteRILC(CSL_Reg32 val); static inline Uint32 CSL_chipWriteRILC(CSL_Reg32 val) { Uint32 oldVal; /** SPLOOP Reload Inner Loop Count Register */ oldVal = RILC; RILC = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteREP * * @b Description * @n This API writes to the Restricted Entry-Point Register (REP) with * the specified value 'val'. This API returns the old REP value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from REP register * * Pre Condition * @n None * * Post Condition * @n The REP control register is written with the value passed * * @b Writes * @n REP * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldREP; oldREP = CSL_chipWriteREP (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteREP(CSL_Reg32 val); static inline Uint32 CSL_chipWriteREP(CSL_Reg32 val) { Uint32 oldVal; /** Restricted Entry Point Address Register */ oldVal = REP; REP = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteSSR * * @b Description * @n This API writes to the Saturation Status Register (SSR) with * the specified value 'val'. This API returns the old SSR value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from SSR register * * Pre Condition * @n None * * Post Condition * @n The SSR control register is written with the value passed * * @b Writes * @n SSR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldSSR; oldSSR = CSL_chipWriteSSR (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteSSR(CSL_Reg32 val); static inline Uint32 CSL_chipWriteSSR(CSL_Reg32 val) { Uint32 oldVal; /** Saturation Status Register */ oldVal = SSR; SSR = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteGPLYA * * @b Description * @n This API writes to the GMPY Polynomial-A side Register (GPLYA) with * the specified value 'val'. This API returns the old GPLYA value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from GPLYA register * * Pre Condition * @n None * * Post Condition * @n The GPLYA control register is written with the value passed * * @b Writes * @n GPLYA * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldGPLYA; oldGPLYA = CSL_chipWriteGPLYA (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteGPLYA(CSL_Reg32 val); static inline Uint32 CSL_chipWriteGPLYA(CSL_Reg32 val) { Uint32 oldVal; /** GMPY Polynomial.A Side Register */ oldVal = GPLYA; GPLYA = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteGPLYB * * @b Description * @n This API writes to the GMPY Polynomial-B side Register (GPLYB) with * the specified value 'val'. This API returns the old GPLYB value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from GPLYB register * * Pre Condition * @n None * * Post Condition * @n The GPLYB control register is written with the value passed * * @b Writes * @n GPLYB * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldGPLYB; oldGPLYB = CSL_chipWriteGPLYB (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteGPLYB(CSL_Reg32 val); static inline Uint32 CSL_chipWriteGPLYB(CSL_Reg32 val) { Uint32 oldVal; /** GMPY Polynomial.B Side Register */ oldVal = GPLYB; GPLYB = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteGFPGFR * * @b Description * @n This API writes to the Galios Field Polynomial Generator Function Register * (GFPGFR) with the specified value 'val'. This API returns the old GFPGFR value * on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from GFPGFR register * * Pre Condition * @n None * * Post Condition * @n The GFPGFR control register is written with the value passed * * @b Writes * @n GFPGFR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldGFPGFR; oldGFPGFR = CSL_chipWriteGFPGFR (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteGFPGFR(CSL_Reg32 val); static inline Uint32 CSL_chipWriteGFPGFR(CSL_Reg32 val) { Uint32 oldVal; /** Galois Field Polynomial Generator Function Register */ oldVal = GFPGFR; GFPGFR = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteDIER * * @b Description * @n This API writes to the Debug Interrupt Enable Register (DIER) with the * specified value 'val'. This API returns the old DIER value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from DIER register * * Pre Condition * @n None * * Post Condition * @n The DIER control register is written with the value passed * * @b Writes * @n DIER * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldDIER; oldDIER = CSL_chipWriteDIER (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteDIER(CSL_Reg32 val); static inline Uint32 CSL_chipWriteDIER(CSL_Reg32 val) { Uint32 oldVal; /** Debug Interrupt Enable Register */ oldVal = DIER; DIER = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteTSR * * @b Description * @n This API writes to the Task State Register (TSR) with the specified value * 'val'. This API returns the old TSR value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from TSR register * * Pre Condition * @n None * * Post Condition * @n The TSR control register is written with the value passed * * @b Writes * @n TSR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldTSR; oldTSR = CSL_chipWriteTSR (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteTSR(CSL_Reg32 val); static inline Uint32 CSL_chipWriteTSR(CSL_Reg32 val) { Uint32 oldVal; /** Task State Register */ oldVal = TSR; TSR = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteITSR * * @b Description * @n This API writes to the Interrupt Task State Register (ITSR) with the * specified value 'val'. This API returns the old ITSR value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from ITSR register * * Pre Condition * @n None * * Post Condition * @n The ITSR control register is written with the value passed * * @b Writes * @n ITSR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldITSR; oldITSR = CSL_chipWriteITSR (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteITSR(CSL_Reg32 val); static inline Uint32 CSL_chipWriteITSR(CSL_Reg32 val) { Uint32 oldVal; /** Interrupt Task State Register */ oldVal = ITSR; ITSR = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteNTSR * * @b Description * @n This API writes to the NMI/Exception Task State Register (NTSR) with the * specified value 'val'. This API returns the old NTSR value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from NTSR register * * Pre Condition * @n None * * Post Condition * @n The NTSR control register is written with the value passed * * @b Writes * @n NTSR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldNTSR; oldNTSR = CSL_chipWriteNTSR (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteNTSR(CSL_Reg32 val); static inline Uint32 CSL_chipWriteNTSR(CSL_Reg32 val) { Uint32 oldVal; /** NMI/Exception Task State Register */ oldVal = NTSR; NTSR = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteECR * * @b Description * @n This API writes to the Exception Clear Register (ECR) with the specified * value 'val' to clear the corresponding bits in the EFR. This API returns * the old EFR value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from EFR register * * Pre Condition * @n None * * Post Condition * @n The ECR control register is written with the value passed and the * corresponding exception bits in the EFR register are cleared. * * @b Writes * @n EFR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldEFR; oldEFR = CSL_chipWriteECR (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteECR(CSL_Reg32 val); static inline Uint32 CSL_chipWriteECR(CSL_Reg32 val) { Uint32 oldVal; /** Return the old value from Exception Flag Register * and set the Clear Register */ oldVal = EFR; ECR = val; return oldVal; } /** ============================================================================ * @n@b CSL_chipWriteIERR * * @b Description * @n This API writes to the Internal Exception Report Register (IERR) with the * specified value 'val'. This API returns the old IERR value on return. * * @b Arguments * @verbatim val Value to be written. @endverbatim * * Return Value Uint32 * @li New programmed value from IERR register * * Pre Condition * @n None * * Post Condition * @n The IERR control register is written with the value passed. * * @b Writes * @n IERR * * Usage Constraints: * @n Please refer to the C64x+ user guide for constraints while accessing * registers in different privilege levels. * * @b Example * @verbatim Uint32 oldIERR; oldIERR = CSL_chipWriteIERR (56); @endverbatim * =========================================================================== */ /*misra requires duplicated prototype even for static functions*/ static inline Uint32 CSL_chipWriteIERR(CSL_Reg32 val); static inline Uint32 CSL_chipWriteIERR(CSL_Reg32 val) { Uint32 oldVal; /** Internal Exception Report Register */ oldVal = IERR; IERR = val; return oldVal; } #ifdef __cplusplus } #endif /* @} */ #endif /* CSL_CHIPAUX_H */