TsiChungLiew | 7af7751 | 2008-01-14 15:30:15 -0600 | [diff] [blame^] | 1 | /* |
| 2 | * MCF5227x Internal Memory Map |
| 3 | * |
| 4 | * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. |
| 5 | * TsiChung Liew (Tsi-Chung.Liew@freescale.com) |
| 6 | * |
| 7 | * See file CREDITS for list of people who contributed to this |
| 8 | * project. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation; either version 2 of |
| 13 | * the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 23 | * MA 02111-1307 USA |
| 24 | */ |
| 25 | |
| 26 | #ifndef __DSPI_H__ |
| 27 | #define __DSPI_H__ |
| 28 | |
| 29 | /********************************************************************* |
| 30 | * DMA Serial Peripheral Interface (DSPI) |
| 31 | *********************************************************************/ |
| 32 | |
| 33 | typedef struct dspi { |
| 34 | u32 dmcr; |
| 35 | u8 resv0[0x4]; |
| 36 | u32 dtcr; |
| 37 | u32 dctar0; |
| 38 | u32 dctar1; |
| 39 | u32 dctar2; |
| 40 | u32 dctar3; |
| 41 | u32 dctar4; |
| 42 | u32 dctar5; |
| 43 | u32 dctar6; |
| 44 | u32 dctar7; |
| 45 | u32 dsr; |
| 46 | u32 dirsr; |
| 47 | u32 dtfr; |
| 48 | u32 drfr; |
| 49 | u32 dtfdr0; |
| 50 | u32 dtfdr1; |
| 51 | u32 dtfdr2; |
| 52 | u32 dtfdr3; |
| 53 | u8 resv1[0x30]; |
| 54 | u32 drfdr0; |
| 55 | u32 drfdr1; |
| 56 | u32 drfdr2; |
| 57 | u32 drfdr3; |
| 58 | } dspi_t; |
| 59 | |
| 60 | /* Bit definitions and macros for DMCR */ |
| 61 | #define DSPI_DMCR_HALT (0x00000001) |
| 62 | #define DSPI_DMCR_SMPL_PT(x) (((x)&0x00000003)<<8) |
| 63 | #define DSPI_DMCR_CRXF (0x00000400) |
| 64 | #define DSPI_DMCR_CTXF (0x00000800) |
| 65 | #define DSPI_DMCR_DRXF (0x00001000) |
| 66 | #define DSPI_DMCR_DTXF (0x00002000) |
| 67 | #define DSPI_DMCR_CSIS0 (0x00010000) |
| 68 | #define DSPI_DMCR_CSIS2 (0x00040000) |
| 69 | #define DSPI_DMCR_CSIS3 (0x00080000) |
| 70 | #define DSPI_DMCR_CSIS5 (0x00200000) |
| 71 | #define DSPI_DMCR_ROOE (0x01000000) |
| 72 | #define DSPI_DMCR_PCSSE (0x02000000) |
| 73 | #define DSPI_DMCR_MTFE (0x04000000) |
| 74 | #define DSPI_DMCR_FRZ (0x08000000) |
| 75 | #define DSPI_DMCR_DCONF(x) (((x)&0x00000003)<<28) |
| 76 | #define DSPI_DMCR_CSCK (0x40000000) |
| 77 | #define DSPI_DMCR_MSTR (0x80000000) |
| 78 | |
| 79 | /* Bit definitions and macros for DTCR */ |
| 80 | #define DSPI_DTCR_SPI_TCNT(x) (((x)&0x0000FFFF)<<16) |
| 81 | |
| 82 | /* Bit definitions and macros for DCTAR group */ |
| 83 | #define DSPI_DCTAR_BR(x) (((x)&0x0000000F)) |
| 84 | #define DSPI_DCTAR_DT(x) (((x)&0x0000000F)<<4) |
| 85 | #define DSPI_DCTAR_ASC(x) (((x)&0x0000000F)<<8) |
| 86 | #define DSPI_DCTAR_CSSCK(x) (((x)&0x0000000F)<<12) |
| 87 | #define DSPI_DCTAR_PBR(x) (((x)&0x00000003)<<16) |
| 88 | #define DSPI_DCTAR_PDT(x) (((x)&0x00000003)<<18) |
| 89 | #define DSPI_DCTAR_PASC(x) (((x)&0x00000003)<<20) |
| 90 | #define DSPI_DCTAR_PCSSCK(x) (((x)&0x00000003)<<22) |
| 91 | #define DSPI_DCTAR_LSBFE (0x01000000) |
| 92 | #define DSPI_DCTAR_CPHA (0x02000000) |
| 93 | #define DSPI_DCTAR_CPOL (0x04000000) |
| 94 | #define DSPI_DCTAR_TRSZ(x) (((x)&0x0000000F)<<27) |
| 95 | #define DSPI_DCTAR_PCSSCK_1CLK (0x00000000) |
| 96 | #define DSPI_DCTAR_PCSSCK_3CLK (0x00400000) |
| 97 | #define DSPI_DCTAR_PCSSCK_5CLK (0x00800000) |
| 98 | #define DSPI_DCTAR_PCSSCK_7CLK (0x00A00000) |
| 99 | #define DSPI_DCTAR_PASC_1CLK (0x00000000) |
| 100 | #define DSPI_DCTAR_PASC_3CLK (0x00100000) |
| 101 | #define DSPI_DCTAR_PASC_5CLK (0x00200000) |
| 102 | #define DSPI_DCTAR_PASC_7CLK (0x00300000) |
| 103 | #define DSPI_DCTAR_PDT_1CLK (0x00000000) |
| 104 | #define DSPI_DCTAR_PDT_3CLK (0x00040000) |
| 105 | #define DSPI_DCTAR_PDT_5CLK (0x00080000) |
| 106 | #define DSPI_DCTAR_PDT_7CLK (0x000A0000) |
| 107 | #define DSPI_DCTAR_PBR_1CLK (0x00000000) |
| 108 | #define DSPI_DCTAR_PBR_3CLK (0x00010000) |
| 109 | #define DSPI_DCTAR_PBR_5CLK (0x00020000) |
| 110 | #define DSPI_DCTAR_PBR_7CLK (0x00030000) |
| 111 | |
| 112 | /* Bit definitions and macros for DSR */ |
| 113 | #define DSPI_DSR_RXPTR(x) (((x)&0x0000000F)) |
| 114 | #define DSPI_DSR_RXCTR(x) (((x)&0x0000000F)<<4) |
| 115 | #define DSPI_DSR_TXPTR(x) (((x)&0x0000000F)<<8) |
| 116 | #define DSPI_DSR_TXCTR(x) (((x)&0x0000000F)<<12) |
| 117 | #define DSPI_DSR_RFDF (0x00020000) |
| 118 | #define DSPI_DSR_RFOF (0x00080000) |
| 119 | #define DSPI_DSR_TFFF (0x02000000) |
| 120 | #define DSPI_DSR_TFUF (0x08000000) |
| 121 | #define DSPI_DSR_EOQF (0x10000000) |
| 122 | #define DSPI_DSR_TXRXS (0x40000000) |
| 123 | #define DSPI_DSR_TCF (0x80000000) |
| 124 | |
| 125 | /* Bit definitions and macros for DIRSR */ |
| 126 | #define DSPI_DIRSR_RFDFS (0x00010000) |
| 127 | #define DSPI_DIRSR_RFDFE (0x00020000) |
| 128 | #define DSPI_DIRSR_RFOFE (0x00080000) |
| 129 | #define DSPI_DIRSR_TFFFS (0x01000000) |
| 130 | #define DSPI_DIRSR_TFFFE (0x02000000) |
| 131 | #define DSPI_DIRSR_TFUFE (0x08000000) |
| 132 | #define DSPI_DIRSR_EOQFE (0x10000000) |
| 133 | #define DSPI_DIRSR_TCFE (0x80000000) |
| 134 | |
| 135 | /* Bit definitions and macros for DTFR */ |
| 136 | #define DSPI_DTFR_TXDATA(x) (((x)&0x0000FFFF)) |
| 137 | #define DSPI_DTFR_CS0 (0x00010000) |
| 138 | #define DSPI_DTFR_CS2 (0x00040000) |
| 139 | #define DSPI_DTFR_CS3 (0x00080000) |
| 140 | #define DSPI_DTFR_CS5 (0x00200000) |
| 141 | #define DSPI_DTFR_CTCNT (0x04000000) |
| 142 | #define DSPI_DTFR_EOQ (0x08000000) |
| 143 | #define DSPI_DTFR_CTAS(x) (((x)&0x00000007)<<28) |
| 144 | #define DSPI_DTFR_CONT (0x80000000) |
| 145 | |
| 146 | /* Bit definitions and macros for DRFR */ |
| 147 | #define DSPI_DRFR_RXDATA(x) (((x)&0x0000FFFF)) |
| 148 | |
| 149 | /* Bit definitions and macros for DTFDR group */ |
| 150 | #define DSPI_DTFDR_TXDATA(x) (((x)&0x0000FFFF)) |
| 151 | #define DSPI_DTFDR_TXCMD(x) (((x)&0x0000FFFF)<<16) |
| 152 | |
| 153 | /* Bit definitions and macros for DRFDR group */ |
| 154 | #define DSPI_DRFDR_RXDATA(x) (((x)&0x0000FFFF)) |
| 155 | |
| 156 | #endif /* __DSPI_H__ */ |