Fix copyright. Reorder include and remove deprecated. Comply the core cpu macro name.
[bertos.git] / bertos / cpu / msp430 / drv / kdebug_msp430.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 Develer S.r.l. (http://www.develer.com/)
30  * Copyright 2010 Mohamed <mtarek16@gmail.com>
31  *
32  * -->
33  *
34  * \brief MSP430 debug support (implementation).
35  *
36  * \author Mohamed Tarek <mtarek16@gmail.com>
37  */
38
39 #include "kdebug_msp430.h"  /* for UART clock source definitions */
40
41 #include "hw/hw_ser.h"      /* bus macros overrides */
42 #include "cfg/cfg_debug.h"
43
44 #include <cfg/macros.h>     /* for DIV_ROUND */
45
46 #include <cpu/types.h>
47 #include <cpu/attr.h>
48
49 #include <io.h>
50
51 #if CONFIG_KDEBUG_PORT == 0
52
53         #ifndef KDBG_UART0_BUS_INIT
54         #define KDBG_UART0_BUS_INIT  do {} while (0)
55         #endif
56         #ifndef KDBG_UART0_BUS_RX
57         #define KDBG_UART0_BUS_RX    do {} while (0)
58         #endif
59         #ifndef KDBG_UART0_BUS_TX
60         #define KDBG_UART0_BUS_TX    do {} while (0)
61         #endif
62
63         /* USCI Register definitions */
64         #define UCSTAT  UCA0STAT
65         #define UCTXBUF UCA0TXBUF
66         #define UCRXBUF UCA0RXBUF
67         #define UCTXIFG UCA0TXIFG
68         #define UCRXIFG UCA0RXIFG
69         #define UCTXIE  UCA0TXIE
70         #define UCRXIE  UCA0RXIE
71         #define UCCTL0  UCA0CTL0
72         #define UCCTL1  UCA0CTL1
73         #define UCBR0   UCA0BR0
74         #define UCBR1   UCA0BR1
75         #define UCMCTL  UCA0MCTL
76         #define IE              IE2
77         #define IFG             IFG2
78
79         #if CPU_MSP430F2274
80                 #define KDBG_MSP430_UART_PINS_INIT()    do{ P3SEL = 0x30; }while(0)
81         #endif
82
83 #else
84
85         #if CPU_MSP430F2274
86                 #error only 1 UART availbale, CONFIG_KDEBUG_PORT should be 0
87         #endif
88
89 #endif
90
91 #define KDBG_WAIT_READY()     do { while((UCSTAT & UCBUSY)); } while(0)
92 #define KDBG_WAIT_TXDONE()    do { while(!(IFG & UCTXIFG)); } while(0)
93
94 #define KDBG_WRITE_CHAR(c)    do { UCTXBUF = (c); } while(0)
95
96 #define KDBG_MASK_IRQ(old)    do { \
97         (old) = IE; \
98         IE &= ~(UCTXIE|UCRXIE);\
99 } while(0)
100
101 #define KDBG_RESTORE_IRQ(old) do { \
102         KDBG_WAIT_TXDONE(); \
103         IE = (old); \
104 } while(0)
105
106 #if CONFIG_KDEBUG_CLOCK_FREQ
107         #define KDBG_MSP430_FREQ CONFIG_KDEBUG_CLOCK_FREQ
108 #else
109         #define KDBG_MSP430_FREQ CPU_FREQ
110 #endif
111
112 typedef uint8_t kdbg_irqsave_t;
113
114 INLINE void kdbg_hw_init(void)
115 {
116         /* Compute the clock prescaler for the desired baudrate */
117         uint16_t quot = DIV_ROUND(KDBG_MSP430_FREQ, CONFIG_KDEBUG_BAUDRATE);
118         KDBG_MSP430_UART_PINS_INIT();       // Configure USCI TX/RX pins
119
120 #if (CONFIG_KDEBUG_CLOCK_SOURCE == KDBG_UART_SMCLK)
121         UCCTL1 |= UCSSEL_SMCLK;
122 #else
123         UCCTL1 |= UCSSEL_ACLK;
124 #endif
125
126         UCBR0   = quot & 0xFF;              // Setup clock prescaler for the UART
127         UCBR1   = quot >> 8;
128
129         UCMCTL  = UCBRS0;                   // No Modulation
130         UCCTL0  = 0;                        // Default UART settings (8N1)
131         UCCTL1 &= ~UCSWRST;                 // Initialize USCI state machine
132         KDBG_MASK_IRQ(IE2);                 // Disable USCI interrupts
133 }
134