usart.c 20.2 KB
Newer Older
M
Ming, Bai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * File      : usart.c
 * This file is part of RT-Thread RTOS
 * COPYRIGHT (C) 2009, RT-Thread Development Team
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rt-thread.org/license/LICENSE
 *
 * Change Logs:
 * Date           Author       Notes
 * 2009-01-05     Bernard      the first version
 * 2010-03-29     Bernard      remove interrupt Tx and DMA Rx mode
 * 2012-02-08     aozima       update for F4.
15
 * 2012-07-28     aozima       update for ART board.
16
 * 2016-05-28     armink       add DMA Rx mode
M
Ming, Bai 已提交
17 18 19 20 21 22
 */

#include "stm32f4xx.h"
#include "usart.h"
#include "board.h"

23
#include <rtdevice.h>
M
Ming, Bai 已提交
24

25
/* UART GPIO define. */
26
#define UART1_GPIO_TX       GPIO_Pin_6
27
#define UART1_TX_PIN_SOURCE GPIO_PinSource6
28
#define UART1_GPIO_RX       GPIO_Pin_7
29
#define UART1_RX_PIN_SOURCE GPIO_PinSource7
30
#define UART1_GPIO          GPIOB
31
#define UART1_GPIO_RCC      RCC_AHB1Periph_GPIOB
32
#define RCC_APBPeriph_UART1 RCC_APB2Periph_USART1
33

34
#define UART2_GPIO_TX       GPIO_Pin_2
35
#define UART2_TX_PIN_SOURCE GPIO_PinSource2
36
#define UART2_GPIO_RX       GPIO_Pin_3
37
#define UART2_RX_PIN_SOURCE GPIO_PinSource3
38
#define UART2_GPIO          GPIOA
39
#define UART2_GPIO_RCC      RCC_AHB1Periph_GPIOA
40
#define RCC_APBPeriph_UART2 RCC_APB1Periph_USART2
41 42 43 44 45 46 47 48

#define UART3_GPIO_TX       GPIO_Pin_8
#define UART3_TX_PIN_SOURCE GPIO_PinSource8
#define UART3_GPIO_RX       GPIO_Pin_9
#define UART3_RX_PIN_SOURCE GPIO_PinSource9
#define UART3_GPIO          GPIOD
#define UART3_GPIO_RCC      RCC_AHB1Periph_GPIOD
#define RCC_APBPeriph_UART3 RCC_APB1Periph_USART3
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66

#define UART4_GPIO_TX       GPIO_Pin_10
#define UART4_TX_PIN_SOURCE GPIO_PinSource10
#define UART4_GPIO_RX       GPIO_Pin_11
#define UART4_RX_PIN_SOURCE GPIO_PinSource11
#define UART4_GPIO          GPIOC
#define UART4_GPIO_RCC      RCC_AHB1Periph_GPIOC
#define RCC_APBPeriph_UART4 RCC_APB1Periph_UART4

#define UART5_GPIO_TX       GPIO_Pin_12
#define UART5_TX_PIN_SOURCE GPIO_PinSource12
#define UART5_GPIO_RX       GPIO_Pin_2
#define UART5_RX_PIN_SOURCE GPIO_PinSource2
#define UART5_TX            GPIOC
#define UART5_RX            GPIOD
#define UART5_GPIO_RCC_TX   RCC_AHB1Periph_GPIOB
#define UART5_GPIO_RCC_RX   RCC_AHB1Periph_GPIOD
#define RCC_APBPeriph_UART5 RCC_APB1Periph_UART5
67 68 69 70

/* STM32 uart driver */
struct stm32_uart
{
71
    USART_TypeDef *uart_device;
72
    IRQn_Type irq;
73 74
    struct stm32_uart_dma
    {
75 76 77 78 79 80 81 82 83 84 85 86 87
        /* dma stream */
        DMA_Stream_TypeDef *rx_stream;
        /* dma channel */
        uint32_t rx_ch;
        /* dma flag */
        uint32_t rx_flag;
        /* dma irq channel */
        uint8_t rx_irq_ch;
        /* setting receive len */
        rt_size_t setting_recv_len;
        /* last receive index */
        rt_size_t last_recv_index;
    } dma;
88 89
};

90 91
static void DMA_Configuration(struct rt_serial_device *serial);

92 93
static rt_err_t stm32_configure(struct rt_serial_device *serial, struct serial_configure *cfg)
{
94
    struct stm32_uart* uart;
95 96 97 98 99 100 101
    USART_InitTypeDef USART_InitStructure;

    RT_ASSERT(serial != RT_NULL);
    RT_ASSERT(cfg != RT_NULL);

    uart = (struct stm32_uart *)serial->parent.user_data;

102
    USART_InitStructure.USART_BaudRate = cfg->baud_rate;
103

104
    if (cfg->data_bits == DATA_BITS_8){
105
        USART_InitStructure.USART_WordLength = USART_WordLength_8b;
106 107 108
    } else if (cfg->data_bits == DATA_BITS_9) {
        USART_InitStructure.USART_WordLength = USART_WordLength_9b;
    }
109

110
    if (cfg->stop_bits == STOP_BITS_1){
111
        USART_InitStructure.USART_StopBits = USART_StopBits_1;
112
    } else if (cfg->stop_bits == STOP_BITS_2){
113
        USART_InitStructure.USART_StopBits = USART_StopBits_2;
114 115 116 117 118 119 120 121 122
    }

    if (cfg->parity == PARITY_NONE){
        USART_InitStructure.USART_Parity = USART_Parity_No;
    } else if (cfg->parity == PARITY_ODD) {
        USART_InitStructure.USART_Parity = USART_Parity_Odd;
    } else if (cfg->parity == PARITY_EVEN) {
        USART_InitStructure.USART_Parity = USART_Parity_Even;
    }
123 124 125 126 127 128 129 130 131 132 133 134 135

    USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
    USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
    USART_Init(uart->uart_device, &USART_InitStructure);

    /* Enable USART */
    USART_Cmd(uart->uart_device, ENABLE);

    return RT_EOK;
}

static rt_err_t stm32_control(struct rt_serial_device *serial, int cmd, void *arg)
{
136 137
    struct stm32_uart* uart;
    rt_uint32_t ctrl_arg = (rt_uint32_t)(arg);
138 139 140 141 142 143 144 145 146

    RT_ASSERT(serial != RT_NULL);
    uart = (struct stm32_uart *)serial->parent.user_data;

    switch (cmd)
    {
    case RT_DEVICE_CTRL_CLR_INT:
        /* disable rx irq */
        UART_DISABLE_IRQ(uart->irq);
147 148
        /* disable interrupt */
        USART_ITConfig(uart->uart_device, USART_IT_RXNE, DISABLE);
149 150 151 152
        break;
    case RT_DEVICE_CTRL_SET_INT:
        /* enable rx irq */
        UART_ENABLE_IRQ(uart->irq);
153 154
        /* enable interrupt */
        USART_ITConfig(uart->uart_device, USART_IT_RXNE, ENABLE);
155
        break;
156 157 158 159 160
        /* USART config */
    case RT_DEVICE_CTRL_CONFIG :
        if (ctrl_arg == RT_DEVICE_FLAG_DMA_RX) {
            DMA_Configuration(serial);
        }
161 162 163 164 165 166 167
    }

    return RT_EOK;
}

static int stm32_putc(struct rt_serial_device *serial, char c)
{
168
    struct stm32_uart *uart;
169 170 171 172 173 174 175 176 177 178 179 180 181

    RT_ASSERT(serial != RT_NULL);
    uart = (struct stm32_uart *)serial->parent.user_data;

    while (!(uart->uart_device->SR & USART_FLAG_TXE));
    uart->uart_device->DR = c;

    return 1;
}

static int stm32_getc(struct rt_serial_device *serial)
{
    int ch;
182
    struct stm32_uart *uart;
183 184 185 186 187 188 189 190 191 192 193 194 195

    RT_ASSERT(serial != RT_NULL);
    uart = (struct stm32_uart *)serial->parent.user_data;

    ch = -1;
    if (uart->uart_device->SR & USART_FLAG_RXNE)
    {
        ch = uart->uart_device->DR & 0xff;
    }

    return ch;
}

196 197 198 199 200 201 202 203
/**
 * DMA initialize by DMA_InitStruct structure
 *
 * @param serial serial device
 * @param setting_recv_len setting receive length
 * @param mem_base_addr memory 0 base address for DMA stream
 */
static void dma_uart_config(struct rt_serial_device *serial, uint32_t setting_recv_len,
204 205
        void *mem_base_addr)
{
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
    struct stm32_uart *uart = (struct stm32_uart *) serial->parent.user_data;
    DMA_InitTypeDef DMA_InitStructure;

    /* rx dma config */
    uart->dma.setting_recv_len = setting_recv_len;
    DMA_DeInit(uart->dma.rx_stream);
    while (DMA_GetCmdStatus(uart->dma.rx_stream) != DISABLE);
    DMA_InitStructure.DMA_Channel = uart->dma.rx_ch;
    DMA_InitStructure.DMA_PeripheralBaseAddr = (uint32_t) &(uart->uart_device->DR);
    DMA_InitStructure.DMA_Memory0BaseAddr = (uint32_t)mem_base_addr;
    DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralToMemory;
    DMA_InitStructure.DMA_BufferSize = uart->dma.setting_recv_len;
    DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable;
    DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable;
    DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte;
    DMA_InitStructure.DMA_MemoryDataSize = DMA_PeripheralDataSize_Byte;
    DMA_InitStructure.DMA_Mode = DMA_Mode_Circular;
    DMA_InitStructure.DMA_Priority = DMA_Priority_High;
    DMA_InitStructure.DMA_FIFOMode = DMA_FIFOMode_Disable;
    DMA_InitStructure.DMA_FIFOThreshold = DMA_FIFOThreshold_Full;
    DMA_InitStructure.DMA_MemoryBurst = DMA_MemoryBurst_Single;
    DMA_InitStructure.DMA_PeripheralBurst = DMA_PeripheralBurst_Single;
    DMA_Init(uart->dma.rx_stream, &DMA_InitStructure);
}

/**
 * Serial port receive idle process. This need add to uart idle ISR.
 *
 * @param serial serial device
 */
static void dma_uart_rx_idle_isr(struct rt_serial_device *serial) {
    struct stm32_uart *uart = (struct stm32_uart *) serial->parent.user_data;
    rt_size_t recv_total_index, recv_len;
239 240 241 242
    rt_base_t level;

    /* disable interrupt */
    level = rt_hw_interrupt_disable();
243 244

    recv_total_index = uart->dma.setting_recv_len - DMA_GetCurrDataCounter(uart->dma.rx_stream);
245
    recv_len = recv_total_index - uart->dma.last_recv_index;
246
    uart->dma.last_recv_index = recv_total_index;
247 248
    /* enable interrupt */
    rt_hw_interrupt_enable(level);
249

250
    if (recv_len) rt_hw_serial_isr(serial, RT_SERIAL_EVENT_RX_DMADONE | (recv_len << 8));
251 252 253 254 255 256 257 258 259 260

    /* read a data for clear receive idle interrupt flag */
    USART_ReceiveData(uart->uart_device);
}

/**
 * DMA receive done process. This need add to DMA receive done ISR.
 *
 * @param serial serial device
 */
261 262
static void dma_rx_done_isr(struct rt_serial_device *serial)
{
263
    struct stm32_uart *uart = (struct stm32_uart *) serial->parent.user_data;
264
    rt_size_t recv_len;
265
    rt_base_t level;
266

267 268 269 270
    if (DMA_GetFlagStatus(uart->dma.rx_stream, uart->dma.rx_flag) != RESET)
    {
        /* disable interrupt */
        level = rt_hw_interrupt_disable();
271

272 273 274
        recv_len = uart->dma.setting_recv_len - uart->dma.last_recv_index;
        /* reset last recv index */
        uart->dma.last_recv_index = 0;
275 276
        /* enable interrupt */
        rt_hw_interrupt_enable(level);
277

278
        if (recv_len) rt_hw_serial_isr(serial, RT_SERIAL_EVENT_RX_DMADONE | (recv_len << 8));
279 280 281 282 283 284 285 286 287 288 289

        /* start receive data */
        DMA_ClearFlag(uart->dma.rx_stream, uart->dma.rx_flag);
    }
}

/**
 * Uart common interrupt process. This need add to uart ISR.
 *
 * @param serial serial device
 */
290 291
static void uart_isr(struct rt_serial_device *serial)
{
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
    struct stm32_uart *uart = (struct stm32_uart *) serial->parent.user_data;

    RT_ASSERT(uart != RT_NULL);

    if(USART_GetITStatus(uart->uart_device, USART_IT_RXNE) != RESET)
    {
        rt_hw_serial_isr(serial, RT_SERIAL_EVENT_RX_IND);
        /* clear interrupt */
        USART_ClearITPendingBit(uart->uart_device, USART_IT_RXNE);
    }
    if(USART_GetITStatus(uart->uart_device, USART_IT_IDLE) != RESET)
    {
        dma_uart_rx_idle_isr(serial);
    }
    if (USART_GetITStatus(uart->uart_device, USART_IT_TC) != RESET)
    {
        /* clear interrupt */
        USART_ClearITPendingBit(uart->uart_device, USART_IT_TC);
    }
    if (USART_GetFlagStatus(uart->uart_device, USART_FLAG_ORE) == SET)
    {
        stm32_getc(serial);
    }
}


318 319 320 321 322 323 324 325 326 327 328
static const struct rt_uart_ops stm32_uart_ops =
{
    stm32_configure,
    stm32_control,
    stm32_putc,
    stm32_getc,
};

#if defined(RT_USING_UART1)
/* UART1 device driver structure */
struct stm32_uart uart1 =
M
Ming, Bai 已提交
329
{
wzyy2's avatar
wzyy2 已提交
330
    USART1,
331
    USART1_IRQn,
332 333 334 335 336 337 338
    {
        DMA2_Stream5,
        DMA_Channel_4,
        DMA_FLAG_TCIF5,
        DMA2_Stream5_IRQn,
        0,
    },
M
Ming, Bai 已提交
339
};
340
struct rt_serial_device serial1;
M
Ming, Bai 已提交
341

342 343
void USART1_IRQHandler(void)
{
344 345
    /* enter interrupt */
    rt_interrupt_enter();
346

347 348 349 350 351
    uart_isr(&serial1);

    /* leave interrupt */
    rt_interrupt_leave();
}
352

353
void DMA2_Stream5_IRQHandler(void) {
354 355
    /* enter interrupt */
    rt_interrupt_enter();
356 357

    dma_rx_done_isr(&serial1);
358 359 360 361 362 363 364 365 366

    /* leave interrupt */
    rt_interrupt_leave();
}
#endif /* RT_USING_UART1 */

#if defined(RT_USING_UART2)
/* UART2 device driver structure */
struct stm32_uart uart2 =
M
Ming, Bai 已提交
367
{
wzyy2's avatar
wzyy2 已提交
368
    USART2,
369
    USART2_IRQn,
370 371 372 373 374 375 376 377
    {
        DMA1_Stream5,
        DMA_Channel_4,
        DMA_FLAG_TCIF5,
        DMA1_Stream5_IRQn,
        0,
        0,
    },
M
Ming, Bai 已提交
378
};
379
struct rt_serial_device serial2;
M
Ming, Bai 已提交
380

381
void USART2_IRQHandler(void)
M
Ming, Bai 已提交
382
{
383 384
    /* enter interrupt */
    rt_interrupt_enter();
385

386
    uart_isr(&serial2);
387

388 389 390 391 392
    /* leave interrupt */
    rt_interrupt_leave();
}

void DMA1_Stream5_IRQHandler(void) {
393 394
    /* enter interrupt */
    rt_interrupt_enter();
395 396

    dma_rx_done_isr(&serial2);
397 398 399 400 401

    /* leave interrupt */
    rt_interrupt_leave();
}
#endif /* RT_USING_UART2 */
M
Ming, Bai 已提交
402

403 404 405
#if defined(RT_USING_UART3)
/* UART3 device driver structure */
struct stm32_uart uart3 =
wzyy2's avatar
wzyy2 已提交
406
{
407 408
    USART3,
    USART3_IRQn,
409 410 411 412 413 414 415 416
    {
        DMA1_Stream1,
        DMA_Channel_4,
        DMA_FLAG_TCIF1,
        DMA1_Stream1_IRQn,
        0,
        0,
    },
wzyy2's avatar
wzyy2 已提交
417
};
418
struct rt_serial_device serial3;
M
Ming, Bai 已提交
419

420 421
void USART3_IRQHandler(void)
{
422 423
    /* enter interrupt */
    rt_interrupt_enter();
424

425 426 427 428 429
    uart_isr(&serial3);

    /* leave interrupt */
    rt_interrupt_leave();
}
430

431
void DMA1_Stream1_IRQHandler(void) {
432 433
    /* enter interrupt */
    rt_interrupt_enter();
434 435 436 437 438 439 440 441 442 443 444 445 446 447

    dma_rx_done_isr(&serial3);

    /* leave interrupt */
    rt_interrupt_leave();
}
#endif /* RT_USING_UART3 */

#if defined(RT_USING_UART4)
/* UART4 device driver structure */
struct stm32_uart uart4 =
{
    UART4,
    UART4_IRQn,
448
    {
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
        DMA1_Stream2,
        DMA_Channel_4,
        DMA_FLAG_TCIF2,
        DMA1_Stream2_IRQn,
        0,
        0,
    },
};
struct rt_serial_device serial4;

void UART4_IRQHandler(void)
{
    /* enter interrupt */
    rt_interrupt_enter();

    uart_isr(&serial4);

    /* leave interrupt */
    rt_interrupt_leave();
}

void DMA1_Stream2_IRQHandler(void) {
    /* enter interrupt */
    rt_interrupt_enter();

    dma_rx_done_isr(&serial4);

    /* leave interrupt */
    rt_interrupt_leave();
}
#endif /* RT_USING_UART4 */

#if defined(RT_USING_UART5)
/* UART5 device driver structure */
struct stm32_uart uart5 =
{
    UART5,
    UART5_IRQn,
487
    {
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
        DMA1_Stream0,
        DMA_Channel_4,
        DMA_FLAG_TCIF0,
        DMA1_Stream0_IRQn,
        0,
        0,
    },
};
struct rt_serial_device serial5;

void UART5_IRQHandler(void)
{
    /* enter interrupt */
    rt_interrupt_enter();

    uart_isr(&serial5);
504 505 506 507

    /* leave interrupt */
    rt_interrupt_leave();
}
508 509 510 511 512 513 514 515 516 517 518

void DMA1_Stream0_IRQHandler(void) {
    /* enter interrupt */
    rt_interrupt_enter();

    dma_rx_done_isr(&serial5);

    /* leave interrupt */
    rt_interrupt_leave();
}
#endif /* RT_USING_UART5 */
wzyy2's avatar
wzyy2 已提交
519

M
Ming, Bai 已提交
520 521 522
static void RCC_Configuration(void)
{
#ifdef RT_USING_UART1
523
    /* Enable UART1 GPIO clocks */
wzyy2's avatar
wzyy2 已提交
524
    RCC_AHB1PeriphClockCmd(UART1_GPIO_RCC, ENABLE);
525
    /* Enable UART1 clock */
wzyy2's avatar
wzyy2 已提交
526
    RCC_APB2PeriphClockCmd(RCC_APBPeriph_UART1, ENABLE);
527
#endif /* RT_USING_UART1 */
M
Ming, Bai 已提交
528 529

#ifdef RT_USING_UART2
530
    /* Enable UART2 GPIO clocks */
wzyy2's avatar
wzyy2 已提交
531
    RCC_AHB1PeriphClockCmd(UART2_GPIO_RCC, ENABLE);
532
    /* Enable UART2 clock */
wzyy2's avatar
wzyy2 已提交
533
    RCC_APB1PeriphClockCmd(RCC_APBPeriph_UART2, ENABLE);
534
#endif /* RT_USING_UART1 */
M
Ming, Bai 已提交
535 536

#ifdef RT_USING_UART3
537
    /* Enable UART3 GPIO clocks */
wzyy2's avatar
wzyy2 已提交
538
    RCC_AHB1PeriphClockCmd(UART3_GPIO_RCC, ENABLE);
539
    /* Enable UART3 clock */
wzyy2's avatar
wzyy2 已提交
540
    RCC_APB1PeriphClockCmd(RCC_APBPeriph_UART3, ENABLE);
541
#endif /* RT_USING_UART3 */
542 543 544 545 546 547 548 549 550 551 552 553 554 555

#ifdef RT_USING_UART4
    /* Enable UART4 GPIO clocks */
    RCC_AHB1PeriphClockCmd(UART4_GPIO_RCC, ENABLE);
    /* Enable UART4 clock */
    RCC_APB1PeriphClockCmd(RCC_APBPeriph_UART4, ENABLE);
#endif /* RT_USING_UART4 */

#ifdef RT_USING_UART5
    /* Enable UART5 GPIO clocks */
    RCC_AHB1PeriphClockCmd(UART5_GPIO_RCC_TX | UART5_GPIO_RCC_RX, ENABLE);
    /* Enable UART5 clock */
    RCC_APB1PeriphClockCmd(RCC_APBPeriph_UART5, ENABLE);
#endif /* RT_USING_UART5 */
M
Ming, Bai 已提交
556 557 558 559
}

static void GPIO_Configuration(void)
{
wzyy2's avatar
wzyy2 已提交
560
    GPIO_InitTypeDef GPIO_InitStructure;
M
Ming, Bai 已提交
561

wzyy2's avatar
wzyy2 已提交
562 563 564 565
    GPIO_InitStructure.GPIO_Mode  = GPIO_Mode_AF;
    GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
    GPIO_InitStructure.GPIO_PuPd  = GPIO_PuPd_UP;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
M
Ming, Bai 已提交
566 567

#ifdef RT_USING_UART1
wzyy2's avatar
wzyy2 已提交
568 569 570
    /* Configure USART1 Rx/tx PIN */
    GPIO_InitStructure.GPIO_Pin = UART1_GPIO_RX | UART1_GPIO_TX;
    GPIO_Init(UART1_GPIO, &GPIO_InitStructure);
M
Ming, Bai 已提交
571 572 573 574

    /* Connect alternate function */
    GPIO_PinAFConfig(UART1_GPIO, UART1_TX_PIN_SOURCE, GPIO_AF_USART1);
    GPIO_PinAFConfig(UART1_GPIO, UART1_RX_PIN_SOURCE, GPIO_AF_USART1);
575
#endif /* RT_USING_UART1 */
M
Ming, Bai 已提交
576 577

#ifdef RT_USING_UART2
wzyy2's avatar
wzyy2 已提交
578
    /* Configure USART2 Rx/tx PIN */
579
    GPIO_InitStructure.GPIO_Pin = UART2_GPIO_RX | UART2_GPIO_TX;
wzyy2's avatar
wzyy2 已提交
580
    GPIO_Init(UART2_GPIO, &GPIO_InitStructure);
M
Ming, Bai 已提交
581 582 583 584

    /* Connect alternate function */
    GPIO_PinAFConfig(UART2_GPIO, UART2_TX_PIN_SOURCE, GPIO_AF_USART2);
    GPIO_PinAFConfig(UART2_GPIO, UART2_RX_PIN_SOURCE, GPIO_AF_USART2);
585
#endif /* RT_USING_UART2 */
M
Ming, Bai 已提交
586 587

#ifdef RT_USING_UART3
wzyy2's avatar
wzyy2 已提交
588
    /* Configure USART3 Rx/tx PIN */
U
unknown 已提交
589
    GPIO_InitStructure.GPIO_Pin = UART3_GPIO_TX | UART3_GPIO_RX;
wzyy2's avatar
wzyy2 已提交
590
    GPIO_Init(UART3_GPIO, &GPIO_InitStructure);
M
Ming, Bai 已提交
591 592

    /* Connect alternate function */
wzyy2's avatar
wzyy2 已提交
593 594
    GPIO_PinAFConfig(UART3_GPIO, UART3_TX_PIN_SOURCE, GPIO_AF_USART3);
    GPIO_PinAFConfig(UART3_GPIO, UART3_RX_PIN_SOURCE, GPIO_AF_USART3);
595
#endif /* RT_USING_UART3 */
596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617

#ifdef RT_USING_UART4
    /* Configure USART4 Rx/tx PIN */
    GPIO_InitStructure.GPIO_Pin = UART4_GPIO_TX | UART4_GPIO_RX;
    GPIO_Init(UART4_GPIO, &GPIO_InitStructure);

    /* Connect alternate function */
    GPIO_PinAFConfig(UART4_GPIO, UART4_TX_PIN_SOURCE, GPIO_AF_UART4);
    GPIO_PinAFConfig(UART4_GPIO, UART4_RX_PIN_SOURCE, GPIO_AF_UART4);
#endif /* RT_USING_UART4 */

#ifdef RT_USING_UART5
    /* Configure USART5 Rx/tx PIN */
    GPIO_InitStructure.GPIO_Pin = UART5_GPIO_TX;
    GPIO_Init(UART5_TX, &GPIO_InitStructure);
    GPIO_InitStructure.GPIO_Pin = UART5_GPIO_RX;
    GPIO_Init(UART5_RX, &GPIO_InitStructure);

    /* Connect alternate function */
    GPIO_PinAFConfig(UART5_TX, UART5_TX_PIN_SOURCE, GPIO_AF_UART5);
    GPIO_PinAFConfig(UART5_RX, UART5_RX_PIN_SOURCE, GPIO_AF_UART5);
#endif /* RT_USING_UART5 */
M
Ming, Bai 已提交
618 619
}

620
static void NVIC_Configuration(struct stm32_uart *uart)
M
Ming, Bai 已提交
621
{
wzyy2's avatar
wzyy2 已提交
622
    NVIC_InitTypeDef NVIC_InitStructure;
M
Ming, Bai 已提交
623

wzyy2's avatar
wzyy2 已提交
624
    /* Enable the USART1 Interrupt */
625
    NVIC_InitStructure.NVIC_IRQChannel = uart->irq;
626 627
    NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
    NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
wzyy2's avatar
wzyy2 已提交
628 629
    NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
    NVIC_Init(&NVIC_InitStructure);
M
Ming, Bai 已提交
630 631
}

632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
static void DMA_Configuration(struct rt_serial_device *serial) {
    struct stm32_uart *uart = (struct stm32_uart *) serial->parent.user_data;
    struct rt_serial_rx_fifo *rx_fifo = (struct rt_serial_rx_fifo *)serial->serial_rx;
    NVIC_InitTypeDef NVIC_InitStructure;

    /* enable transmit idle interrupt */
    USART_ITConfig(uart->uart_device, USART_IT_IDLE , ENABLE);

    /* DMA clock enable */
    RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_DMA1, ENABLE);
    RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_DMA2, ENABLE);

    /* rx dma config */
    dma_uart_config(serial, serial->config.bufsz, rx_fifo->buffer);

    DMA_ClearFlag(uart->dma.rx_stream, uart->dma.rx_flag);
    DMA_ITConfig(uart->dma.rx_stream, DMA_IT_TC, ENABLE);
    USART_DMACmd(uart->uart_device, USART_DMAReq_Rx, ENABLE);
    DMA_Cmd(uart->dma.rx_stream, ENABLE);

    /* rx dma interrupt config */
    NVIC_InitStructure.NVIC_IRQChannel = uart->dma.rx_irq_ch;
    NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 0;
655
    NVIC_InitStructure.NVIC_IRQChannelSubPriority = 0;
656 657 658 659
    NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
    NVIC_Init(&NVIC_InitStructure);
}

660
int stm32_hw_usart_init(void)
M
Ming, Bai 已提交
661
{
662
    struct stm32_uart *uart;
663
    struct serial_configure config = RT_SERIAL_CONFIG_DEFAULT;
M
Ming, Bai 已提交
664

wzyy2's avatar
wzyy2 已提交
665 666
    RCC_Configuration();
    GPIO_Configuration();
M
Ming, Bai 已提交
667 668

#ifdef RT_USING_UART1
669
    uart = &uart1;
wzyy2's avatar
wzyy2 已提交
670

671 672
    serial1.ops    = &stm32_uart_ops;
    serial1.config = config;
wzyy2's avatar
wzyy2 已提交
673

674
    NVIC_Configuration(&uart1);
M
Ming, Bai 已提交
675

676 677 678
    /* register UART1 device */
    rt_hw_serial_register(&serial1,
                          "uart1",
679
                          RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_INT_RX | RT_DEVICE_FLAG_DMA_RX,
680 681
                          uart);
#endif /* RT_USING_UART1 */
wzyy2's avatar
wzyy2 已提交
682

683 684
#ifdef RT_USING_UART2
    uart = &uart2;
wzyy2's avatar
wzyy2 已提交
685

686 687
    serial2.ops    = &stm32_uart_ops;
    serial2.config = config;
M
Ming, Bai 已提交
688

689
    NVIC_Configuration(&uart2);
wzyy2's avatar
wzyy2 已提交
690

691 692 693
    /* register UART1 device */
    rt_hw_serial_register(&serial2,
                          "uart2",
694
                          RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_INT_RX | RT_DEVICE_FLAG_DMA_RX,
695 696
                          uart);
#endif /* RT_USING_UART2 */
wzyy2's avatar
wzyy2 已提交
697

698 699
#ifdef RT_USING_UART3
    uart = &uart3;
wzyy2's avatar
wzyy2 已提交
700

701 702
    serial3.ops    = &stm32_uart_ops;
    serial3.config = config;
wzyy2's avatar
wzyy2 已提交
703

704
    NVIC_Configuration(&uart3);
wzyy2's avatar
wzyy2 已提交
705

706 707 708
    /* register UART3 device */
    rt_hw_serial_register(&serial3,
                          "uart3",
709
                          RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_INT_RX | RT_DEVICE_FLAG_DMA_RX,
710 711
                          uart);
#endif /* RT_USING_UART3 */
wzyy2's avatar
wzyy2 已提交
712

713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741
#ifdef RT_USING_UART4
    uart = &uart4;

    serial4.ops    = &stm32_uart_ops;
    serial4.config = config;

    NVIC_Configuration(&uart4);

    /* register UART4 device */
    rt_hw_serial_register(&serial4,
                          "uart4",
                          RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_INT_RX | RT_DEVICE_FLAG_DMA_RX,
                          uart);
#endif /* RT_USING_UART4 */

#ifdef RT_USING_UART5
    uart = &uart5;

    serial5.ops    = &stm32_uart_ops;
    serial5.config = config;

    NVIC_Configuration(&uart5);

    /* register UART5 device */
    rt_hw_serial_register(&serial5,
                          "uart5",
                          RT_DEVICE_FLAG_RDWR | RT_DEVICE_FLAG_INT_RX | RT_DEVICE_FLAG_DMA_RX,
                          uart);
#endif /* RT_USING_UART5 */
742
    return 0;
M
Ming, Bai 已提交
743
}
744
INIT_BOARD_EXPORT(stm32_hw_usart_init);