123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- /* ============================================================================
- * Copyright (c) Texas Instruments Incorporated 2002, 2003, 2004, 2005, 2006, 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 cslr.h
- *
- * \brief This file contains the macro definations for Register layer
- *
- */
- /* Register layer central -- contains field-manipulation macro definitions */
- #ifndef CSLR_H
- #define CSLR_H
- /* the "expression" macros */
- /* the Field MaKe macro */
- #define CSL_FMK(PER_REG_FIELD, val) \
- (((val) << CSL_##PER_REG_FIELD##_SHIFT) & CSL_##PER_REG_FIELD##_MASK)
- /* the Field EXTract macro */
- #define CSL_FEXT(reg, PER_REG_FIELD) \
- (((reg) & CSL_##PER_REG_FIELD##_MASK) >> CSL_##PER_REG_FIELD##_SHIFT)
- /* the Field INSert macro */
- #define CSL_FINS(reg, PER_REG_FIELD, val) \
- ((reg) = ((reg) & ~CSL_##PER_REG_FIELD##_MASK) \
- | (((val) << CSL_##PER_REG_FIELD##_SHIFT) & CSL_##PER_REG_FIELD##_MASK))
- /* the "token" macros */
- /* the Field MaKe (Token) macro */
- #define CSL_FMKT(PER_REG_FIELD, TOKEN) \
- (((CSL_##PER_REG_FIELD##_##TOKEN) << CSL_##PER_REG_FIELD##_SHIFT) & CSL_##PER_REG_FIELD##_MASK)
- /* the Field INSert (Token) macro */
- #define CSL_FINST(reg, PER_REG_FIELD, TOKEN) \
- ((reg) = ((reg) & ~CSL_##PER_REG_FIELD##_MASK) \
- | (((CSL_##PER_REG_FIELD##_##TOKEN) << CSL_##PER_REG_FIELD##_SHIFT) & CSL_##PER_REG_FIELD##_MASK))
- /* the "raw" macros */
- #define kw_val (1u) \
- /* the Field MaKe (Raw) macro */
- #define CSL_FMKR(msb, lsb, val) \
- (((val) & ((((uint32_t)1U) << ((msb) - (lsb) + ((uint32_t)1U))) - ((uint32_t)1U))) << (lsb))
- /* the Field EXTract (Raw) macro */
- #define CSL_FEXTR(reg, msb, lsb) \
- (((reg) >> (lsb)) & ((((uint32_t)1U) << ((msb) - (lsb) + ((uint32_t)1U))) - ((uint32_t)1U)))
- /* the Field INSert (Raw) macro */
- #define CSL_FINSR(reg, msb, lsb, val) \
- ((reg) = ((reg) & (~(((((uint32_t)1U) << ((msb) - (lsb) + ((uint32_t)1U))) - ((uint32_t)1U)) << (lsb)))) \
- | CSL_FMKR((msb), (lsb), (val)))
- #endif /* CSLR_H_ */
- /**
- * \mainpage Chip Support Library
- *
- * \par IMPORTANT NOTE
- * <b>
- * The interfaces defined in this package are bound to change.
- * Kindly treat the interfaces as work in progress.
- * Release notes/user guide list the additional limitation/restriction
- * of this module/interfaces.
- * </b> See also \ref TI_DISCLAIMER.
- *
- *
- * Chip Support Library(CSL) provides a no-OS platform support for
- * multi-core SoCs. CSL provides CSL Functional Layer (CSL-FL) libraries and
- * CSL Register Layer (CSL-R) along with peripheral/board level sample/demo
- * examples that demonstrate the capabilities of the peripherals.
- *
- * <b>
- * Also refer to top level user guide for detailed features,
- * limitations and usage description.
- * </b>
- *
- * The CSL-FL includes the following modules/drivers
- * - <b> HW Type Defines </b> (See \ref HW_TYPES) <br>
- * In-line functions required to read/write values from/to the hardware registers
- *
- * - <b> IP's </b> <br>
- * - <b> System Module</b> <br>
- * - <b> EDMA </b> (See \ref CSL_EDMA) <br>
- * - <b> EPWM </b> (See \ref CSL_EPWM) <br>
- * - <b> GPIO </b> (See \ref CSL_GPIO) <br>
- * - <b> Mailbox </b> (See \ref CSL_MAILBOX) <br>
- * - <b> MMU </b> (See \ref CSL_MMU) <br>
- * - <b> Spinlock </b> (See \ref CSL_SPINLOCK) <br>
- * - <b> Timer </b> (See \ref CSL_TIMER) <br>
- * - <b> WD Timer </b> (See \ref CSL_WD_TIMER) <br>
- * - <b> Safety/Security Module</b> <br>
- * - <b> ADC </b> (See \ref CSL_ADC) <br>
- * - <b> CRC </b> (See \ref CSL_CRC) <br>
- * - <b> DCC </b> (See \ref CSL_DCC) <br>
- * - <b> ESM </b> (See \ref CSL_ESM) <br>
- * - <b> L4 Firewall </b> (See \ref CSL_L3_FIREWALL) <br>
- * - <b> L4 Firewall </b> (See \ref CSL_L4_FIREWALL) <br>
- * - <b> Tesoc </b> (See \ref CSL_TESOC) <br>
- * - <b> RTI </b> (See \ref CSL_RTI) <br>
- * - <b> Serial Module</b> <br>
- * - <b> DCAN </b> (See \ref CSL_DCAN) <br>
- * - <b> I2C </b> (See \ref CSL_I2C) <br>
- * - <b> MCAN </b> (See \ref CSL_MCAN) <br>
- * - <b> McSPI </b> (See \ref CSL_MCSPI) <br>
- * - <b> QSPI </b> (See \ref CSL_QSPI) <br>
- * - <b> UART </b> (See \ref CSL_UART) <br>
- * - <b> PCIe </b> (See \ref CSL_PCIE) <br>
- * - <b> Memory Controller</b> <br>
- * - <b> EMIF </b> (See \ref CSL_EMIF) <br>
- * - <b> GPMC </b> (See \ref CSL_GPMC) <br>
- * - <b> OCMC </b> (See \ref CSL_IP_MODULE_OCMC) <br>
- * - <b> Memory/Storage</b> <br>
- * - <b> MMCSD </b> (See \ref CSL_MMCSD) <br>
- *
- * - <b> SOC Module </b> <br>
- * This Module contain the SOC level configuration API's such as cross bar configuration, cross bar defines, SOC defines
- * - <b> Device Common API's</b> (See \ref CSL_DEVICE_COMMON) <br>
- * - <b> TDA2EX</b> (See \ref SOC_TDA2EX) <br>
- * - <b> TDA2PX</b> (See \ref SOC_TDA2PX) <br>
- * - <b> TDA2XX</b> (See \ref SOC_TDA2XX) <br>
- * - <b> TDA3XX</b> (See \ref SOC_TDA3XX) <br>
- *
- * - <b> ARCH Module </b> <br>
- * This Module contain the core specific configuration API's such as Interrupt, Cache, ECC
- * - <b> A15</b> (See \ref CSL_ARCH_A15) <br>
- * - <b> DSP-C66x</b> (See \ref CSL_ARCH_C66X) <br>
- * - <b> M4</b> (See \ref CSL_ARCH_M4) <br>
- * - <b> EVE</b> (See \ref CSL_ARCH_ARP32) <br>
- */
- /**
- * \page TI_DISCLAIMER TI Disclaimer
- *
- * \htmlinclude ti_disclaim.htm
- */
|