summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/lpc214x/lpc214x_spi.h
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-10-11 19:37:25 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-10-11 19:37:25 +0000
commit3b2030d6a688297d67c8a994502b9f692466e509 (patch)
treee5d5fd5ed184ac7d15b577643fefa66e5b089874 /nuttx/arch/arm/src/lpc214x/lpc214x_spi.h
parent9ab9aa14f35208b190a72ce0c7909f29dd1cf00a (diff)
downloadpx4-nuttx-3b2030d6a688297d67c8a994502b9f692466e509.tar.gz
px4-nuttx-3b2030d6a688297d67c8a994502b9f692466e509.tar.bz2
px4-nuttx-3b2030d6a688297d67c8a994502b9f692466e509.zip
Add header files for PINSEL and SPI
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1031 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/arm/src/lpc214x/lpc214x_spi.h')
-rw-r--r--nuttx/arch/arm/src/lpc214x/lpc214x_spi.h166
1 files changed, 166 insertions, 0 deletions
diff --git a/nuttx/arch/arm/src/lpc214x/lpc214x_spi.h b/nuttx/arch/arm/src/lpc214x/lpc214x_spi.h
new file mode 100644
index 000000000..202b9e250
--- /dev/null
+++ b/nuttx/arch/arm/src/lpc214x/lpc214x_spi.h
@@ -0,0 +1,166 @@
+/************************************************************************************
+ * arch/arm/src/lpc214x/lpc214x_spi.h
+ *
+ * Copyright (C) 2008 Gregory Nutt. All rights reserved.
+ * Author: Gregory Nutt <spudmonkey@racsa.co.cr>
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * 2. 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.
+ * 3. Neither the name NuttX 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.
+ *
+ ************************************************************************************/
+
+#ifndef _ARCH_ARM_SRC_LPC214X_SPI_H
+#define _ARCH_ARM_SRC_LPC214X_SPI_H
+
+/************************************************************************************
+ * Included Files
+ ************************************************************************************/
+
+#include "chip.h"
+
+/************************************************************************************
+ * Definitions
+ ************************************************************************************/
+
+/* Register address definitions *****************************************************/
+
+/* SPI absolute register addresses */
+
+#define LPC214X_SPI0_CR (LPC214X_SPI0_BASE+LPC214X_SPI0_CR_OFFSET) /* 16-bits wide */
+#define LPC214X_SPI0_SR (LPC214X_SPI0_BASE+LPC214X_SPI0_SR_OFFSET) /* 8-bits wide */
+#define LPC214X_SPI0_DR (LPC214X_SPI0_BASE+LPC214X_SPI0_DR_OFFSET) /* 16-bits wide */
+#define LPC214X_SPI0_CCR (LPC214X_SPI0_BASE+LPC214X_SPI0_CCR_OFFSET) /* 8-bits wide */
+#define LPC214X_SPI0_INT (LPC214X_SPI0_BASE+LPC214X_SPI0_INT_OFFSET) /* 8-bits wide */
+
+#define LPC214X_SPI1_CR0 (LPC214X_SPI1_BASE+LPC214X_SPI1_CR0_OFFSET) /* 16-bits wide */
+#define LPC214X_SPI1_CR1 (LPC214X_SPI1_BASE+LPC214X_SPI1_CR1_OFFSET) /* 8-bits wide */
+#define LPC214X_SPI1_DR (LPC214X_SPI1_BASE+LPC214X_SPI1_DR_OFFSET) /* 16-bits wide */
+#define LPC214X_SPI1_SR (LPC214X_SPI1_BASE+LPC214X_SPI1_SR_OFFSET) /* 8-bits wide */
+#define LPC214X_SPI1_CPSR (LPC214X_SPI1_BASE+LPC214X_SPI1_IMSC_OFFSET) /* 8-bits wide */
+#define LPC214X_SPI1_IMSC (LPC214X_SPI1_BASE+LPC214X_SPI1_IMSC_OFFSET) /* 8-bits wide */
+#define LPC214X_SPI1_RIS (LPC214X_SPI1_BASE+LPC214X_SPI1_RIS_OFFSET) /* 8-bits wide */
+#define LPC214X_SPI1_MIS (LPC214X_SPI1_BASE+LPC214X_SPI1_ICR_OFFSET) /* 8-bits wide */
+#define LPC214X_SPI1_ICR (LPC214X_SPI1_BASE+LPC214X_SPI1_ICR_OFFSET) /* 8-bits wide */
+
+/* SPI0 register bit definitions ****************************************************/
+
+/* Control Register (CR) for SPI0 */
+
+#define LPC214X_SPI0CR0_BITSENB (0x0004) /* Bit 2=0: 8-bits, else see bits 8-11 */
+#define LPC214X_SPI0CR0_CPHA (0x0008) /* Bit 3: Clock phase control */
+#define LPC214X_SPI0CR0_CPOL (0x0010) /* Bit 4: Clock polarity control */
+#define LPC214X_SPI0CR0_MSTR (0x0020) /* Bit 5=1: Master 0: Slave */
+#define LPC214X_SPI0CR0_LSBF (0x0040) /* Bit 6=1: Shift LSB first */
+#define LPC214X_SPI0CR0_SPIE (0x0080) /* Bit 7=1: SPI interrupt enable */
+#define LPC214X_SPI0CR0_BITSMASK (0x0f00) /* Bits 8-11: Number of bits per transfer */
+#define LPC214X_SPI0CR0_BITS8 (0x0800) /* 8-bits per transfer */
+#define LPC214X_SPI0CR0_BITS9 (0x0900) /* 9-bits per transfer */
+#define LPC214X_SPI0CR0_BITS10 (0x0a00) /* 10-bits per transfer */
+#define LPC214X_SPI0CR0_BITS11 (0x0b00) /* 11-bits per transfer */
+#define LPC214X_SPI0CR0_BITS12 (0x0c00) /* 12-bits per transfer */
+#define LPC214X_SPI0CR0_BITS13 (0x0d00) /* 13-bits per transfer */
+#define LPC214X_SPI0CR0_BITS14 (0x0e00) /* 14-bits per transfer */
+#define LPC214X_SPI0CR0_BITS15 (0x0f00) /* 15-bits per transfer */
+#define LPC214X_SPI0CR0_BITS16 (0x0000) /* 16-bits per transfer */
+
+/* Status Regiser (SR) for SPI0 */
+
+#define LPC214X_SPI0SR_ABRT (0x08) /* Bit 3=1: Slave abort */
+#define LPC214X_SPI0SR_MODF (0x10) /* Bit 4=1: Mode fault */
+#define LPC214X_SPI0SR_ROVR (0x20) /* Bit 5=1: Read overrun */
+#define LPC214X_SPI0SR_WCOL (0x40) /* Bit 6=1: Write collision */
+#define LPC214X_SPI0SR_SPIF (0x80) /* Bit 7=1: SPI transfer complete */
+
+/* Interrupt Register for SPI0 */
+
+#define LPC214X_SPO0INT_SPI (0x01) /* Bit 0=1: SPI interrupt */
+
+/* SPI1 register bit definitions ****************************************************/
+
+/* Control Register 0 (CR0) for SPI1 */
+
+#define LPC214X_SPI1CR0_DSSMASK (0x000f) /* Bits 0-3: Data size select mask */
+#define LPC214X_SPI1CR0_DSS4BIT (0x0003) /* 4-bit transfer */
+#define LPC214X_SPI1CR0_DSS5BIT (0x0004) /* 5-bit transfer */
+#define LPC214X_SPI1CR0_DSS6BIT (0x0005) /* 6-bit transfer */
+#define LPC214X_SPI1CR0_DSS7BIT (0x0006) /* 7-bit transfer */
+#define LPC214X_SPI1CR0_DSS8BIT (0x0007) /* 8-bit transfer */
+#define LPC214X_SPI1CR0_DSS9BIT (0x0008) /* 9-bit transfer */
+#define LPC214X_SPI1CR0_DSS10BIT (0x0009) /* 10-bit transfer */
+#define LPC214X_SPI1CR0_DSS11BIT (0x000a) /* 11-bit transfer */
+#define LPC214X_SPI1CR0_DSS12BIT (0x000b) /* 12-bit transfer */
+#define LPC214X_SPI1CR0_DSS13BIT (0x000c) /* 13-bit transfer */
+#define LPC214X_SPI1CR0_DSS14BIT (0x000d) /* 14-bit transfer */
+#define LPC214X_SPI1CR0_DSS15BIT (0x000e) /* 15-bit transfer */
+#define LPC214X_SPI1CR0_DSS16BIT (0x000f) /* 16-bit transfer */
+#define LPC214X_SPI1CR0_FRFMASK (0x0030) /* Bits 4-5: Frame format mask */
+#define LPC214X_SPI1CR0_FRFSPI (0x0000) /* SPI */
+#define LPC214X_SPI1CR0_FRFSSI (0x0010) /* SSI */
+#define LPC214X_SPI1CR0_FRFMW (0x0020) /* Microwire */
+#define LPC214X_SPI1CR0_CPOL (0x0040) /* Bit 6: Clock polarity control */
+#define LPC214X_SPI1CR0_CPHA (0x0080) /* Bit 7: Clock phase control */
+#define LPC214X_SPI1CR0_SCR (0xff00) /* Bits 8-15: Serial clock reate */
+
+/* Control Register 1 (CR1) */
+
+#define LPC214X_SPI1CR1_LBM (0x01) /* Bit 0: 1=Loopback mode */
+#define LPC214X_SPI1CR1_SSE (0x02) /* Bit 1: 1=SSP enable */
+#define LPC214X_SPI1CR1_MS (0x04) /* Bit 2: 1=Controller is slave */
+#define LPC214X_SPI1CR1_SOD (0x08) /* Bit 3: 1=Slave output disable */
+
+/* SSP Status Register (SR) */
+
+#define LPC214X_SPI1SR_TFE (0x01) /* Bit 0: 1=Transmit FIFO Empty */
+#define LPC214X_SPI1SR_TNF (0x02) /* Bit 1: 1=Transmit FIFO not full */
+#define LPC214X_SPI1SR_RNE (0x04) /* Bit 2: 1=Receive FIFO not empty */
+#define LPC214X_SPI1SR_RFF (0x08) /* Bit 3: 1=Receive FIFO full */
+#define LPC214X_SPI1SR_BSY (0x10) /* Bit 4: 1=Busy */
+
+/* Interrupt set/clear/status/mask registers (can't clear RXIM or TXIM) */
+
+#define LPC214X_SP1INT_ROR (0x01) /* Bit 0: 1=Recieve Overrun */
+#define LPC214X_SP1INT_RTIM (0x02) /* Bit 1: 1=Recieve Timeout */
+#define LPC214X_SP1INT_RXIM (0x04) /* Bit 2: 1=RX FIFO at least half full */
+#define LPC214X_SP1INT_TXIM (0x08) /* Bit 3: 1=TX FIFO at least half empty */
+
+/* SPI1 supports an 8-frame FIFO */
+
+#define LPC214X_SPI1_FIFOSZ (8)
+
+/************************************************************************************
+ * Public Types
+ ************************************************************************************/
+
+/************************************************************************************
+ * Inline Functions
+ ************************************************************************************/
+
+/************************************************************************************
+ * Public Function Prototypes
+ ************************************************************************************/
+
+#endif /* _ARCH_ARM_SRC_LPC214X_SPI_H */