]> git.sur5r.net Git - freertos/blob - Demo/WizNET_DEMO_GCC_ARM7/i2cISR.c
Update to V4.4.0.
[freertos] / Demo / WizNET_DEMO_GCC_ARM7 / i2cISR.c
1 /*\r
2         FreeRTOS.org V4.4.0 - Copyright (C) 2003-2007 Richard Barry.\r
3 \r
4         This file is part of the FreeRTOS.org distribution.\r
5 \r
6         FreeRTOS.org is free software; you can redistribute it and/or modify\r
7         it under the terms of the GNU General Public License as published by\r
8         the Free Software Foundation; either version 2 of the License, or\r
9         (at your option) any later version.\r
10 \r
11         FreeRTOS.org is distributed in the hope that it will be useful,\r
12         but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14         GNU General Public License for more details.\r
15 \r
16         You should have received a copy of the GNU General Public License\r
17         along with FreeRTOS.org; if not, write to the Free Software\r
18         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19 \r
20         A special exception to the GPL can be applied should you wish to distribute\r
21         a combined work that includes FreeRTOS.org, without being obliged to provide\r
22         the source code for any proprietary components.  See the licensing section \r
23         of http://www.FreeRTOS.org for full details of how and when the exception\r
24         can be applied.\r
25 \r
26         ***************************************************************************\r
27         See http://www.FreeRTOS.org for documentation, latest information, license \r
28         and contact details.  Please ensure to read the configuration and relevant \r
29         port sections of the online documentation.\r
30 \r
31         Also see http://www.SafeRTOS.com for an IEC 61508 compliant version along\r
32         with commercial development and support options.\r
33         ***************************************************************************\r
34 */\r
35 \r
36 \r
37 /* Standard includes. */\r
38 #include <stdlib.h>\r
39 \r
40 /* Scheduler include files. */\r
41 #include "FreeRTOS.h"\r
42 #include "task.h"\r
43 #include "queue.h"\r
44 #include "semphr.h"\r
45 \r
46 /* Application includes. */\r
47 #include "i2c.h"\r
48 \r
49 /*-----------------------------------------------------------*/\r
50 \r
51 /* Bit definitions within the I2CONCLR register. */\r
52 #define i2cSTA_BIT              ( ( unsigned portCHAR ) 0x20 )\r
53 #define i2cSI_BIT               ( ( unsigned portCHAR ) 0x08 )\r
54 #define i2cSTO_BIT              ( ( unsigned portCHAR ) 0x10 )\r
55 #define i2cAA_BIT               ( ( unsigned portCHAR ) 0x04 )\r
56 \r
57 /* Status codes for the I2STAT register. */\r
58 #define i2cSTATUS_START_TXED                    ( 0x08 )\r
59 #define i2cSTATUS_REP_START_TXED                ( 0x10 )\r
60 #define i2cSTATUS_TX_ADDR_ACKED                 ( 0x18 )\r
61 #define i2cSTATUS_DATA_TXED                             ( 0x28 )\r
62 #define i2cSTATUS_RX_ADDR_ACKED                 ( 0x40 )\r
63 #define i2cSTATUS_DATA_RXED                             ( 0x50 )\r
64 #define i2cSTATUS_LAST_BYTE_RXED                ( 0x58 )\r
65 \r
66 /* Constants for operation of the VIC. */\r
67 #define i2cCLEAR_VIC_INTERRUPT  ( 0 )\r
68 \r
69 /* Misc constants. */\r
70 #define i2cJUST_ONE_BYTE_TO_RX  ( 1 )\r
71 #define i2cBUFFER_ADDRESS_BYTES ( 2 )\r
72 \r
73 /* End the current transmission and free the bus. */\r
74 #define i2cEND_TRANSMISSION( lStatus )                                  \\r
75 {                                                                                                               \\r
76         I2C_I2CONCLR = i2cAA_BIT;                                                       \\r
77         I2C_I2CONSET = i2cSTO_BIT;                                                      \\r
78         eCurrentState = eSentStart;                                                     \\r
79         lTransactionCompleted = lStatus;                                        \\r
80 }\r
81 /*-----------------------------------------------------------*/\r
82 \r
83 /* Valid i2c communication states. */\r
84 typedef enum\r
85 {\r
86         eSentStart,                             /*<< Last action was the transmission of a start bit. */\r
87         eSentAddressForWrite,   /*<< Last action was the transmission of the slave address we are to write to. */\r
88         eSentAddressForRead,    /*<< Last action was the transmission of the slave address we are to read from. */\r
89         eSentData,                              /*<< Last action was the transmission of a data byte. */\r
90         eReceiveData                    /*<< We expected data to be received. */\r
91 } I2C_STATE;\r
92 /*-----------------------------------------------------------*/\r
93 \r
94 /* Points to the message currently being sent. */\r
95 volatile xI2CMessage *pxCurrentMessage = NULL;  \r
96 \r
97 /* The queue of messages waiting to be transmitted. */\r
98 static xQueueHandle xMessagesForTx;\r
99 \r
100 /* Flag used to indicate whether or not the ISR is amid sending a message. */\r
101 unsigned portLONG ulBusFree = ( unsigned portLONG ) pdTRUE;\r
102 \r
103 /* Setting this to true will cause the TCP task to think a message is \r
104 complete and thus restart.  It can therefore be used under error states\r
105 to force a restart. */\r
106 volatile portLONG lTransactionCompleted = pdTRUE;\r
107 \r
108 /*-----------------------------------------------------------*/\r
109 \r
110 void vI2CISRCreateQueues( unsigned portBASE_TYPE uxQueueLength, xQueueHandle *pxTxMessages, unsigned portLONG **ppulBusFree )\r
111 {\r
112         /* Create the queues used to hold Rx and Tx characters. */\r
113         xMessagesForTx = xQueueCreate( uxQueueLength, ( unsigned portBASE_TYPE ) sizeof( xI2CMessage * ) );\r
114 \r
115         /* Pass back a reference to the queue and bus free flag so the I2C API file \r
116         can post messages. */\r
117         *pxTxMessages = xMessagesForTx;\r
118         *ppulBusFree = &ulBusFree;\r
119 }\r
120 /*-----------------------------------------------------------*/\r
121 \r
122 void vI2C_ISR( void ) __attribute__ (( naked ));\r
123 void vI2C_ISR( void )\r
124 {\r
125         portENTER_SWITCHING_ISR();\r
126 \r
127         /* Holds the current transmission state. */                                                     \r
128         static I2C_STATE eCurrentState = eSentStart;\r
129         static portLONG lMessageIndex = -i2cBUFFER_ADDRESS_BYTES; /* There are two address bytes to send prior to the data. */\r
130         portBASE_TYPE xTaskWokenByTx = pdFALSE;\r
131         portLONG lBytesLeft;\r
132 \r
133         /* The action taken for this interrupt depends on our current state. */\r
134         switch( eCurrentState )\r
135         {\r
136                 case eSentStart :       \r
137 \r
138                                 /* We sent a start bit, if it was successful we can\r
139                                 go on to send the slave address. */\r
140                                 if( ( I2C_I2STAT == i2cSTATUS_START_TXED ) || ( I2C_I2STAT == i2cSTATUS_REP_START_TXED ) )\r
141                                 {\r
142                                         /* Send the slave address. */\r
143                                         I2C_I2DAT = pxCurrentMessage->ucSlaveAddress;\r
144 \r
145                                         if( pxCurrentMessage->ucSlaveAddress & i2cREAD )\r
146                                         {\r
147                                                 /* We are then going to read bytes back from the \r
148                                                 slave. */\r
149                                                 eCurrentState = eSentAddressForRead;\r
150                                                 \r
151                                                 /* Initialise the buffer index so the first byte goes\r
152                                                 into the first buffer position. */\r
153                                                 lMessageIndex = 0;\r
154                                         }\r
155                                         else\r
156                                         {\r
157                                                 /* We are then going to write some data to the slave. */\r
158                                                 eCurrentState = eSentAddressForWrite;\r
159 \r
160                                                 /* When writing bytes we first have to send the two\r
161                                                 byte buffer address so lMessageIndex is set negative,\r
162                                                 when it reaches 0 it is time to send the actual data. */\r
163                                                 lMessageIndex = -i2cBUFFER_ADDRESS_BYTES;\r
164                                         }\r
165                                 }\r
166                                 else\r
167                                 {\r
168                                         /* Could not send the start bit so give up. */\r
169                                         i2cEND_TRANSMISSION( pdFAIL );                                  \r
170                                 }\r
171 \r
172                                 I2C_I2CONCLR = i2cSTA_BIT;                              \r
173 \r
174                                 break;\r
175 \r
176                 case eSentAddressForWrite :\r
177 \r
178                                 /* We sent the address of the slave we are going to write to.\r
179                                 If this was acknowledged we     can go on to send the data. */\r
180                                 if( I2C_I2STAT == i2cSTATUS_TX_ADDR_ACKED )\r
181                                 {\r
182                                         /* Start the first byte transmitting which is the \r
183                                         first byte of the buffer address to which the data will \r
184                                         be sent. */\r
185                                         I2C_I2DAT = pxCurrentMessage->ucBufferAddressHighByte;\r
186                                         eCurrentState = eSentData;\r
187                                 }\r
188                                 else\r
189                                 {\r
190                                         /* Address was not acknowledged so give up. */\r
191                                         i2cEND_TRANSMISSION( pdFAIL );                                  \r
192                                 }                                       \r
193                                 break;\r
194 \r
195                 case eSentAddressForRead :\r
196 \r
197                                 /* We sent the address of the slave we are going to read from.\r
198                                 If this was acknowledged we can go on to read the data. */\r
199                                 if( I2C_I2STAT == i2cSTATUS_RX_ADDR_ACKED )\r
200                                 {\r
201                                         eCurrentState = eReceiveData;\r
202                                         if( pxCurrentMessage->lMessageLength > i2cJUST_ONE_BYTE_TO_RX )\r
203                                         {\r
204                                                 /* Don't ack the last byte of the message. */\r
205                                                 I2C_I2CONSET = i2cAA_BIT;\r
206                                         }                                       \r
207                                 }\r
208                                 else\r
209                                 {\r
210                                         /* Something unexpected happened - give up. */\r
211                                         i2cEND_TRANSMISSION( pdFAIL );                                  \r
212                                 }\r
213                                 break;\r
214 \r
215                 case eReceiveData :\r
216                                 \r
217                                 /* We have just received a byte from the slave. */\r
218                                 if( ( I2C_I2STAT == i2cSTATUS_DATA_RXED ) || ( I2C_I2STAT == i2cSTATUS_LAST_BYTE_RXED ) )\r
219                                 {\r
220                                         /* Buffer the byte just received then increment the index \r
221                                         so it points to the next free space. */\r
222                                         pxCurrentMessage->pucBuffer[ lMessageIndex ] = I2C_I2DAT;\r
223                                         lMessageIndex++;\r
224 \r
225                                         /* How many more bytes are we expecting to receive? */\r
226                                         lBytesLeft = pxCurrentMessage->lMessageLength - lMessageIndex;\r
227                                         if( lBytesLeft == ( unsigned portLONG ) 0 )\r
228                                         {\r
229                                                 /* This was the last byte in the message. */\r
230                                                 i2cEND_TRANSMISSION( pdPASS );\r
231 \r
232                                                 /* If xMessageCompleteSemaphore is not null then there\r
233                                                 is a task waiting for this message to complete and we\r
234                                                 must 'give' the semaphore so the task is woken.*/\r
235                                                 if( pxCurrentMessage->xMessageCompleteSemaphore )\r
236                                                 {\r
237                                                         xTaskWokenByTx = xSemaphoreGiveFromISR( pxCurrentMessage->xMessageCompleteSemaphore, xTaskWokenByTx );\r
238                                                 }\r
239 \r
240                                                 /* Are there any other messages to transact? */\r
241                                                 if( xQueueReceiveFromISR( xMessagesForTx, &pxCurrentMessage, &xTaskWokenByTx ) == pdTRUE )\r
242                                                 {\r
243                                                         /* Start the next message - which was\r
244                                                         retrieved from the queue. */\r
245                                                         I2C_I2CONSET = i2cSTA_BIT;\r
246                                                 }\r
247                                                 else\r
248                                                 {\r
249                                                         /* No more messages were found to be waiting for\r
250                                                         transaction so the bus is free. */\r
251                                                         ulBusFree = ( unsigned portLONG ) pdTRUE;                       \r
252                                                 }                                               \r
253                                         }\r
254                                         else\r
255                                         {\r
256                                                 /* There are more bytes to receive but don't ack the \r
257                                                 last byte. */\r
258                                                 if( lBytesLeft <= i2cJUST_ONE_BYTE_TO_RX )\r
259                                                 {\r
260                                                         I2C_I2CONCLR = i2cAA_BIT;\r
261                                                 }                                                        \r
262                                         }\r
263                                 }\r
264                                 else\r
265                                 {\r
266                                         /* Something unexpected happened - give up. */\r
267                                         i2cEND_TRANSMISSION( pdFAIL );                                  \r
268                                 }\r
269 \r
270                                 break;\r
271                                 \r
272                 case eSentData  :       \r
273 \r
274                                 /* We sent a data byte, if successful send the  next byte in \r
275                                 the message. */\r
276                                 if( I2C_I2STAT == i2cSTATUS_DATA_TXED )\r
277                                 {\r
278                                         /* Index to the next byte to send. */\r
279                                         lMessageIndex++;\r
280                                         if( lMessageIndex < 0 )\r
281                                         {\r
282                                                 /* lMessage index is still negative so we have so far \r
283                                                 only sent the first byte of the buffer address.  Send \r
284                                                 the second byte now, then initialise the buffer index\r
285                                                 to zero so the next byte sent comes from the actual \r
286                                                 data buffer. */\r
287                                                 I2C_I2DAT = pxCurrentMessage->ucBufferAddressLowByte;\r
288                                         }\r
289                                         else if( lMessageIndex < pxCurrentMessage->lMessageLength )\r
290                                         {\r
291                                                 /* Simply send the next byte in the tx buffer. */\r
292                                                 I2C_I2DAT = pxCurrentMessage->pucBuffer[ lMessageIndex ];                                                                               \r
293                                         }\r
294                                         else\r
295                                         {\r
296                                                 /* No more bytes in this message to be send.  Finished \r
297                                                 sending message - send a stop bit. */\r
298                                                 i2cEND_TRANSMISSION( pdPASS );\r
299 \r
300                                                 /* If xMessageCompleteSemaphore is not null then there\r
301                                                 is a task waiting for this message to be sent and the\r
302                                                 semaphore must be 'given' to wake the task. */\r
303                                                 if( pxCurrentMessage->xMessageCompleteSemaphore )\r
304                                                 {\r
305                                                         xTaskWokenByTx = xSemaphoreGiveFromISR( pxCurrentMessage->xMessageCompleteSemaphore, xTaskWokenByTx );\r
306                                                 }\r
307 \r
308                                                 /* Are there any other messages to transact? */\r
309                                                 if( xQueueReceiveFromISR( xMessagesForTx, &pxCurrentMessage, &xTaskWokenByTx ) == pdTRUE )\r
310                                                 {\r
311                                                         /* Start the next message from the Tx queue. */\r
312                                                         I2C_I2CONSET = i2cSTA_BIT;\r
313                                                 }\r
314                                                 else\r
315                                                 {\r
316                                                         /* No more message were queues for transaction so \r
317                                                         the bus is free. */\r
318                                                         ulBusFree = ( unsigned portLONG ) pdTRUE;                       \r
319                                                 }\r
320                                         }\r
321                                 }\r
322                                 else\r
323                                 {\r
324                                         /* Something unexpected happened, give up. */\r
325                                         i2cEND_TRANSMISSION( pdFAIL );                                  \r
326                                 }\r
327                                 break;\r
328 \r
329                 default :       \r
330                 \r
331                                 /* Should never get here. */\r
332                                 eCurrentState = eSentStart;\r
333                                 break;\r
334         }       \r
335 \r
336         /* Clear the interrupt. */\r
337         I2C_I2CONCLR = i2cSI_BIT;\r
338         VICVectAddr = i2cCLEAR_VIC_INTERRUPT;\r
339 \r
340         portEXIT_SWITCHING_ISR( ( xTaskWokenByTx ) );\r
341 }\r
342 /*-----------------------------------------------------------*/\r
343 \r