summaryrefslogtreecommitdiffstats
path: root/watch-library/hardware/watch/watch_uart.c
blob: 3aee7e3dcc9fc45aca121e24d04a63d106b2968c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*
 * MIT License
 *
 * Copyright (c) 2020 Joey Castillo
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#include "watch_uart.h"
#include <string.h>

struct usart_sync_descriptor USART_0;
struct io_descriptor *uart_io;

void watch_enable_uart(const uint8_t tx_pin, const uint8_t rx_pin, uint32_t baud) {
    SERCOM_USART_CTRLA_Type ctrla;
    SERCOM_USART_CTRLB_Type ctrlb;
    ctrla.reg = SERCOM_USART_CTRLA_DORD | SERCOM_USART_CTRLA_MODE(1);
    ctrlb.reg = SERCOM_USART_CTRLB_CHSIZE(0);

    MCLK->APBCMASK.reg |= MCLK_APBCMASK_SERCOM3;
    GCLK->PCHCTRL[SERCOM3_GCLK_ID_CORE].reg = GCLK_PCHCTRL_GEN(0) | GCLK_PCHCTRL_CHEN;

    while (0 == (GCLK->PCHCTRL[SERCOM3_GCLK_ID_CORE].reg & GCLK_PCHCTRL_CHEN)) {
        // wait
    }

	usart_sync_init(&USART_0, SERCOM3, (void *)NULL);

    SERCOM3->USART.CTRLA.reg &= ~SERCOM_USART_CTRLA_ENABLE;

    switch (tx_pin) {
        case A2:
            gpio_set_pin_direction(tx_pin, GPIO_DIRECTION_OUT);
            gpio_set_pin_function(tx_pin, PINMUX_PB02C_SERCOM3_PAD0);
            ctrla.reg |= SERCOM_USART_CTRLA_TXPO(0);
            ctrlb.reg |= SERCOM_USART_CTRLB_TXEN;
            break;
        case A4:
            gpio_set_pin_direction(tx_pin, GPIO_DIRECTION_OUT);
            gpio_set_pin_function(tx_pin, PINMUX_PB00C_SERCOM3_PAD2);
            ctrla.reg |= SERCOM_USART_CTRLA_TXPO(1);
            ctrlb.reg |= SERCOM_USART_CTRLB_TXEN;
            break;
        default:
            break;
    }

    switch (rx_pin) {
        case A1:
            gpio_set_pin_direction(rx_pin, GPIO_DIRECTION_IN);
            gpio_set_pin_function(rx_pin, PINMUX_PB01C_SERCOM3_PAD3);
            ctrla.reg |= SERCOM_USART_CTRLA_RXPO(3);
            ctrlb.reg |= SERCOM_USART_CTRLB_RXEN;
            break;
        case A2:
            gpio_set_pin_direction(rx_pin, GPIO_DIRECTION_IN);
            gpio_set_pin_function(rx_pin, PINMUX_PB02C_SERCOM3_PAD0);
            ctrla.reg |= SERCOM_USART_CTRLA_RXPO(0);
            ctrlb.reg |= SERCOM_USART_CTRLB_RXEN;
            break;
        case A3:
            gpio_set_pin_direction(rx_pin, GPIO_DIRECTION_IN);
            gpio_set_pin_function(rx_pin, PINMUX_PB03C_SERCOM3_PAD1);
            ctrla.reg |= SERCOM_USART_CTRLA_RXPO(1);
            ctrlb.reg |= SERCOM_USART_CTRLB_RXEN;
            break;
        case A4:
            gpio_set_pin_direction(rx_pin, GPIO_DIRECTION_IN);
            gpio_set_pin_function(rx_pin, PINMUX_PB00C_SERCOM3_PAD2);
            ctrla.reg |= SERCOM_USART_CTRLA_RXPO(2);
            ctrlb.reg |= SERCOM_USART_CTRLB_RXEN;
            break;
        default:
            break;
    }
    SERCOM3->USART.CTRLA.reg = ctrla.reg;
    SERCOM3->USART.CTRLB.reg = ctrlb.reg;

    if (hri_usbdevice_get_CTRLA_ENABLE_bit(USB)) {
        uint64_t br = 65536 - ((65536 * 16.0f * baud) / 8000000);
        SERCOM3->USART.BAUD.reg = (uint16_t)br;
    } else {
        uint64_t br = 65536 - ((65536 * 16.0f * baud) / 4000000);
        SERCOM3->USART.BAUD.reg = (uint16_t)br;
    }

    SERCOM3->USART.CTRLA.reg |= SERCOM_USART_CTRLA_ENABLE;

	usart_sync_enable(&USART_0);
    usart_sync_get_io_descriptor(&USART_0, &uart_io);
}

void watch_uart_puts(char *s) {
	io_write(uart_io, (uint8_t *)s, strlen(s));
}

char watch_uart_getc(void) {
    uint8_t retval;
    io_read(uart_io, &retval, 1);
    return retval;
}