summaryrefslogtreecommitdiffstats
path: root/arch/m68k/include/asm/coldfire/mcf548x/mcf548x_dspi.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/m68k/include/asm/coldfire/mcf548x/mcf548x_dspi.h')
-rw-r--r--arch/m68k/include/asm/coldfire/mcf548x/mcf548x_dspi.h155
1 files changed, 155 insertions, 0 deletions
diff --git a/arch/m68k/include/asm/coldfire/mcf548x/mcf548x_dspi.h b/arch/m68k/include/asm/coldfire/mcf548x/mcf548x_dspi.h
new file mode 100644
index 0000000000..4d8f33142e
--- /dev/null
+++ b/arch/m68k/include/asm/coldfire/mcf548x/mcf548x_dspi.h
@@ -0,0 +1,155 @@
+/*
+ * Copyright (c) 2008 Carsten Schlote <c.schlote@konzeptpark.de>
+ * See file CREDITS for list of people who contributed to this project.
+ *
+ * This file is part of U-Boot V2.
+ *
+ * U-Boot V2 is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * U-Boot V2 is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with U-Boot V2. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/** @file
+ * Register and bit definitions for the MCF548X and MCF547x
+ * DMA Serial Peripheral Interface (DSPI)
+ */
+#ifndef __MCF548X_DSPI_H__
+#define __MCF548X_DSPI_H__
+
+/*
+ * DMA Serial Peripheral Interface (DSPI)
+ */
+
+/* Register read/write macros */
+#define MCF_DSPI_DMCR (*(vuint32_t*)(&__MBAR[0x008A00]))
+#define MCF_DSPI_DTCR (*(vuint32_t*)(&__MBAR[0x008A08]))
+#define MCF_DSPI_DCTAR0 (*(vuint32_t*)(&__MBAR[0x008A0C]))
+#define MCF_DSPI_DCTAR1 (*(vuint32_t*)(&__MBAR[0x008A10]))
+#define MCF_DSPI_DCTAR2 (*(vuint32_t*)(&__MBAR[0x008A14]))
+#define MCF_DSPI_DCTAR3 (*(vuint32_t*)(&__MBAR[0x008A18]))
+#define MCF_DSPI_DCTAR4 (*(vuint32_t*)(&__MBAR[0x008A1C]))
+#define MCF_DSPI_DCTAR5 (*(vuint32_t*)(&__MBAR[0x008A20]))
+#define MCF_DSPI_DCTAR6 (*(vuint32_t*)(&__MBAR[0x008A24]))
+#define MCF_DSPI_DCTAR7 (*(vuint32_t*)(&__MBAR[0x008A28]))
+#define MCF_DSPI_DCTARn(x) (*(vuint32_t*)(&__MBAR[0x008A0C+((x)*0x004)]))
+#define MCF_DSPI_DSR (*(vuint32_t*)(&__MBAR[0x008A2C]))
+#define MCF_DSPI_DIRSR (*(vuint32_t*)(&__MBAR[0x008A30]))
+#define MCF_DSPI_DTFR (*(vuint32_t*)(&__MBAR[0x008A34]))
+#define MCF_DSPI_DRFR (*(vuint32_t*)(&__MBAR[0x008A38]))
+#define MCF_DSPI_DTFDR0 (*(vuint32_t*)(&__MBAR[0x008A3C]))
+#define MCF_DSPI_DTFDR1 (*(vuint32_t*)(&__MBAR[0x008A40]))
+#define MCF_DSPI_DTFDR2 (*(vuint32_t*)(&__MBAR[0x008A44]))
+#define MCF_DSPI_DTFDR3 (*(vuint32_t*)(&__MBAR[0x008A48]))
+#define MCF_DSPI_DTFDRn(x) (*(vuint32_t*)(&__MBAR[0x008A3C+((x)*0x004)]))
+#define MCF_DSPI_DRFDR0 (*(vuint32_t*)(&__MBAR[0x008A7C]))
+#define MCF_DSPI_DRFDR1 (*(vuint32_t*)(&__MBAR[0x008A80]))
+#define MCF_DSPI_DRFDR2 (*(vuint32_t*)(&__MBAR[0x008A84]))
+#define MCF_DSPI_DRFDR3 (*(vuint32_t*)(&__MBAR[0x008A88]))
+#define MCF_DSPI_DRFDRn(x) (*(vuint32_t*)(&__MBAR[0x008A7C+((x)*0x004)]))
+
+/* Bit definitions and macros for MCF_DSPI_DMCR */
+#define MCF_DSPI_DMCR_HALT (0x00000001)
+#define MCF_DSPI_DMCR_SMPL_PT(x) (((x)&0x00000003)<<8)
+#define MCF_DSPI_DMCR_CRXF (0x00000400)
+#define MCF_DSPI_DMCR_CTXF (0x00000800)
+#define MCF_DSPI_DMCR_DRXF (0x00001000)
+#define MCF_DSPI_DMCR_DTXF (0x00002000)
+#define MCF_DSPI_DMCR_CSIS0 (0x00010000)
+#define MCF_DSPI_DMCR_CSIS2 (0x00040000)
+#define MCF_DSPI_DMCR_CSIS3 (0x00080000)
+#define MCF_DSPI_DMCR_CSIS5 (0x00200000)
+#define MCF_DSPI_DMCR_ROOE (0x01000000)
+#define MCF_DSPI_DMCR_PCSSE (0x02000000)
+#define MCF_DSPI_DMCR_MTFE (0x04000000)
+#define MCF_DSPI_DMCR_FRZ (0x08000000)
+#define MCF_DSPI_DMCR_DCONF(x) (((x)&0x00000003)<<28)
+#define MCF_DSPI_DMCR_CSCK (0x40000000)
+#define MCF_DSPI_DMCR_MSTR (0x80000000)
+
+/* Bit definitions and macros for MCF_DSPI_DTCR */
+#define MCF_DSPI_DTCR_SPI_TCNT(x) (((x)&0x0000FFFF)<<16)
+
+/* Bit definitions and macros for MCF_DSPI_DCTARn */
+#define MCF_DSPI_DCTARn_BR(x) (((x)&0x0000000F)<<0)
+#define MCF_DSPI_DCTARn_DT(x) (((x)&0x0000000F)<<4)
+#define MCF_DSPI_DCTARn_ASC(x) (((x)&0x0000000F)<<8)
+#define MCF_DSPI_DCTARn_CSSCK(x) (((x)&0x0000000F)<<12)
+#define MCF_DSPI_DCTARn_PBR(x) (((x)&0x00000003)<<16)
+#define MCF_DSPI_DCTARn_PDT(x) (((x)&0x00000003)<<18)
+#define MCF_DSPI_DCTARn_PASC(x) (((x)&0x00000003)<<20)
+#define MCF_DSPI_DCTARn_PCSSCK(x) (((x)&0x00000003)<<22)
+#define MCF_DSPI_DCTARn_LSBFE (0x01000000)
+#define MCF_DSPI_DCTARn_CPHA (0x02000000)
+#define MCF_DSPI_DCTARn_CPOL (0x04000000)
+#define MCF_DSPI_DCTARn_TRSZ(x) (((x)&0x0000000F)<<27)
+#define MCF_DSPI_DCTARn_PCSSCK_1CLK (0x00000000)
+#define MCF_DSPI_DCTARn_PCSSCK_3CLK (0x00400000)
+#define MCF_DSPI_DCTARn_PCSSCK_5CLK (0x00800000)
+#define MCF_DSPI_DCTARn_PCSSCK_7CLK (0x00A00000)
+#define MCF_DSPI_DCTARn_PASC_1CLK (0x00000000)
+#define MCF_DSPI_DCTARn_PASC_3CLK (0x00100000)
+#define MCF_DSPI_DCTARn_PASC_5CLK (0x00200000)
+#define MCF_DSPI_DCTARn_PASC_7CLK (0x00300000)
+#define MCF_DSPI_DCTARn_PDT_1CLK (0x00000000)
+#define MCF_DSPI_DCTARn_PDT_3CLK (0x00040000)
+#define MCF_DSPI_DCTARn_PDT_5CLK (0x00080000)
+#define MCF_DSPI_DCTARn_PDT_7CLK (0x000A0000)
+#define MCF_DSPI_DCTARn_PBR_1CLK (0x00000000)
+#define MCF_DSPI_DCTARn_PBR_3CLK (0x00010000)
+#define MCF_DSPI_DCTARn_PBR_5CLK (0x00020000)
+#define MCF_DSPI_DCTARn_PBR_7CLK (0x00030000)
+
+/* Bit definitions and macros for MCF_DSPI_DSR */
+#define MCF_DSPI_DSR_RXPTR(x) (((x)&0x0000000F)<<0)
+#define MCF_DSPI_DSR_RXCTR(x) (((x)&0x0000000F)<<4)
+#define MCF_DSPI_DSR_TXPTR(x) (((x)&0x0000000F)<<8)
+#define MCF_DSPI_DSR_TXCTR(x) (((x)&0x0000000F)<<12)
+#define MCF_DSPI_DSR_RFDF (0x00020000)
+#define MCF_DSPI_DSR_RFOF (0x00080000)
+#define MCF_DSPI_DSR_TFFF (0x02000000)
+#define MCF_DSPI_DSR_TFUF (0x08000000)
+#define MCF_DSPI_DSR_EOQF (0x10000000)
+#define MCF_DSPI_DSR_TXRXS (0x40000000)
+#define MCF_DSPI_DSR_TCF (0x80000000)
+
+/* Bit definitions and macros for MCF_DSPI_DIRSR */
+#define MCF_DSPI_DIRSR_RFDFS (0x00010000)
+#define MCF_DSPI_DIRSR_RFDFE (0x00020000)
+#define MCF_DSPI_DIRSR_RFOFE (0x00080000)
+#define MCF_DSPI_DIRSR_TFFFS (0x01000000)
+#define MCF_DSPI_DIRSR_TFFFE (0x02000000)
+#define MCF_DSPI_DIRSR_TFUFE (0x08000000)
+#define MCF_DSPI_DIRSR_EOQFE (0x10000000)
+#define MCF_DSPI_DIRSR_TCFE (0x80000000)
+
+/* Bit definitions and macros for MCF_DSPI_DTFR */
+#define MCF_DSPI_DTFR_TXDATA(x) (((x)&0x0000FFFF)<<0)
+#define MCF_DSPI_DTFR_CS0 (0x00010000)
+#define MCF_DSPI_DTFR_CS2 (0x00040000)
+#define MCF_DSPI_DTFR_CS3 (0x00080000)
+#define MCF_DSPI_DTFR_CS5 (0x00200000)
+#define MCF_DSPI_DTFR_CTCNT (0x04000000)
+#define MCF_DSPI_DTFR_EOQ (0x08000000)
+#define MCF_DSPI_DTFR_CTAS(x) (((x)&0x00000007)<<28)
+#define MCF_DSPI_DTFR_CONT (0x80000000)
+
+/* Bit definitions and macros for MCF_DSPI_DRFR */
+#define MCF_DSPI_DRFR_RXDATA(x) (((x)&0x0000FFFF)<<0)
+
+/* Bit definitions and macros for MCF_DSPI_DTFDRn */
+#define MCF_DSPI_DTFDRn_TXDATA(x) (((x)&0x0000FFFF)<<0)
+#define MCF_DSPI_DTFDRn_TXCMD(x) (((x)&0x0000FFFF)<<16)
+
+/* Bit definitions and macros for MCF_DSPI_DRFDRn */
+#define MCF_DSPI_DRFDRn_RXDATA(x) (((x)&0x0000FFFF)<<0)
+
+#endif /* __MCF548X_DSPI_H__ */