Remove external reset generation, because on the board there are more device connecte...
[bertos.git] / bertos / cpu / cortex-m3 / drv / eth_sam3.c
1 /**
2   * \file
3   * <!--
4   * This file is part of BeRTOS.
5   *
6   * Bertos is free software; you can redistribute it and/or modify
7   * it under the terms of the GNU General Public License as published by
8   * the Free Software Foundation; either version 2 of the License, or
9   * (at your option) any later version.
10   *
11   * This program is distributed in the hope that it will be useful,
12   * but WITHOUT ANY WARRANTY; without even the implied warranty of
13   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   * GNU General Public License for more details.
15   *
16   * You should have received a copy of the GNU General Public License
17   * along with this program; if not, write to the Free Software
18   * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19   *
20   * As a special exception, you may use this file as part of a free software
21   * library without restriction.  Specifically, if other files instantiate
22   * templates or use macros or inline functions from this file, or you compile
23   * this file and link it with other files to produce an executable, this
24   * file does not by itself cause the resulting executable to be covered by
25   * the GNU General Public License.  This exception does not however
26   * invalidate any other reasons why the executable file might be covered by
27   * the GNU General Public License.
28   *
29   * Copyright 2010,2011 Develer S.r.l. (http://www.develer.com/)
30   * All Rights Reserved.
31   * -->
32   *
33   * \brief EMAC driver for AT91SAM family with Davicom 9161A phy.
34   *
35   * \author Daniele Basile <asterix@develer.com>
36   * \author Andrea Righi <arighi@develer.com>
37   * \author Stefano Fedrigo <aleph@develer.com>
38   */
39
40 #include "cfg/cfg_eth.h"
41
42 #define LOG_LEVEL  ETH_LOG_LEVEL
43 #define LOG_FORMAT ETH_LOG_FORMAT
44
45 #include <cfg/log.h>
46
47 #include <cfg/debug.h>
48 #include <cfg/log.h>
49 #include <cfg/macros.h>
50 #include <cfg/compiler.h>
51
52 // TODO: unify includes
53 //#include <io/at91sam7.h>
54 //#include <io/arm.h>
55 //#include <io/include.h>
56 #include <io/sam3.h>
57 #include <drv/irq_cm3.h>
58
59 #include <cpu/power.h>
60 #include <cpu/types.h>
61 #include <cpu/irq.h>
62
63 #include <drv/timer.h>
64 #include <drv/eth.h>
65
66 #include <mware/event.h>
67
68 #include <string.h>
69
70 #include "eth_sam3.h"
71
72 #define EMAC_RX_INTS    (BV(EMAC_RCOMP) | BV(EMAC_ROVR) | BV(EMAC_RXUBR))
73 #define EMAC_TX_INTS    (BV(EMAC_TCOMP) | BV(EMAC_TXUBR) | BV(EMAC_RLEX))
74
75 /* Silent Doxygen bug... */
76 #ifndef __doxygen__
77 /*
78  * NOTE: this buffer should be declared as 'volatile' because it is read by the
79  * hardware. However, this is accessed only via memcpy() that should guarantee
80  * coherency when copying from/to buffers.
81  */
82 static uint8_t tx_buf[EMAC_TX_BUFFERS * EMAC_TX_BUFSIZ] ALIGNED(8);
83 static volatile BufDescriptor tx_buf_tab[EMAC_TX_DESCRIPTORS] ALIGNED(8);
84
85 /*
86  * NOTE: this buffer should be declared as 'volatile' because it is wrote by
87  * the hardware. However, this is accessed only via memcpy() that should
88  * guarantee coherency when copying from/to buffers.
89  */
90 static uint8_t rx_buf[EMAC_RX_BUFFERS * EMAC_RX_BUFSIZ] ALIGNED(8);
91 static volatile BufDescriptor rx_buf_tab[EMAC_RX_DESCRIPTORS] ALIGNED(8);
92 #endif
93
94 static int tx_buf_idx;
95 static int tx_buf_offset;
96 static int rx_buf_idx;
97
98 static Event recv_wait, send_wait;
99
100 static DECLARE_ISR(emac_irqHandler)
101 {
102         /* Read interrupt status and disable interrupts. */
103         uint32_t isr = EMAC_ISR;
104
105         /* Receiver interrupt */
106         if ((isr & EMAC_RX_INTS))
107         {
108                 if (isr & BV(EMAC_RCOMP))
109                         event_do(&recv_wait);
110                 EMAC_RSR = EMAC_RX_INTS;
111         }
112         /* Transmitter interrupt */
113         if (isr & EMAC_TX_INTS)
114         {
115                 if (isr & BV(EMAC_TCOMP))
116                         event_do(&send_wait);
117                 EMAC_TSR = EMAC_TX_INTS;
118         }
119         //AIC_EOICR = 0;
120 }
121
122 /*
123  * \brief Read contents of PHY register.
124  *
125  * \param reg PHY register number.
126  *
127  * \return Contents of the specified register.
128  */
129 static uint16_t phy_hw_read(uint8_t phy_addr, reg8_t reg)
130 {
131         // PHY read command.
132         EMAC_MAN = EMAC_SOF | EMAC_RW_READ
133                 | ((phy_addr << EMAC_PHYA_SHIFT) & EMAC_PHYA)
134                 | ((reg  << EMAC_REGA_SHIFT) & EMAC_REGA)
135                 | EMAC_CODE;
136
137         // Wait until PHY logic completed.
138         while (!(EMAC_NSR & BV(EMAC_IDLE)))
139                 cpu_relax();
140
141         // Get data from PHY maintenance register.
142         return (uint16_t)(EMAC_MAN & EMAC_DATA);
143 }
144
145 #if 0
146 /*
147  * \brief Write value to PHY register.
148  *
149  * \param reg PHY register number.
150  * \param val Value to write.
151  */
152 static void phy_hw_write(uint8_t phy_addr, reg8_t reg, uint16_t val)
153 {
154         // PHY write command.
155         EMAC_MAN = EMAC_SOF | EMAC_RW_WRITE
156                 | ((phy_addr << EMAC_PHYA_SHIFT) & EMAC_PHYA)
157                 | ((reg  << EMAC_REGA_SHIFT) & EMAC_REGA)
158                 | EMAC_CODE | val;
159
160         // Wait until PHY logic completed.
161         while (!(EMAC_NSR & BV(EMAC_IDLE)))
162                 cpu_relax();
163 }
164 #endif
165
166 /*
167  * Check link speed and duplex as negotiated by the PHY
168  * and configure CPU EMAC accordingly.
169  * Requires active PHY maintenance mode.
170  */
171 static void emac_autoNegotiation(void)
172 {
173         uint16_t reg;
174         time_t start;
175
176         // Wait for auto-negotation to complete
177         start = timer_clock();
178         do {
179                 reg = phy_hw_read(NIC_PHY_ADDR, NIC_PHY_BMSR);
180                 if (timer_clock() - start > 2000)
181                 {
182                         kprintf("eth error: auto-negotiation timeout\n");
183                         return;
184                 }
185         }
186         while (!(reg & NIC_PHY_BMSR_ANCOMPL));
187
188         reg = phy_hw_read(NIC_PHY_ADDR, NIC_PHY_ANLPAR);
189
190         if ((reg & NIC_PHY_ANLPAR_TX_FDX) || (reg & NIC_PHY_ANLPAR_TX_HDX))
191         {
192                 LOG_INFO("eth: 100BASE-TX\n");
193                 EMAC_NCFGR |= BV(EMAC_SPD);
194         }
195         else
196         {
197                 LOG_INFO("eth: 10BASE-T\n");
198                 EMAC_NCFGR &= ~BV(EMAC_SPD);
199         }
200
201         if ((reg & NIC_PHY_ANLPAR_TX_FDX) || (reg & NIC_PHY_ANLPAR_10_FDX))
202         {
203                 LOG_INFO("eth: full duplex\n");
204                 EMAC_NCFGR |= BV(EMAC_FD);
205         }
206         else
207         {
208                 LOG_INFO("eth: half duplex\n");
209                 EMAC_NCFGR &= ~BV(EMAC_FD);
210         }
211 }
212
213
214 static int emac_reset(void)
215 {
216 #if CPU_ARM_AT91
217         // Enable devices
218         PMC_PCER = BV(PIOA_ID);
219         PMC_PCER = BV(PIOB_ID);
220         PMC_PCER = BV(EMAC_ID);
221
222         // Disable TESTMODE and RMII
223         PIOB_PUDR = BV(PHY_RXDV_TESTMODE_BIT);
224         PIOB_PUDR = BV(PHY_COL_RMII_BIT);
225
226         // Disable PHY power down.
227         PIOB_PER  = BV(PHY_PWRDN_BIT);
228         PIOB_OER  = BV(PHY_PWRDN_BIT);
229         PIOB_CODR = BV(PHY_PWRDN_BIT);
230 #else
231         pmc_periphEnable(PIOA_ID);
232         pmc_periphEnable(PIOB_ID);
233         pmc_periphEnable(PIOC_ID);
234         pmc_periphEnable(PIOD_ID);
235         pmc_periphEnable(EMAC_ID);
236
237         // Disable TESTMODE
238         PIOB_PUDR = BV(PHY_RXDV_TESTMODE_BIT);
239 #endif
240
241         // Configure MII ports.
242 #if CPU_ARM_AT91
243         PIOB_ASR = PHY_MII_PINS;
244         PIOB_BSR = 0;
245         PIOB_PDR = PHY_MII_PINS;
246
247         // Enable receive and transmit clocks.
248         EMAC_USRIO = BV(EMAC_CLKEN);
249 #else
250         PIO_PERIPH_SEL(PIOB_BASE, PHY_MII_PINS_PORTB, PIO_PERIPH_A);
251         PIOB_PDR = PHY_MII_PINS_PORTB;
252
253         // Enable receive, transmit clocks and RMII mode.
254         EMAC_USRIO = BV(EMAC_CLKEN) | BV(EMAC_RMII);
255 #endif
256
257         // Enable management port.
258         EMAC_NCR |= BV(EMAC_MPE);
259         EMAC_NCFGR |= EMAC_CLK_HCLK_64;
260
261         // Set local MAC address.
262         EMAC_SA1L = (mac_addr[3] << 24) | (mac_addr[2] << 16) |
263                                 (mac_addr[1] << 8) | mac_addr[0];
264         EMAC_SA1H = (mac_addr[5] << 8) | mac_addr[4];
265
266         emac_autoNegotiation();
267
268         // Disable management port.
269         EMAC_NCR &= ~BV(EMAC_MPE);
270
271         return 0;
272 }
273
274
275 static int emac_start(void)
276 {
277         uint32_t addr;
278         int i;
279
280         for (i = 0; i < EMAC_RX_DESCRIPTORS; i++)
281         {
282                 addr = (uint32_t)(rx_buf + (i * EMAC_RX_BUFSIZ));
283                 rx_buf_tab[i].addr = addr & BUF_ADDRMASK;
284         }
285         rx_buf_tab[EMAC_RX_DESCRIPTORS - 1].addr |= RXBUF_WRAP;
286
287         for (i = 0; i < EMAC_TX_DESCRIPTORS; i++)
288         {
289                 addr = (uint32_t)(tx_buf + (i * EMAC_TX_BUFSIZ));
290                 tx_buf_tab[i].addr = addr & BUF_ADDRMASK;
291                 tx_buf_tab[i].stat = TXS_USED;
292         }
293         tx_buf_tab[EMAC_TX_DESCRIPTORS - 1].stat = TXS_USED | TXS_WRAP;
294
295         /* Tell the EMAC where to find the descriptors. */
296         EMAC_RBQP = (uint32_t)rx_buf_tab;
297         EMAC_TBQP = (uint32_t)tx_buf_tab;
298
299         /* Clear receiver status. */
300         EMAC_RSR = BV(EMAC_OVR) | BV(EMAC_REC) | BV(EMAC_BNA);
301
302         /* Copy all frames and discard FCS. */
303         EMAC_NCFGR |= BV(EMAC_CAF) | BV(EMAC_DRFCS);
304
305         /* Enable receiver, transmitter and statistics. */
306         EMAC_NCR |= BV(EMAC_TE) | BV(EMAC_RE) | BV(EMAC_WESTAT);
307
308         return 0;
309 }
310
311 ssize_t eth_putFrame(const uint8_t *buf, size_t len)
312 {
313         size_t wr_len;
314
315         if (UNLIKELY(!len))
316                 return -1;
317         ASSERT(len <= sizeof(tx_buf));
318
319         /* Check if the transmit buffer is available */
320         while (!(tx_buf_tab[tx_buf_idx].stat & TXS_USED))
321                 event_wait(&send_wait);
322
323         /* Copy the data into the buffer and prepare descriptor */
324         wr_len = MIN(len, (size_t)EMAC_TX_BUFSIZ - tx_buf_offset);
325         memcpy((uint8_t *)tx_buf_tab[tx_buf_idx].addr + tx_buf_offset,
326                         buf, wr_len);
327         tx_buf_offset += wr_len;
328
329         return wr_len;
330 }
331
332 void eth_sendFrame(void)
333 {
334         tx_buf_tab[tx_buf_idx].stat = (tx_buf_offset & TXS_LENGTH_FRAME) |
335                 TXS_LAST_BUFF |
336                 ((tx_buf_idx == EMAC_TX_DESCRIPTORS - 1) ?  TXS_WRAP : 0);
337         EMAC_NCR |= BV(EMAC_TSTART);
338
339         tx_buf_offset = 0;
340         if (++tx_buf_idx >= EMAC_TX_DESCRIPTORS)
341                 tx_buf_idx = 0;
342 }
343
344 ssize_t eth_send(const uint8_t *buf, size_t len)
345  {
346         if (UNLIKELY(!len))
347                 return -1;
348
349         len = eth_putFrame(buf, len);
350         eth_sendFrame();
351
352         return len;
353 }
354
355 static void eth_buf_realign(int idx)
356 {
357         /* Empty buffer found. Realign. */
358         do {
359                 rx_buf_tab[rx_buf_idx].addr &= ~RXBUF_OWNERSHIP;
360                 if (++rx_buf_idx >= EMAC_RX_BUFFERS)
361                         rx_buf_idx = 0;
362         } while (idx != rx_buf_idx);
363 }
364
365 static size_t __eth_getFrameLen(void)
366 {
367         int idx, n = EMAC_RX_BUFFERS;
368
369 skip:
370         /* Skip empty buffers */
371         while ((n > 0) && !(rx_buf_tab[rx_buf_idx].addr & RXBUF_OWNERSHIP))
372         {
373                 if (++rx_buf_idx >= EMAC_RX_BUFFERS)
374                         rx_buf_idx = 0;
375                 n--;
376         }
377         if (UNLIKELY(!n))
378         {
379                 LOG_INFO("no frame found\n");
380                 return 0;
381         }
382         /* Search the start of frame and cleanup fragments */
383         while ((n > 0) && (rx_buf_tab[rx_buf_idx].addr & RXBUF_OWNERSHIP) &&
384                         !(rx_buf_tab[rx_buf_idx].stat & RXS_SOF))
385         {
386                 rx_buf_tab[rx_buf_idx].addr &= ~RXBUF_OWNERSHIP;
387                 if (++rx_buf_idx >= EMAC_RX_BUFFERS)
388                         rx_buf_idx = 0;
389                 n--;
390         }
391         if (UNLIKELY(!n))
392         {
393                 LOG_INFO("no SOF found\n");
394                 return 0;
395         }
396         /* Search end of frame to evaluate the total frame size */
397         idx = rx_buf_idx;
398 restart:
399         while (n > 0)
400         {
401                 if (UNLIKELY(!(rx_buf_tab[idx].addr & RXBUF_OWNERSHIP)))
402                 {
403                         /* Empty buffer found. Realign. */
404                         eth_buf_realign(idx);
405                         goto skip;
406                 }
407                 if (rx_buf_tab[idx].stat & RXS_EOF)
408                         return rx_buf_tab[idx].stat & RXS_LENGTH_FRAME;
409                 if (UNLIKELY((idx != rx_buf_idx) &&
410                                 (rx_buf_tab[idx].stat & RXS_SOF)))
411                 {
412                         /* Another start of frame found. Realign. */
413                         eth_buf_realign(idx);
414                         goto restart;
415                 }
416                 if (++idx >= EMAC_RX_BUFFERS)
417                         idx = 0;
418                 n--;
419         }
420         LOG_INFO("no EOF found\n");
421         return 0;
422 }
423
424 size_t eth_getFrameLen(void)
425 {
426         size_t len;
427
428         /* Check if there is at least one available frame in the buffer */
429         while (1)
430         {
431                 len = __eth_getFrameLen();
432                 if (LIKELY(len))
433                         break;
434                 /* Wait for RX interrupt */
435                 event_wait(&recv_wait);
436         }
437         return len;
438 }
439
440 ssize_t eth_getFrame(uint8_t *buf, size_t len)
441 {
442         uint8_t *addr;
443         size_t rd_len = 0;
444
445         if (UNLIKELY(!len))
446                 return -1;
447         ASSERT(len <= sizeof(rx_buf));
448
449         /* Copy data from the RX buffer */
450         addr = (uint8_t *)(rx_buf_tab[rx_buf_idx].addr & BUF_ADDRMASK);
451         if (addr + len > &rx_buf[countof(rx_buf)])
452         {
453                 size_t count = &rx_buf[countof(rx_buf)] - addr;
454
455                 memcpy(buf, addr, count);
456                 memcpy(buf + count, rx_buf, len - count);
457         }
458         else
459         {
460                 memcpy(buf, addr, len);
461         }
462         /* Update descriptors */
463         while (rd_len < len)
464         {
465                 if (len - rd_len >= EMAC_RX_BUFSIZ)
466                         rd_len += EMAC_RX_BUFSIZ;
467                 else
468                         rd_len += len - rd_len;
469                 if (UNLIKELY(!(rx_buf_tab[rx_buf_idx].addr & RXBUF_OWNERSHIP)))
470                 {
471                         LOG_INFO("bad frame found\n");
472                         return 0;
473                 }
474                 rx_buf_tab[rx_buf_idx].addr &= ~RXBUF_OWNERSHIP;
475                 if (++rx_buf_idx >= EMAC_RX_DESCRIPTORS)
476                         rx_buf_idx = 0;
477         }
478
479         return rd_len;
480 }
481
482 ssize_t eth_recv(uint8_t *buf, size_t len)
483 {
484         if (UNLIKELY(!len))
485                 return -1;
486         len = MIN(len, eth_getFrameLen());
487         return len ? eth_getFrame(buf, len) : 0;
488 }
489
490 int eth_init()
491 {
492         cpu_flags_t flags;
493
494         emac_reset();
495         emac_start();
496
497         event_initGeneric(&recv_wait);
498         event_initGeneric(&send_wait);
499
500         // Register interrupt vector
501         IRQ_SAVE_DISABLE(flags);
502
503         /* Disable all emac interrupts */
504         EMAC_IDR = 0xFFFFFFFF;
505
506 #if CPU_ARM_AT91
507         // TODO: define sysirq_set...
508         /* Set the vector. */
509         AIC_SVR(EMAC_ID) = emac_irqHandler;
510         /* Initialize to edge triggered with defined priority. */
511         AIC_SMR(EMAC_ID) = AIC_SRCTYPE_INT_EDGE_TRIGGERED;
512         /* Clear pending interrupt */
513         AIC_ICCR = BV(EMAC_ID);
514         /* Enable the system IRQ */
515         AIC_IECR = BV(EMAC_ID);
516 #else
517         sysirq_setHandler(INT_EMAC, emac_irqHandler);
518 #endif
519
520         /* Enable interrupts */
521         EMAC_IER = EMAC_RX_INTS | EMAC_TX_INTS;
522
523         IRQ_RESTORE(flags);
524
525         return 0;
526 }