1 |
581 |
jeremybenn |
//*****************************************************************************
|
2 |
|
|
//
|
3 |
|
|
// hw_ssi.h - Macros used when accessing the SSI hardware.
|
4 |
|
|
//
|
5 |
|
|
// Copyright (c) 2005,2006 Luminary Micro, Inc. All rights reserved.
|
6 |
|
|
//
|
7 |
|
|
// Software License Agreement
|
8 |
|
|
//
|
9 |
|
|
// Luminary Micro, Inc. (LMI) is supplying this software for use solely and
|
10 |
|
|
// exclusively on LMI's Stellaris Family of microcontroller products.
|
11 |
|
|
//
|
12 |
|
|
// The software is owned by LMI and/or its suppliers, and is protected under
|
13 |
|
|
// applicable copyright laws. All rights are reserved. Any use in violation
|
14 |
|
|
// of the foregoing restrictions may subject the user to criminal sanctions
|
15 |
|
|
// under applicable laws, as well as to civil liability for the breach of the
|
16 |
|
|
// terms and conditions of this license.
|
17 |
|
|
//
|
18 |
|
|
// THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED
|
19 |
|
|
// OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
|
20 |
|
|
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.
|
21 |
|
|
// LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR
|
22 |
|
|
// CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.
|
23 |
|
|
//
|
24 |
|
|
// This is part of revision 816 of the Stellaris Driver Library.
|
25 |
|
|
//
|
26 |
|
|
//*****************************************************************************
|
27 |
|
|
|
28 |
|
|
#ifndef __HW_SSI_H__
|
29 |
|
|
#define __HW_SSI_H__
|
30 |
|
|
|
31 |
|
|
//*****************************************************************************
|
32 |
|
|
//
|
33 |
|
|
// The following define the offsets of the SSI registers.
|
34 |
|
|
//
|
35 |
|
|
//*****************************************************************************
|
36 |
|
|
#define SSI_O_CR0 0x00000000 // Control register 0
|
37 |
|
|
#define SSI_O_CR1 0x00000004 // Control register 1
|
38 |
|
|
#define SSI_O_DR 0x00000008 // Data register
|
39 |
|
|
#define SSI_O_SR 0x0000000C // Status register
|
40 |
|
|
#define SSI_O_CPSR 0x00000010 // Clock prescale register
|
41 |
|
|
#define SSI_O_IM 0x00000014 // Int mask set and clear register
|
42 |
|
|
#define SSI_O_RIS 0x00000018 // Raw interrupt register
|
43 |
|
|
#define SSI_O_MIS 0x0000001C // Masked interrupt register
|
44 |
|
|
#define SSI_O_ICR 0x00000020 // Interrupt clear register
|
45 |
|
|
|
46 |
|
|
//*****************************************************************************
|
47 |
|
|
//
|
48 |
|
|
// The following define the bit fields in the SSI Control register 0.
|
49 |
|
|
//
|
50 |
|
|
//*****************************************************************************
|
51 |
|
|
#define SSI_CR0_SCR 0x0000FF00 // Serial clock rate
|
52 |
|
|
#define SSI_CR0_SPH 0x00000080 // SSPCLKOUT phase
|
53 |
|
|
#define SSI_CR0_SPO 0x00000040 // SSPCLKOUT polarity
|
54 |
|
|
#define SSI_CR0_FRF_MASK 0x00000030 // Frame format mask
|
55 |
|
|
#define SSI_CR0_FRF_MOTO 0x00000000 // Motorola SPI frame format
|
56 |
|
|
#define SSI_CR0_FRF_TI 0x00000010 // TI sync serial frame format
|
57 |
|
|
#define SSI_CR0_FRF_NMW 0x00000020 // National Microwire frame format
|
58 |
|
|
#define SSI_CR0_DSS 0x0000000F // Data size select
|
59 |
|
|
#define SSI_CR0_DSS_4 0x00000003 // 4 bit data
|
60 |
|
|
#define SSI_CR0_DSS_5 0x00000004 // 5 bit data
|
61 |
|
|
#define SSI_CR0_DSS_6 0x00000005 // 6 bit data
|
62 |
|
|
#define SSI_CR0_DSS_7 0x00000006 // 7 bit data
|
63 |
|
|
#define SSI_CR0_DSS_8 0x00000007 // 8 bit data
|
64 |
|
|
#define SSI_CR0_DSS_9 0x00000008 // 9 bit data
|
65 |
|
|
#define SSI_CR0_DSS_10 0x00000009 // 10 bit data
|
66 |
|
|
#define SSI_CR0_DSS_11 0x0000000A // 11 bit data
|
67 |
|
|
#define SSI_CR0_DSS_12 0x0000000B // 12 bit data
|
68 |
|
|
#define SSI_CR0_DSS_13 0x0000000C // 13 bit data
|
69 |
|
|
#define SSI_CR0_DSS_14 0x0000000D // 14 bit data
|
70 |
|
|
#define SSI_CR0_DSS_15 0x0000000E // 15 bit data
|
71 |
|
|
#define SSI_CR0_DSS_16 0x0000000F // 16 bit data
|
72 |
|
|
|
73 |
|
|
//*****************************************************************************
|
74 |
|
|
//
|
75 |
|
|
// The following define the bit fields in the SSI Control register 1.
|
76 |
|
|
//
|
77 |
|
|
//*****************************************************************************
|
78 |
|
|
#define SSI_CR1_SOD 0x00000008 // Slave mode output disable
|
79 |
|
|
#define SSI_CR1_MS 0x00000004 // Master or slave mode select
|
80 |
|
|
#define SSI_CR1_SSE 0x00000002 // Sync serial port enable
|
81 |
|
|
#define SSI_CR1_LBM 0x00000001 // Loopback mode
|
82 |
|
|
|
83 |
|
|
//*****************************************************************************
|
84 |
|
|
//
|
85 |
|
|
// The following define the bit fields in the SSI Status register.
|
86 |
|
|
//
|
87 |
|
|
//*****************************************************************************
|
88 |
|
|
#define SSI_SR_BSY 0x00000010 // SSI busy
|
89 |
|
|
#define SSI_SR_RFF 0x00000008 // RX FIFO full
|
90 |
|
|
#define SSI_SR_RNE 0x00000004 // RX FIFO not empty
|
91 |
|
|
#define SSI_SR_TNF 0x00000002 // TX FIFO not full
|
92 |
|
|
#define SSI_SR_TFE 0x00000001 // TX FIFO empty
|
93 |
|
|
|
94 |
|
|
//*****************************************************************************
|
95 |
|
|
//
|
96 |
|
|
// The following define the bit fields in the SSI clock prescale register.
|
97 |
|
|
//
|
98 |
|
|
//*****************************************************************************
|
99 |
|
|
#define SSI_CPSR_CPSDVSR_MASK 0x000000FF // Clock prescale
|
100 |
|
|
|
101 |
|
|
//*****************************************************************************
|
102 |
|
|
//
|
103 |
|
|
// The following define information concerning the SSI Data register.
|
104 |
|
|
//
|
105 |
|
|
//*****************************************************************************
|
106 |
|
|
#define TX_FIFO_SIZE (8) // Number of entries in the TX FIFO
|
107 |
|
|
#define RX_FIFO_SIZE (8) // Number of entries in the RX FIFO
|
108 |
|
|
|
109 |
|
|
//*****************************************************************************
|
110 |
|
|
//
|
111 |
|
|
// The following define the bit fields in the interrupt mask set and clear,
|
112 |
|
|
// raw interrupt, masked interrupt, and interrupt clear registers.
|
113 |
|
|
//
|
114 |
|
|
//*****************************************************************************
|
115 |
|
|
#define SSI_INT_TXFF 0x00000008 // TX FIFO interrupt
|
116 |
|
|
#define SSI_INT_RXFF 0x00000004 // RX FIFO interrupt
|
117 |
|
|
#define SSI_INT_RXTO 0x00000002 // RX timeout interrupt
|
118 |
|
|
#define SSI_INT_RXOR 0x00000001 // RX overrun interrupt
|
119 |
|
|
|
120 |
|
|
#endif // __HW_SSI_H__
|