ald_spi.c 53.8 KB
Newer Older
W
wangyq2018 已提交
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
/**
  *********************************************************************************
  *
  * @file    ald_spi.c
  * @brief   SPI module driver.
  *          This file provides firmware functions to manage the following
  *          functionalities of SPI peripheral:
  *           + Initialization functions
  *           + IO operation functions
  *           + Peripheral Control functions
  *           + Peripheral State functions
  *
  * @version V1.0
  * @date    13 Nov 2017
  * @author  AE Team
  * @note
  *
  * Copyright (C) Shanghai Eastsoft Microelectronics Co. Ltd. All rights reserved.
  *
  *********************************************************************************
  @verbatim
  ==============================================================================
                        ##### How to use this driver #####
  ==============================================================================
    [..]
      The SPI driver can be used as follows:

      (#) Declare a spi_handle_t structure, for example:
          spi_handle_t hperh;

      (#) Initialize the SPI low level resources:
          (##) Enable the SPIx interface clock
          (##) SPI pins configuration
              (+++) Enable the clock for the SPI GPIOs
              (+++) Configure these SPI pins as push-pull
          (##) NVIC configuration if you need to use interrupt process
37 38
               by implementing the ald_mcu_irq_config() API.
	       Invoked ald_spi_irq_handler() function in SPI-IRQ function
W
wangyq2018 已提交
39 40
          (##) DMA Configuration if you need to use DMA process
              (+++) Define ALD_DMA in ald_conf.h
41
 	      (+++) Enable the DMAx clock
W
wangyq2018 已提交
42 43 44 45

      (#) Program the Mode, Direction , Data size, Baudrate Prescaler, NSS
          management, Clock polarity and phase, FirstBit and CRC configuration in the hspi Init structure.

46
      (#) Initialize the SPI module by invoking the ald_spi_init() API.
W
wangyq2018 已提交
47 48 49 50 51 52 53

     [..]
       Circular mode restriction:
      (#) The DMA circular mode cannot be used when the SPI is configured in these modes:
          (##) Master 2Lines RxOnly
          (##) Master 1Line Rx
      (#) When the SPI DMA Pause/Stop features are used, we must use the following APIs
54
          the ald_spi_dma_pause()/ ald_spi_dma_stop().
W
wangyq2018 已提交
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

  * @endverbatim
  */

#include "ald_spi.h"


/** @addtogroup ES32FXXX_ALD
  * @{
  */

/** @defgroup SPI SPI
  * @brief SPI module driver
  * @{
  */
#ifdef ALD_SPI

/** @addtogroup SPI_Private_Functions   SPI Private Functions
  * @{
  */
static ald_status_t spi_wait_flag(spi_handle_t *hperh, spi_flag_t flag, flag_status_t status, uint32_t timeout);
static ald_status_t spi_wait_flag_irq(spi_handle_t *hperh, spi_flag_t flag, flag_status_t status, uint32_t timeout);
static void __spi_send_by_it(spi_handle_t *hperh);
static void __spi_recv_by_it(spi_handle_t *hperh);
static void __spi_send_recv_by_it(spi_handle_t *hperh, spi_sr_status_t status);
#ifdef ALD_DMA
    static void spi_dma_send_cplt(void *arg);
    static void spi_dma_recv_cplt(void *arg);
    static void spi_dma_send_recv_cplt(void *arg);
    static void spi_dma_error(void *arg);
#endif
/**
  * @}
  */

/** @defgroup SPI_Public_Functions SPI Public Functions
  * @{
  */

/** @defgroup SPI_Public_Functions_Group1 Initialization functions
  * @brief Initialization and Configuration functions
  *
  * @verbatim
 ===============================================================================
              ##### Initialization and de-initialization functions #####
 ===============================================================================
    [..]  This subsection provides a set of functions allowing to initialize and
          reset the SPIx peripheral:

      (+) User must configure all related peripherals resources
          (CLOCK, GPIO, DMA, NVIC).

107
      (+) Call the function ald_spi_init() to configure the selected device with
W
wangyq2018 已提交
108 109 110 111 112 113 114 115 116 117 118 119
          the selected configuration:
        (++) Mode
        (++) Direction
        (++) Data Size
        (++) Clock Polarity and Phase
        (++) NSS Management
        (++) BaudRate Prescaler
        (++) FirstBit
        (++) TIMode
        (++) CRC Calculation
        (++) CRC Polynomial if CRC enabled

120
      (+) Call the function ald_spi_reset() to reset the selected SPIx periperal.
W
wangyq2018 已提交
121 122 123 124 125 126 127 128 129 130 131

    @endverbatim
  * @{
  */

/**
  * @brief  Reset the SPI peripheral.
  * @param  hperh: Pointer to a spi_handle_t structure that contains
  *         the configuration information for the specified SPI module.
  * @retval None
  */
132
void ald_spi_reset(spi_handle_t *hperh)
W
wangyq2018 已提交
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
{
    hperh->perh->CON1    = 0x0;
    hperh->perh->CON2    = 0x0;
    hperh->perh->CRCPOLY = 0x00000007;

    SPI_RESET_HANDLE_STATE(hperh);
    __UNLOCK(hperh);

    return;
}

/**
  * @brief  Initializes the SPI mode according to the specified parameters in
  *         the SPI_init_t and create the associated handle.
  * @param  hperh: Pointer to a spi_handle_t structure that contains
  *         the configuration information for the specified SPI module.
  * @retval Status, see @ref ald_status_t.
  */
151
ald_status_t ald_spi_init(spi_handle_t *hperh)
W
wangyq2018 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
{
    uint32_t tmp = 0;

    assert_param(IS_SPI(hperh->perh));
    assert_param(IS_SPI_MODE(hperh->init.mode));
    assert_param(IS_SPI_DIRECTION(hperh->init.dir));
    assert_param(IS_SPI_BAUD(hperh->init.baud));
    assert_param(IS_FUNC_STATE(hperh->init.first_bit));
    assert_param(IS_FUNC_STATE(hperh->init.ss_en));
    assert_param(IS_FUNC_STATE(hperh->init.crc_calc));
    assert_param(IS_SPI_DATASIZE(hperh->init.data_size));
    assert_param(IS_SPI_CPHA(hperh->init.phase));
    assert_param(IS_SPI_CPOL(hperh->init.polarity));

    if (hperh == NULL)
        return ERROR;

169
    ald_spi_reset(hperh);
W
wangyq2018 已提交
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 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 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253

    tmp = hperh->perh->CON1;

    if (hperh->init.mode == SPI_MODE_MASTER)
        tmp |= 1 << SPI_CON1_SSOUT_POS;

    tmp |= ((hperh->init.phase << SPI_CON1_CPHA_POS) | (hperh->init.polarity << SPI_CON1_CPOL_POS) |
            (hperh->init.baud << SPI_CON1_BAUD_POSS) | (hperh->init.data_size << SPI_CON1_FLEN_POS) |
            (hperh->init.mode << SPI_CON1_MSTREN_POS) | (hperh->init.ss_en << SPI_CON1_SSEN_POS) |
            (hperh->init.first_bit << SPI_CON1_LSBFST_POS));

    hperh->perh->CON1 = tmp;

    if (hperh->init.dir == SPI_DIRECTION_2LINES)
    {
        CLEAR_BIT(hperh->perh->CON1, SPI_CON1_BIDEN_MSK);
        CLEAR_BIT(hperh->perh->CON1, SPI_CON1_RXO_MSK);
    }
    else if (hperh->init.dir == SPI_DIRECTION_2LINES_RXONLY)
    {
        CLEAR_BIT(hperh->perh->CON1, SPI_CON1_BIDEN_MSK);
        SET_BIT(hperh->perh->CON1, SPI_CON1_RXO_MSK);
    }
    else
    {
        SET_BIT(hperh->perh->CON1, SPI_CON1_BIDEN_MSK);
    }

    /* configure CRC */
    hperh->perh->CON1   |= (hperh->init.crc_calc << SPI_CON1_CRCEN_POS);
    hperh->perh->CRCPOLY = hperh->init.crc_poly;

    hperh->err_code = SPI_ERROR_NONE;
    hperh->state    = SPI_STATE_READY;

    if (hperh->init.dir == SPI_DIRECTION_2LINES)
        SPI_ENABLE(hperh);

    return OK;
}
/**
  * @}
  */

/** @defgroup SPI_Public_Functions_Group2 IO operation functions
  * @brief SPI Transmit and Receive functions
  *
  * @verbatim
  ==============================================================================
                      ##### IO operation functions #####
 ===============================================================================
    This subsection provides a set of functions allowing to manage the SPI
    data transfers.

    [..] The SPI supports master or slave mode:

    (#) There are two modes of transfer:
       (++) Blocking mode: The communication is performed in polling mode.
            The ALD status of all data processing is returned by the same function
            after finishing transfer.
       (++) No-Blocking mode: The communication is performed using Interrupts
            or DMA, These APIs return the ALD status.
            The end of the data processing will be indicated through the
            dedicated SPI IRQ when using Interrupt mode or the DMA IRQ when
            using DMA mode.
            The hperh->tx_cplt_cbk(), hperh->rx_cplt_cbk() and hperh->tx_rx_cplt_cbk() user callbacks
            will be executed respectivelly at the end of the transmit or Receive process
            The hperh->err_cbk() user callback will be executed when a communication error is detected

    (#) APIs provided for these 2 transfer modes (Blocking mode or Non blocking mode using either Interrupt or DMA)
        exist for 1Line (simplex) and 2Lines (full duplex) modes.

  * @endverbatim
  * @{
  */

/**
  * @brief  transmit one byte fast in blocking mode.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  data: Data to be sent
  * @retval status:
  *           -  0 Success
  *           - -1 Failed
  */
254
int32_t ald_spi_send_byte_fast(spi_handle_t *hperh, uint8_t data)
W
wangyq2018 已提交
255 256 257 258
{
    uint16_t cnt = 2000, temp;

    hperh->perh->DATA = data;
259

W
wangyq2018 已提交
260 261
    while (((hperh->perh->STAT & (1 << SPI_STAT_TXBE_POS)) == 0) && (--cnt));

262 263 264 265
    cnt = 2000;

    while ((hperh->perh->STAT & (1 << SPI_STAT_RXBNE_POS)) == 0 && (--cnt));

W
wangyq2018 已提交
266 267 268 269 270 271
    temp = hperh->perh->DATA;
    UNUSED(temp);

    return cnt == 0 ? -1 : 0;
}

272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
/**
  * @brief  transmit one byte fast in blocking mode(1line).
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  data: Data to be sent
  * @retval status:
  *           -  0 Success
  *           - -1 Failed
  */
int32_t ald_spi_send_byte_fast_1line(spi_handle_t *hperh, uint8_t data)
{
    uint16_t cnt = 2000;

    hperh->perh->DATA = data;

    while (((hperh->perh->STAT & (1 << SPI_STAT_TXBE_POS)) == 0) && (--cnt));

    return cnt == 0 ? -1 : 0;
}

W
wangyq2018 已提交
291 292 293 294 295
/**
  * @brief  Receive one byte fast in blocking mode.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @retval Data.
  */
296
uint8_t ald_spi_recv_byte_fast(spi_handle_t *hperh)
W
wangyq2018 已提交
297 298 299 300 301 302
{
    uint16_t cnt = 2000;

    if (hperh->init.mode == SPI_MODE_MASTER)
    {
        hperh->perh->DATA = 0xFF;
303

W
wangyq2018 已提交
304 305 306 307
        while (((hperh->perh->STAT & (1 << SPI_STAT_TXBE_POS)) == 0) && (--cnt));
    }

    cnt = 2000;
308

W
wangyq2018 已提交
309
    while (((hperh->perh->STAT & (1 << SPI_STAT_RXBNE_POS)) == 0) && (--cnt));
310

W
wangyq2018 已提交
311 312 313 314 315 316 317 318 319 320 321
    return (uint8_t)hperh->perh->DATA;
}

/**
  * @brief  transmit an amount of data in blocking mode.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  buf: Pointer to data buffer
  * @param  size: Amount of data to be sent
  * @param  timeout: Timeout duration
  * @retval Status, see @ref ald_status_t.
  */
322
ald_status_t ald_spi_send(spi_handle_t *hperh, uint8_t *buf, uint16_t size, uint32_t timeout)
W
wangyq2018 已提交
323 324 325 326 327
{
    assert_param(IS_SPI(hperh->perh));

    if (hperh->state != SPI_STATE_READY)
        return BUSY;
328

W
wangyq2018 已提交
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
    if (buf == NULL || size == 0)
        return ERROR;

    __LOCK(hperh);

    hperh->state    = SPI_STATE_BUSY_TX;
    hperh->err_code = SPI_ERROR_NONE;

    hperh->tx_buf   = buf;
    hperh->tx_size  = size;
    hperh->tx_count = size;
    hperh->rx_buf   = NULL;
    hperh->rx_size  = 0;
    hperh->rx_count = 0;

    if (hperh->init.crc_calc)
        SPI_CRC_RESET(hperh);
346

W
wangyq2018 已提交
347 348
    if (hperh->init.dir == SPI_DIRECTION_1LINE)
        SPI_1LINE_TX(hperh);
349

W
wangyq2018 已提交
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
    if (READ_BIT(hperh->perh->CON1, SPI_CON1_SPIEN_MSK) == 0)
        SPI_ENABLE(hperh);

    if ((hperh->init.mode == SPI_MODE_SLAVER) || (hperh->tx_count == 1))
    {
        if (hperh->init.data_size == SPI_DATA_SIZE_8)
        {
            hperh->perh->DATA = *hperh->tx_buf;
            ++hperh->tx_buf;
            --hperh->tx_count;
        }
        else
        {
            hperh->perh->DATA = (*(uint16_t *)hperh->tx_buf);
            hperh->tx_buf += 2;
            --hperh->tx_count;
        }
    }

    while (hperh->tx_count > 0)
    {
        if (spi_wait_flag(hperh, SPI_IF_TXBE, SET, timeout) != OK)
        {
            if (hperh->init.crc_calc)
                SPI_CRC_RESET(hperh);

            hperh->state = SPI_STATE_READY;
            __UNLOCK(hperh);
            return TIMEOUT;
        }

        if (hperh->init.data_size == SPI_DATA_SIZE_8)
        {
            hperh->perh->DATA = *hperh->tx_buf;
            ++hperh->tx_buf;
            --hperh->tx_count;
        }
        else
        {
            hperh->perh->DATA = (*(uint16_t *)hperh->tx_buf);
            hperh->tx_buf += 2;
            --hperh->tx_count;
        }
    }

    if (hperh->init.crc_calc)
        SPI_CRCNEXT_ENABLE(hperh);

    if ((spi_wait_flag(hperh, SPI_IF_TXBE, SET, timeout) != OK)
            || (spi_wait_flag(hperh, SPI_IF_BUSY, RESET, timeout) != OK))
    {
        if (hperh->init.crc_calc)
            SPI_CRC_RESET(hperh);

        hperh->state = SPI_STATE_READY;
        __UNLOCK(hperh);
        return TIMEOUT;
    }

    if (hperh->init.dir == SPI_DIRECTION_2LINES)
410
        ald_spi_clear_flag_status(hperh, SPI_IF_OVE);
W
wangyq2018 已提交
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425

    hperh->state = SPI_STATE_READY;
    __UNLOCK(hperh);

    return OK;
}

/**
  * @brief  Receive an amount of data in blocking mode.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  buf: Pointer to data buffer
  * @param  size: Amount of data to be received
  * @param  timeout: Timeout duration
  * @retval Status, see @ref ald_status_t.
  */
426
ald_status_t ald_spi_recv(spi_handle_t *hperh, uint8_t *buf, uint16_t size, uint32_t timeout)
W
wangyq2018 已提交
427 428 429 430 431 432
{
    uint16_t temp;
    assert_param(IS_SPI(hperh->perh));

    if (hperh->state != SPI_STATE_READY)
        return BUSY;
433

W
wangyq2018 已提交
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
    if (buf == NULL || size == 0)
        return ERROR;

    __LOCK(hperh);
    hperh->state    = SPI_STATE_BUSY_RX;
    hperh->err_code = SPI_ERROR_NONE;

    hperh->rx_buf   = buf;
    hperh->rx_size  = size;
    hperh->rx_count = size;
    hperh->tx_buf   = NULL;
    hperh->tx_size  = 0;
    hperh->tx_count = 0;

    if (hperh->init.crc_calc)
        SPI_CRC_RESET(hperh);
450

W
wangyq2018 已提交
451 452 453 454 455 456 457
    if (hperh->init.dir == SPI_DIRECTION_1LINE_RX)
        SPI_1LINE_RX(hperh);

    if ((hperh->init.mode == SPI_MODE_MASTER) && (hperh->init.dir == SPI_DIRECTION_2LINES))
    {
        __UNLOCK(hperh);
        hperh->state = SPI_STATE_READY;
458
        return ald_spi_send_recv(hperh, buf, buf, size, timeout);
W
wangyq2018 已提交
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 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
    }

    if ((hperh->init.dir == SPI_DIRECTION_2LINES_RXONLY) || (hperh->init.dir == SPI_DIRECTION_1LINE_RX))
        SPI_ENABLE(hperh);

    while (hperh->rx_count > 1)
    {
        if (spi_wait_flag(hperh, SPI_IF_RXBNE, SET, timeout) != OK)
        {
            if (hperh->init.crc_calc)
                SPI_CRC_RESET(hperh);

            hperh->state = SPI_STATE_READY;
            __UNLOCK(hperh);
            return TIMEOUT;
        }

        if (hperh->init.data_size == SPI_DATA_SIZE_8)
        {
            *hperh->rx_buf = hperh->perh->DATA;
            ++hperh->rx_buf;
            --hperh->rx_count;
        }
        else
        {
            *(uint16_t *)hperh->rx_buf = hperh->perh->DATA;
            hperh->rx_buf += 2;
            --hperh->rx_count;
        }
    }

    if (hperh->init.crc_calc)
        SPI_CRCNEXT_ENABLE(hperh);

    if (spi_wait_flag(hperh, SPI_IF_RXBNE, SET, timeout) != OK)
    {
        if (hperh->init.crc_calc)
            SPI_CRC_RESET(hperh);

        hperh->state = SPI_STATE_READY;
        __UNLOCK(hperh);
        return TIMEOUT;
    }

    if (hperh->init.data_size == SPI_DATA_SIZE_8)
    {
        *hperh->rx_buf = hperh->perh->DATA;
        ++hperh->rx_buf;
        --hperh->rx_count;
    }
    else
    {
        *(uint16_t *)hperh->rx_buf = hperh->perh->DATA;
        hperh->rx_buf += 2;
        --hperh->rx_count;
    }

    if (hperh->init.crc_calc)
    {
        if (spi_wait_flag(hperh, SPI_IF_RXBNE, SET, timeout) != OK)
        {
            if (hperh->init.crc_calc)
                SPI_CRC_RESET(hperh);

            hperh->state = SPI_STATE_READY;
            __UNLOCK(hperh);
            return TIMEOUT;
        }

        temp = hperh->perh->DATA;
        UNUSED(temp);
    }

532
    if ((hperh->init.crc_calc) && (ald_spi_get_flag_status(hperh, SPI_IF_CRCERR) != RESET))
W
wangyq2018 已提交
533 534 535
    {
        hperh->err_code |= SPI_ERROR_CRC;
        SPI_CRC_RESET(hperh);
536
        ald_spi_clear_flag_status(hperh, SPI_IF_CRCERR);
W
wangyq2018 已提交
537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
        hperh->state = SPI_STATE_READY;
        __UNLOCK(hperh);
        return ERROR;
    }

    hperh->state = SPI_STATE_READY;
    __UNLOCK(hperh);

    return OK;
}

/**
  * @brief  Full-Duplex Send receive an amount of data in full-duplex mode (blocking mode).
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  tx_buf: Pointer to data transmitted buffer
  * @param  rx_buf: Pointer to data received buffer
  * @param  size: Amount of data to be sent
  * @param  timeout: Timeout duration
  * @retval Status, see @ref ald_status_t.
  */
557
ald_status_t ald_spi_send_recv(spi_handle_t *hperh, uint8_t *tx_buf, uint8_t *rx_buf, uint16_t size, uint32_t timeout)
W
wangyq2018 已提交
558 559 560 561 562 563 564
{
    uint16_t temp;

    assert_param(IS_SPI(hperh->perh));

    if (hperh->state != SPI_STATE_READY)
        return BUSY;
565

W
wangyq2018 已提交
566 567
    if (hperh->init.dir != SPI_DIRECTION_2LINES)
        return ERROR;
568

W
wangyq2018 已提交
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 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 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 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
    if (tx_buf == NULL || rx_buf == NULL || size == 0)
        return ERROR;

    __LOCK(hperh);
    hperh->state    = SPI_STATE_BUSY_TX_RX;
    hperh->err_code = SPI_ERROR_NONE;

    hperh->tx_buf   = tx_buf;
    hperh->tx_size  = size;
    hperh->tx_count = size;
    hperh->rx_buf   = rx_buf;
    hperh->rx_size  = size;
    hperh->rx_count = size;

    if (hperh->init.crc_calc)
        SPI_CRC_RESET(hperh);

    if ((hperh->init.mode == SPI_MODE_SLAVER) || ((hperh->init.mode == SPI_MODE_SLAVER) && (hperh->tx_size == 1)))
    {
        if (hperh->init.data_size == SPI_DATA_SIZE_8)
        {
            hperh->perh->DATA = *hperh->tx_buf;
            ++hperh->tx_buf;
            --hperh->tx_count;
        }
        else
        {
            hperh->perh->DATA = (*(uint16_t *)hperh->tx_buf);
            hperh->tx_buf += 2;
            --hperh->tx_count;
        }
    }

    if (hperh->tx_buf == 0)
    {
        if (hperh->init.crc_calc)
            SPI_CRCNEXT_ENABLE(hperh);

        if (spi_wait_flag(hperh, SPI_IF_TXBE, SET, timeout) != OK)
        {
            if (hperh->init.crc_calc)
                SPI_CRC_RESET(hperh);

            hperh->state = SPI_STATE_READY;
            __UNLOCK(hperh);
            return TIMEOUT;
        }

        if (hperh->init.data_size == SPI_DATA_SIZE_8)
        {
            *hperh->rx_buf = hperh->perh->DATA;
            ++hperh->rx_buf;
            --hperh->rx_count;
        }
        else
        {
            (*(uint16_t *)hperh->rx_buf) = hperh->perh->DATA;
            hperh->rx_buf += 2;
            --hperh->rx_count;
        }
    }

    while (hperh->tx_count > 0)
    {
        if (spi_wait_flag(hperh, SPI_IF_TXBE, SET, timeout) != OK)
        {
            if (hperh->init.crc_calc)
                SPI_CRC_RESET(hperh);

            hperh->state = SPI_STATE_READY;
            __UNLOCK(hperh);
            return TIMEOUT;
        }

        if (hperh->init.data_size == SPI_DATA_SIZE_8)
        {
            hperh->perh->DATA = *hperh->tx_buf;
            ++hperh->tx_buf;
            --hperh->tx_count;
        }
        else
        {
            hperh->perh->DATA = (*(uint16_t *)hperh->tx_buf);
            hperh->tx_buf += 2;
            --hperh->tx_count;
        }

        if ((hperh->tx_count == 0) && (hperh->init.crc_calc))
            SPI_CRCNEXT_ENABLE(hperh);

        if (spi_wait_flag(hperh, SPI_IF_RXBNE, SET, timeout) != OK)
        {
            if (hperh->init.crc_calc)
                SPI_CRC_RESET(hperh);

            hperh->state = SPI_STATE_READY;
            __UNLOCK(hperh);
            return TIMEOUT;
        }

        if (hperh->init.data_size == SPI_DATA_SIZE_8)
        {
            *hperh->rx_buf = hperh->perh->DATA;
            ++hperh->rx_buf;
            --hperh->rx_count;
        }
        else
        {
            (*(uint16_t *)hperh->rx_buf) = hperh->perh->DATA;

            hperh->rx_buf += 2;
            --hperh->rx_count;
        }
    }

    if (hperh->init.mode == SPI_MODE_SLAVER)
    {
        if (spi_wait_flag(hperh, SPI_IF_RXBNE, SET, timeout) != OK)
        {
            if (hperh->init.crc_calc)
                SPI_CRC_RESET(hperh);

            hperh->state = SPI_STATE_READY;
            __UNLOCK(hperh);
            return TIMEOUT;
        }

        if (hperh->init.data_size == SPI_DATA_SIZE_8)
        {
            *hperh->rx_buf = hperh->perh->DATA;
            ++hperh->rx_buf;
            --hperh->rx_count;
        }
        else
        {
            (*(uint16_t *)hperh->rx_buf) = hperh->perh->DATA;

            hperh->rx_buf += 2;
            --hperh->rx_count;
        }
    }

    if (hperh->init.crc_calc)
    {
        if (spi_wait_flag(hperh, SPI_IF_RXBNE, SET, timeout) != OK)
        {
            if (hperh->init.crc_calc)
                SPI_CRC_RESET(hperh);

            hperh->state = SPI_STATE_READY;
            __UNLOCK(hperh);
            return TIMEOUT;
        }

        temp = hperh->perh->DATA;
        UNUSED(temp);
    }

    if ((spi_wait_flag(hperh, SPI_IF_BUSY, RESET, timeout) != OK))
    {
        if (hperh->init.crc_calc)
            SPI_CRC_RESET(hperh);

        hperh->state = SPI_STATE_READY;
        __UNLOCK(hperh);
        return TIMEOUT;
    }

737
    if ((hperh->init.crc_calc) && (ald_spi_get_flag_status(hperh, SPI_IF_CRCERR) != RESET))
W
wangyq2018 已提交
738 739 740
    {
        hperh->err_code |= SPI_ERROR_CRC;
        SPI_CRC_RESET(hperh);
741
        ald_spi_clear_flag_status(hperh, SPI_IF_CRCERR);
W
wangyq2018 已提交
742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760
        hperh->state = SPI_STATE_READY;
        __UNLOCK(hperh);

        return ERROR;
    }

    hperh->state = SPI_STATE_READY;
    __UNLOCK(hperh);

    return OK;
}

/**
  * @brief  Wraps up transmission in non blocking mode.
  * @param  hperh: pointer to a spi_handle_t structure.
  * @param  buf: Pointer to data transmitted buffer
  * @param  size: Amount of data to be sent
  * @retval Status, see @ref ald_status_t.
  */
761
ald_status_t ald_spi_send_by_it(spi_handle_t *hperh, uint8_t *buf, uint16_t size)
W
wangyq2018 已提交
762 763 764 765 766
{
    assert_param(IS_SPI(hperh->perh));

    if (hperh->state != SPI_STATE_READY)
        return BUSY;
767

W
wangyq2018 已提交
768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790
    if (buf == NULL || size == 0)
        return ERROR;

    __LOCK(hperh);
    hperh->state    = SPI_STATE_BUSY_TX;
    hperh->err_code = SPI_ERROR_NONE;

    hperh->tx_buf   = buf;
    hperh->tx_size  = size;
    hperh->tx_count = size;
    hperh->rx_buf   = NULL;
    hperh->rx_size  = 0;
    hperh->rx_count = 0;
    __UNLOCK(hperh);

    if (hperh->init.crc_calc)
        SPI_CRC_RESET(hperh);

    if (hperh->init.dir == SPI_DIRECTION_1LINE)
        SPI_1LINE_TX(hperh);

    if (hperh->init.dir == SPI_DIRECTION_2LINES)
    {
791
        ald_spi_interrupt_config(hperh, SPI_IT_TXBE, ENABLE);
W
wangyq2018 已提交
792 793 794
    }
    else
    {
795 796
        ald_spi_interrupt_config(hperh, SPI_IT_TXBE, ENABLE);
        ald_spi_interrupt_config(hperh, SPI_IT_ERR, ENABLE);
W
wangyq2018 已提交
797 798 799 800 801 802 803 804 805 806 807 808 809 810 811
    }

    if (READ_BIT(hperh->perh->CON1, SPI_CON1_SPIEN_MSK) == 0)
        SPI_ENABLE(hperh);

    return OK;
}

/**
  * @brief  Receives an amount of data in non blocking mode
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  buf: Pointer to data received buffer
  * @param  size: Amount of data to be sent
  * @retval Status, see @ref ald_status_t.
  */
812
ald_status_t ald_spi_recv_by_it(spi_handle_t *hperh, uint8_t *buf, uint16_t size)
W
wangyq2018 已提交
813 814 815 816 817
{
    assert_param(IS_SPI(hperh->perh));

    if (hperh->state != SPI_STATE_READY)
        return BUSY;
818

W
wangyq2018 已提交
819 820
    if (buf == NULL || size == 0)
        return ERROR;
821

W
wangyq2018 已提交
822
    if ((hperh->init.dir == SPI_DIRECTION_2LINES) && (hperh->init.mode == SPI_MODE_MASTER))
823
        return ERROR;	/* Please call ald_spi_send_recv_by_it() */
W
wangyq2018 已提交
824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842

    __LOCK(hperh);
    hperh->state    = SPI_STATE_BUSY_RX;
    hperh->err_code = SPI_ERROR_NONE;

    hperh->rx_buf   = buf;
    hperh->rx_size  = size;
    hperh->rx_count = size;
    hperh->tx_buf   = NULL;
    hperh->tx_size  = 0;
    hperh->tx_count = 0;
    __UNLOCK(hperh);

    if (hperh->init.dir == SPI_DIRECTION_1LINE_RX)
        SPI_1LINE_RX(hperh);

    if (hperh->init.crc_calc == ENABLE)
        SPI_CRC_RESET(hperh);

843 844
    ald_spi_interrupt_config(hperh, SPI_IT_RXBNE, ENABLE);
    ald_spi_interrupt_config(hperh, SPI_IT_ERR, ENABLE);
W
wangyq2018 已提交
845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860

    if ((hperh->init.dir == SPI_DIRECTION_2LINES_RXONLY) || (hperh->init.dir == SPI_DIRECTION_1LINE_RX))
        SPI_ENABLE(hperh);

    return OK;
}

/**
  * @brief  Transmit and Receives an amount of data in non blocking mode
  * @param  hperh: Pointer to a spi_handle_t structure that contains
  *         the configuration information for the specified SPI module.
  * @param  tx_buf: Pointer to data transmitted buffer
  * @param  rx_buf: Pointer to data received buffer
  * @param  size: Amount of data to be sent
  * @retval Status, see @ref ald_status_t.
  */
861
ald_status_t ald_spi_send_recv_by_it(spi_handle_t *hperh, uint8_t *tx_buf, uint8_t *rx_buf, uint16_t size)
W
wangyq2018 已提交
862 863 864 865 866
{
    assert_param(IS_SPI(hperh->perh));

    if (hperh->state != SPI_STATE_READY)
        return BUSY;
867

W
wangyq2018 已提交
868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885
    if (tx_buf == NULL || rx_buf == NULL || size == 0)
        return ERROR;

    __LOCK(hperh);
    hperh->state    = SPI_STATE_BUSY_TX_RX;
    hperh->err_code = SPI_ERROR_NONE;

    hperh->tx_buf   = tx_buf;
    hperh->tx_size  = size;
    hperh->tx_count = size;
    hperh->rx_buf   = rx_buf;
    hperh->rx_size  = size;
    hperh->rx_count = size;
    __UNLOCK(hperh);

    if (hperh->init.crc_calc)
        SPI_CRC_RESET(hperh);

886 887 888
    ald_spi_interrupt_config(hperh, SPI_IT_RXBNE, ENABLE);
    ald_spi_interrupt_config(hperh, SPI_IT_TXBE, ENABLE);
    ald_spi_interrupt_config(hperh, SPI_IT_ERR, ENABLE);
W
wangyq2018 已提交
889 890 891 892 893 894 895 896 897 898 899 900 901

    return OK;
}

#ifdef ALD_DMA
/**
  * @brief  Transmit an amount of data used dma channel
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  buf: Pointer to data buffer
  * @param  size: Amount of data to be sent
  * @param  channel: DMA channel as SPI transmit
  * @retval Status, see @ref ald_status_t.
  */
902
ald_status_t ald_spi_send_by_dma(spi_handle_t *hperh, uint8_t *buf, uint16_t size, uint8_t channel)
W
wangyq2018 已提交
903 904 905 906 907
{
    assert_param(IS_SPI(hperh->perh));

    if (hperh->state != SPI_STATE_READY)
        return BUSY;
908

W
wangyq2018 已提交
909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924
    if (buf == NULL || size == 0)
        return ERROR;

    __LOCK(hperh);
    hperh->state    = SPI_STATE_BUSY_TX;
    hperh->err_code = SPI_ERROR_NONE;

    hperh->tx_buf   = buf;
    hperh->tx_size  = size;
    hperh->tx_count = size;
    hperh->rx_buf   = NULL;
    hperh->rx_size  = 0;
    hperh->rx_count = 0;

    if (hperh->init.dir == SPI_DIRECTION_1LINE)
        SPI_1LINE_TX(hperh);
925

W
wangyq2018 已提交
926 927 928 929 930 931 932 933 934 935 936 937
    if (hperh->init.crc_calc)
        SPI_CRC_RESET(hperh);

    if (hperh->hdmatx.perh == NULL)
        hperh->hdmatx.perh = DMA0;

    hperh->hdmatx.cplt_arg = (void *)hperh;
    hperh->hdmatx.cplt_cbk = spi_dma_send_cplt;
    hperh->hdmatx.err_arg  = (void *)hperh;
    hperh->hdmatx.err_cbk  = spi_dma_error;

    /* Configure SPI DMA transmit */
938
    ald_dma_config_struct(&(hperh->hdmatx.config));
W
wangyq2018 已提交
939 940 941 942 943 944 945 946 947
    hperh->hdmatx.config.data_width = hperh->init.data_size == SPI_DATA_SIZE_8 ? DMA_DATA_SIZE_BYTE : DMA_DATA_SIZE_HALFWORD;
    hperh->hdmatx.config.src        = (void *)buf;
    hperh->hdmatx.config.dst        = (void *)&hperh->perh->DATA;
    hperh->hdmatx.config.size       = size;
    hperh->hdmatx.config.src_inc    = hperh->init.data_size == SPI_DATA_SIZE_8 ? DMA_DATA_INC_BYTE : DMA_DATA_INC_HALFWORD;
    hperh->hdmatx.config.dst_inc    = DMA_DATA_INC_NONE;
    hperh->hdmatx.config.msel       = hperh->perh == SPI0 ? DMA_MSEL_SPI0 : (hperh->perh == SPI1 ? DMA_MSEL_SPI1 : DMA_MSEL_SPI2);
    hperh->hdmatx.config.msigsel    = DMA_MSIGSEL_SPI_TXEMPTY;
    hperh->hdmatx.config.channel    = channel;
948
    ald_dma_config_basic(&(hperh->hdmatx));
W
wangyq2018 已提交
949 950

    __UNLOCK(hperh);
951
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_TX, ENABLE);
W
wangyq2018 已提交
952 953 954 955 956 957 958 959 960 961 962 963 964 965 966

    if (READ_BIT(hperh->perh->CON1, SPI_CON1_SPIEN_MSK) == 0)
        SPI_ENABLE(hperh);

    return OK;
}

/**
  * @brief  Receive an amount of data used dma channel
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  buf: Pointer to data buffer
  * @param  size: Amount of data to be sent
  * @param  channel: DMA channel as SPI transmit
  * @retval Status, see @ref ald_status_t.
  */
967
ald_status_t ald_spi_recv_by_dma(spi_handle_t *hperh, uint8_t *buf, uint16_t size, uint8_t channel)
W
wangyq2018 已提交
968 969 970 971 972
{
    assert_param(IS_SPI(hperh->perh));

    if (hperh->state != SPI_STATE_READY)
        return BUSY;
973

W
wangyq2018 已提交
974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989
    if (buf == NULL || size == 0)
        return ERROR;

    __LOCK(hperh);
    hperh->state    = SPI_STATE_BUSY_RX;
    hperh->err_code = SPI_ERROR_NONE;

    hperh->rx_buf   = buf;
    hperh->rx_size  = size;
    hperh->rx_count = size;
    hperh->tx_buf   = NULL;
    hperh->tx_size  = 0;
    hperh->tx_count = 0;

    if (hperh->init.dir == SPI_DIRECTION_1LINE_RX)
        SPI_1LINE_RX(hperh);
990

W
wangyq2018 已提交
991 992 993
    if ((hperh->init.dir == SPI_DIRECTION_2LINES) && (hperh->init.mode == SPI_MODE_MASTER))
    {
        __UNLOCK(hperh);
994
        return ERROR;	/* Please use ald_spi_send_recv_by_dma() */
W
wangyq2018 已提交
995
    }
996

W
wangyq2018 已提交
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
    if (hperh->init.crc_calc)
        SPI_CRC_RESET(hperh);

    if (hperh->hdmarx.perh == NULL)
        hperh->hdmarx.perh = DMA0;

    hperh->hdmarx.cplt_arg = (void *)hperh;
    hperh->hdmarx.cplt_cbk = spi_dma_recv_cplt;
    hperh->hdmarx.err_arg  = (void *)hperh;
    hperh->hdmarx.err_cbk  = spi_dma_error;

    /* Configure DMA Receive */
1009
    ald_dma_config_struct(&(hperh->hdmarx.config));
W
wangyq2018 已提交
1010 1011 1012 1013 1014 1015 1016 1017 1018
    hperh->hdmarx.config.data_width = hperh->init.data_size == SPI_DATA_SIZE_8 ? DMA_DATA_SIZE_BYTE : DMA_DATA_SIZE_HALFWORD;
    hperh->hdmarx.config.src        = (void *)&hperh->perh->DATA;
    hperh->hdmarx.config.dst        = (void *)buf;
    hperh->hdmarx.config.size       = size;
    hperh->hdmarx.config.src_inc    = DMA_DATA_INC_NONE;
    hperh->hdmarx.config.dst_inc    = hperh->init.data_size == SPI_DATA_SIZE_8 ? DMA_DATA_INC_BYTE : DMA_DATA_INC_HALFWORD;;
    hperh->hdmarx.config.msel       = hperh->perh == SPI0 ? DMA_MSEL_SPI0 : (hperh->perh == SPI1 ? DMA_MSEL_SPI1 : DMA_MSEL_SPI2);
    hperh->hdmarx.config.msigsel    = DMA_MSIGSEL_SPI_RNR;
    hperh->hdmarx.config.channel    = channel;
1019
    ald_dma_config_basic(&(hperh->hdmarx));
W
wangyq2018 已提交
1020 1021

    __UNLOCK(hperh);
1022
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_RX, ENABLE);
W
wangyq2018 已提交
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039

    if ((hperh->init.dir == SPI_DIRECTION_2LINES_RXONLY) || (hperh->init.dir == SPI_DIRECTION_1LINE_RX))
        SPI_ENABLE(hperh);

    return OK;
}

/**
  * @brief  Transmit and Receive an amount of data used dma channel
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  tx_buf: Pointer to data buffer
  * @param  rx_buf: Pointer to data buffer
  * @param  size: Amount of data to be sent
  * @param  tx_channel: DMA channel as SPI transmit
  * @param  rx_channel: DMA channel as SPI receive
  * @retval Status, see @ref ald_status_t.
  */
1040
ald_status_t ald_spi_send_recv_by_dma(spi_handle_t *hperh, uint8_t *tx_buf, uint8_t *rx_buf, uint16_t size, uint8_t tx_channel, uint8_t rx_channel)
W
wangyq2018 已提交
1041 1042 1043 1044 1045
{
    assert_param(IS_SPI(hperh->perh));

    if (hperh->state != SPI_STATE_READY && hperh->state != SPI_STATE_BUSY_RX)
        return BUSY;
1046

W
wangyq2018 已提交
1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062
    if (tx_buf == NULL || rx_buf == NULL || size == 0)
        return ERROR;

    __LOCK(hperh);
    hperh->state    = SPI_STATE_BUSY_RX;
    hperh->err_code = SPI_ERROR_NONE;

    hperh->tx_buf   = tx_buf;
    hperh->tx_size  = size;
    hperh->tx_count = size;
    hperh->rx_buf   = rx_buf;
    hperh->rx_size  = size;
    hperh->rx_count = size;

    if (hperh->hdmatx.perh == NULL)
        hperh->hdmatx.perh = DMA0;
1063

W
wangyq2018 已提交
1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079
    if (hperh->hdmarx.perh == NULL)
        hperh->hdmarx.perh = DMA0;

    hperh->hdmatx.cplt_arg = NULL;
    hperh->hdmatx.cplt_cbk = NULL;
    hperh->hdmatx.err_arg  = (void *)hperh;
    hperh->hdmatx.err_cbk  = spi_dma_error;
    hperh->hdmarx.cplt_arg = (void *)hperh;
    hperh->hdmarx.cplt_cbk = spi_dma_send_recv_cplt;
    hperh->hdmarx.err_arg  = (void *)hperh;
    hperh->hdmarx.err_cbk  = spi_dma_error;

    if (hperh->init.crc_calc)
        SPI_CRC_RESET(hperh);

    /* Configure SPI DMA transmit */
1080
    ald_dma_config_struct(&(hperh->hdmatx.config));
W
wangyq2018 已提交
1081 1082 1083 1084 1085 1086 1087 1088 1089
    hperh->hdmatx.config.data_width = hperh->init.data_size == SPI_DATA_SIZE_8 ? DMA_DATA_SIZE_BYTE : DMA_DATA_SIZE_HALFWORD;
    hperh->hdmatx.config.src        = (void *)tx_buf;
    hperh->hdmatx.config.dst        = (void *)&hperh->perh->DATA;
    hperh->hdmatx.config.size       = size;
    hperh->hdmatx.config.src_inc    = hperh->init.data_size == SPI_DATA_SIZE_8 ? DMA_DATA_INC_BYTE : DMA_DATA_INC_HALFWORD;
    hperh->hdmatx.config.dst_inc    = DMA_DATA_INC_NONE;
    hperh->hdmatx.config.msel       = hperh->perh == SPI0 ? DMA_MSEL_SPI0 : (hperh->perh == SPI1 ? DMA_MSEL_SPI1 : DMA_MSEL_SPI2);
    hperh->hdmatx.config.msigsel    = DMA_MSIGSEL_SPI_TXEMPTY;
    hperh->hdmatx.config.channel    = tx_channel;
1090
    ald_dma_config_basic(&(hperh->hdmatx));
W
wangyq2018 已提交
1091 1092

    /* Configure DMA Receive */
1093
    ald_dma_config_struct(&(hperh->hdmarx.config));
W
wangyq2018 已提交
1094 1095 1096 1097 1098 1099 1100 1101 1102
    hperh->hdmarx.config.data_width = hperh->init.data_size == SPI_DATA_SIZE_8 ? DMA_DATA_SIZE_BYTE : DMA_DATA_SIZE_HALFWORD;
    hperh->hdmarx.config.src        = (void *)&hperh->perh->DATA;
    hperh->hdmarx.config.dst        = (void *)rx_buf;
    hperh->hdmarx.config.size       = size;
    hperh->hdmarx.config.src_inc    = DMA_DATA_INC_NONE;
    hperh->hdmarx.config.dst_inc    = hperh->init.data_size == SPI_DATA_SIZE_8 ? DMA_DATA_INC_BYTE : DMA_DATA_INC_HALFWORD;;
    hperh->hdmarx.config.msel       = hperh->perh == SPI0 ? DMA_MSEL_SPI0 : (hperh->perh == SPI1 ? DMA_MSEL_SPI1 : DMA_MSEL_SPI2);
    hperh->hdmarx.config.msigsel    = DMA_MSIGSEL_SPI_RNR;
    hperh->hdmarx.config.channel    = rx_channel;
1103
    ald_dma_config_basic(&(hperh->hdmarx));
W
wangyq2018 已提交
1104 1105

    __UNLOCK(hperh);
1106 1107
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_TX, ENABLE);
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_RX, ENABLE);
W
wangyq2018 已提交
1108 1109 1110 1111 1112 1113 1114 1115 1116

    return OK;
}

/**
  * @brief  Pauses the DMA Transfer.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @retval Status
  */
1117
ald_status_t ald_spi_dma_pause(spi_handle_t *hperh)
W
wangyq2018 已提交
1118 1119 1120 1121
{
    assert_param(IS_SPI(hperh->perh));

    __LOCK(hperh);
1122 1123
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_TX, DISABLE);
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_RX, DISABLE);
W
wangyq2018 已提交
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133
    __UNLOCK(hperh);

    return OK;
}

/**
  * @brief  Resumes the DMA Transfer.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @retval Status
  */
1134
ald_status_t ald_spi_dma_resume(spi_handle_t *hperh)
W
wangyq2018 已提交
1135 1136 1137 1138
{
    assert_param(IS_SPI(hperh->perh));

    __LOCK(hperh);
1139 1140
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_TX, ENABLE);
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_RX, ENABLE);
W
wangyq2018 已提交
1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
    __UNLOCK(hperh);

    return OK;
}

/**
  * @brief  Stops the DMA Transfer.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @retval Status
  */
1151
ald_status_t ald_spi_dma_stop(spi_handle_t *hperh)
W
wangyq2018 已提交
1152 1153 1154 1155
{
    assert_param(IS_SPI(hperh->perh));

    __LOCK(hperh);
1156 1157
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_TX, DISABLE);
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_RX, DISABLE);
W
wangyq2018 已提交
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
    __UNLOCK(hperh);

    hperh->state = SPI_STATE_READY;
    return OK;
}
#endif
/**
  * @}
  */

/** @defgroup SPI_Public_Functions_Group3 Control functions
  * @brief SPI Control functions
  *
  * @verbatim
   ===============================================================================
                      ##### Peripheral Control functions #####
   ===============================================================================
    [..]
    This subsection provides a set of functions allowing to control the SPI.
1177
     (+) Handle interrupt about SPI module. The ald_spi_irq_handler() function must
W
wangyq2018 已提交
1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
         be invoked by SPI-IRQ function.
     (+) Configure the interrupt DISABLE/ENABLE.
     (+) Configure the DMA request.
     (+) Get interrupt source status.
     (+) Get interrupt flag status.
     (+) Clear interrupt flag

    @endverbatim
  * @{
  */

/**
  * @brief  This function handles SPI interrupt request.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @retval None
  */
1194
void ald_spi_irq_handler(spi_handle_t *hperh)
W
wangyq2018 已提交
1195 1196 1197
{
    if ((hperh->state == SPI_STATE_BUSY_RX) || (hperh->state == SPI_STATE_BUSY_TX))
    {
1198
        if ((ald_spi_get_it_status(hperh, SPI_IT_RXBNE) != RESET) && (ald_spi_get_flag_status(hperh, SPI_IF_RXBNE) != RESET))
W
wangyq2018 已提交
1199 1200
            __spi_recv_by_it(hperh);

1201
        if ((ald_spi_get_it_status(hperh, SPI_IT_TXBE) != RESET) && (ald_spi_get_flag_status(hperh, SPI_IF_TXBE) != RESET))
W
wangyq2018 已提交
1202 1203 1204 1205 1206 1207 1208
            __spi_send_by_it(hperh);
    }

    else if (hperh->state == SPI_STATE_BUSY_TX_RX)
    {
        if (hperh->tx_size == hperh->tx_count)
        {
1209
            if ((ald_spi_get_it_status(hperh, SPI_IT_TXBE) != RESET) && (ald_spi_get_flag_status(hperh, SPI_IF_TXBE) != RESET))
W
wangyq2018 已提交
1210 1211 1212 1213
                __spi_send_recv_by_it(hperh, SPI_SR_TXBE);
        }
        else
        {
1214 1215
            if ((ald_spi_get_it_status(hperh, SPI_IT_TXBE) != RESET) && (ald_spi_get_flag_status(hperh, SPI_IF_TXBE) != RESET)
                    && (ald_spi_get_it_status(hperh, SPI_IT_RXBNE) != RESET) && (ald_spi_get_flag_status(hperh, SPI_IF_RXBNE) != RESET))
W
wangyq2018 已提交
1216 1217 1218 1219
                __spi_send_recv_by_it(hperh, SPI_SR_TXBE_RXBNE);
        }
    }

1220
    if ((ald_spi_get_it_status(hperh, SPI_IT_ERR) != RESET))
W
wangyq2018 已提交
1221
    {
1222
        if (ald_spi_get_flag_status(hperh, SPI_IF_CRCERR) != RESET)
W
wangyq2018 已提交
1223 1224
        {
            hperh->err_code |= SPI_ERROR_CRC;
1225
            ald_spi_clear_flag_status(hperh, SPI_IF_CRCERR);
W
wangyq2018 已提交
1226
        }
1227 1228

        if (ald_spi_get_flag_status(hperh, SPI_IF_MODF) != RESET)
W
wangyq2018 已提交
1229 1230
        {
            hperh->err_code |= SPI_ERROR_MODF;
1231
            ald_spi_clear_flag_status(hperh, SPI_IF_MODF);
W
wangyq2018 已提交
1232
        }
1233 1234

        if (ald_spi_get_flag_status(hperh, SPI_IF_OVE) != RESET)
W
wangyq2018 已提交
1235 1236 1237 1238
        {
            if (hperh->state != SPI_STATE_BUSY_TX)
            {
                hperh->err_code |= SPI_ERROR_OVE;
1239
                ald_spi_clear_flag_status(hperh, SPI_IF_OVE);
W
wangyq2018 已提交
1240 1241 1242 1243 1244
            }
        }

        if (hperh->err_code != SPI_ERROR_NONE)
        {
1245 1246 1247
            ald_spi_interrupt_config(hperh, SPI_IT_RXBNE, DISABLE);
            ald_spi_interrupt_config(hperh, SPI_IT_TXBE, DISABLE);
            ald_spi_interrupt_config(hperh, SPI_IT_ERR, DISABLE);
W
wangyq2018 已提交
1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
            hperh->state = SPI_STATE_READY;

            if (hperh->err_cbk)
                hperh->err_cbk(hperh);
        }
    }

    return;
}

/**
  * @brief  Enables or disables the specified SPI interrupts.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  it: Specifies the SPI interrupt sources to be enabled or disabled.
  *         This parameter can be one of the @ref spi_it_t.
  * @param  state: New status
  *           - ENABLE
  *           - DISABLE
  * @retval None
  */
1268
void ald_spi_interrupt_config(spi_handle_t *hperh, spi_it_t it, type_func_t state)
W
wangyq2018 已提交
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288
{
    assert_param(IS_SPI(hperh->perh));
    assert_param(IS_SPI_IT(it));
    assert_param(IS_FUNC_STATE(state));

    if (state == ENABLE)
        hperh->perh->CON2 |= (uint32_t)it;
    else
        hperh->perh->CON2 &= ~((uint32_t)it);

    return;
}

/**
  * @brief  Configure the specified SPI speed.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  speed: Specifies the SPI speed.
  *         This parameter can be one of the @ref spi_baud_t.
  * @retval None
  */
1289
void ald_spi_speed_config(spi_handle_t *hperh, spi_baud_t speed)
W
wangyq2018 已提交
1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311
{
    uint32_t tmp = 0;
    assert_param(IS_SPI(hperh->perh));
    assert_param(IS_SPI_BAUD(speed));

    tmp = hperh->perh->CON1;
    tmp &= ~(0x7 << SPI_CON1_BAUD_POSS);
    tmp |= (speed << SPI_CON1_BAUD_POSS);
    hperh->perh->CON1 = tmp;
    return;
}

/**
  * @brief  Enables or disables the dma request.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  req: Specifies the SPI dma request sources to be enabled or disabled.
  *         This parameter can be one of the @ref spi_dma_req_t.
  * @param  state: New status
  *           - ENABLE
  *           - DISABLE
  * @retval None
  */
1312
void ald_spi_dma_req_config(spi_handle_t *hperh, spi_dma_req_t req, type_func_t state)
W
wangyq2018 已提交
1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335
{
    assert_param(IS_SPI(hperh->perh));
    assert_param(IS_SPI_DMA_REQ(req));
    assert_param(IS_FUNC_STATE(state));

    if (state == ENABLE)
    {
        if (req == SPI_DMA_REQ_TX)
            SET_BIT(hperh->perh->CON2, SPI_CON2_TXDMA_MSK);
        else
            SET_BIT(hperh->perh->CON2, SPI_CON2_RXDMA_MSK);
    }
    else
    {
        if (req == SPI_DMA_REQ_TX)
            CLEAR_BIT(hperh->perh->CON2, SPI_CON2_TXDMA_MSK);
        else
            CLEAR_BIT(hperh->perh->CON2, SPI_CON2_RXDMA_MSK);
    }

    return;
}

1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354
/** @brief  Check whether the specified SPI state flag is set or not.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  status: specifies the flag to check.
  *         This parameter can be one of the @ref spi_status_t.
  * @retval Status
  *           - SET
  *           - RESET
  */
flag_status_t spi_get_status(spi_handle_t *hperh, spi_status_t status)
{
    assert_param(IS_SPI(hperh->perh));
    assert_param(IS_SPI_STATUS(status));

    if (hperh->perh->STAT & status)
        return SET;

    return RESET;
}

W
wangyq2018 已提交
1355 1356 1357 1358 1359 1360 1361 1362 1363
/**
  * @brief  Checks whether the specified SPI interrupt has occurred or not.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  it: Specifies the SPI interrupt source to check.
  *         This parameter can be one of the @ref spi_it_t.
  * @retval Status
  *           - SET
  *           - RESET
  */
1364
it_status_t ald_spi_get_it_status(spi_handle_t *hperh, spi_it_t it)
W
wangyq2018 已提交
1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382
{
    assert_param(IS_SPI(hperh->perh));
    assert_param(IS_SPI_IT(it));

    if (hperh->perh->CON2 & it)
        return SET;

    return RESET;
}

/** @brief  Check whether the specified SPI flag is set or not.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  flag: specifies the flag to check.
  *         This parameter can be one of the @ref spi_flag_t.
  * @retval Status
  *           - SET
  *           - RESET
  */
1383
flag_status_t ald_spi_get_flag_status(spi_handle_t *hperh, spi_flag_t flag)
W
wangyq2018 已提交
1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399
{
    assert_param(IS_SPI(hperh->perh));
    assert_param(IS_SPI_IF(flag));

    if (hperh->perh->STAT & flag)
        return SET;

    return RESET;
}

/** @brief  Clear the specified SPI pending flags.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  flag: specifies the flag to check.
  *         This parameter can be one of the @ref spi_flag_t.
  * @retval None
  */
1400
void ald_spi_clear_flag_status(spi_handle_t *hperh, spi_flag_t flag)
W
wangyq2018 已提交
1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411
{
    uint32_t temp;

    assert_param(IS_SPI(hperh->perh));
    assert_param(IS_SPI_IF(flag));

    if (flag == SPI_IF_CRCERR)
    {
        SET_BIT(hperh->perh->STAT, SPI_STAT_CRCERR_MSK);
        return;
    }
1412

W
wangyq2018 已提交
1413 1414 1415 1416 1417 1418 1419
    if (flag == SPI_IF_OVE)
    {
        temp = hperh->perh->DATA;
        temp = hperh->perh->STAT;
        UNUSED(temp);
        return;
    }
1420

W
wangyq2018 已提交
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441
    if (flag == SPI_IF_MODF)
    {
        temp = hperh->perh->STAT;
        UNUSED(temp);
        hperh->perh->CON1 = hperh->perh->CON1;
        return;
    }

    return;
}

/**
  * @brief  This function handles SPI communication timeout.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  flag: specifies the SPI flag to check.
  * @param  status: The new Flag status (SET or RESET).
  * @param  timeout: Timeout duration
  * @retval Status, see @ref ald_status_t.
  */
static ald_status_t spi_wait_flag(spi_handle_t *hperh, spi_flag_t flag, flag_status_t status, uint32_t timeout)
{
1442
    uint32_t tick = ald_get_tick();
W
wangyq2018 已提交
1443 1444 1445

    assert_param(timeout > 0);

1446
    while ((ald_spi_get_flag_status(hperh, flag)) != status)
W
wangyq2018 已提交
1447
    {
1448
        if (((ald_get_tick()) - tick) > timeout)
W
wangyq2018 已提交
1449
        {
1450 1451 1452
            ald_spi_interrupt_config(hperh, SPI_IT_TXBE, DISABLE);
            ald_spi_interrupt_config(hperh, SPI_IT_RXBNE, DISABLE);
            ald_spi_interrupt_config(hperh, SPI_IT_ERR, DISABLE);
W
wangyq2018 已提交
1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471
            return TIMEOUT;
        }
    }

    return OK;
}

/**
  * @brief  This function handles SPI communication timeout in interrupt function.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  flag: specifies the SPI flag to check.
  * @param  status: The new Flag status (SET or RESET).
  * @param  timeout: Timeout duration
  * @retval Status, see @ref ald_status_t.
  */
static ald_status_t spi_wait_flag_irq(spi_handle_t *hperh, spi_flag_t flag, flag_status_t status, uint32_t timeout)
{
    assert_param(timeout > 0);

1472
    while (((ald_spi_get_flag_status(hperh, flag)) != status) && (--timeout));
W
wangyq2018 已提交
1473 1474 1475 1476

    if (timeout)
        return OK;

1477 1478 1479
    ald_spi_interrupt_config(hperh, SPI_IT_TXBE, DISABLE);
    ald_spi_interrupt_config(hperh, SPI_IT_RXBNE, DISABLE);
    ald_spi_interrupt_config(hperh, SPI_IT_ERR, DISABLE);
W
wangyq2018 已提交
1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496

    return TIMEOUT;
}

/**
  * @}
  */

/** @defgroup SPI_Public_Functions_Group4 Peripheral State and Errors functions
  *  @brief   SPI State and Errors functions
  *
  * @verbatim
 ===============================================================================
                      ##### Peripheral State and Errors functions #####
 ===============================================================================
    [..]
    This subsection provides a set of functions allowing to control the SPI.
1497 1498
     (+) ald_spi_get_state() API can check in run-time the state of the SPI peripheral
     (+) ald_spi_get_error() check in run-time Errors occurring during communication
W
wangyq2018 已提交
1499 1500 1501 1502 1503 1504 1505 1506 1507 1508

    @endverbatim
  * @{
  */

/**
  * @brief  Returns the SPI state.
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @retval ALD state
  */
1509
spi_state_t ald_spi_get_state(spi_handle_t *hperh)
W
wangyq2018 已提交
1510 1511 1512 1513 1514 1515 1516 1517 1518 1519
{
    assert_param(IS_SPI(hperh->perh));
    return hperh->state;
}

/**
  * @brief  Return the SPI error code
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @retval SPI Error Code
  */
1520
uint32_t ald_spi_get_error(spi_handle_t *hperh)
W
wangyq2018 已提交
1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546
{
    assert_param(IS_SPI(hperh->perh));
    return hperh->err_code;
}
/**
  * @}
  */

/**
  * @}
  */

/** @defgroup SPI_Private_Functions SPI Private Functions
  * @brief   SPI Private functions
  * @{
  */

/**
  * @brief  handle program when an tx empty interrupt flag arrived in non block mode
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @retval Status, see @ref ald_status_t.
  */
static void __spi_send_by_it(spi_handle_t *hperh)
{
    if (hperh->tx_count == 0)
    {
1547
        ald_spi_interrupt_config(hperh, SPI_IT_TXBE, DISABLE);
W
wangyq2018 已提交
1548 1549 1550
        hperh->state = SPI_STATE_READY;

        if (hperh->init.dir == SPI_DIRECTION_2LINES)
1551
            ald_spi_clear_flag_status(hperh, SPI_IF_OVE);
W
wangyq2018 已提交
1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576

        if ((spi_wait_flag_irq(hperh, SPI_IF_BUSY, RESET, 5000)) != OK)
        {
            if (hperh->err_cbk)
                hperh->err_cbk(hperh);

            return;
        }

        if (hperh->tx_cplt_cbk)
            hperh->tx_cplt_cbk(hperh);

        return;
    }

    if (hperh->init.data_size == SPI_DATA_SIZE_8)
    {
        hperh->perh->DATA = *hperh->tx_buf;
        ++hperh->tx_buf;
    }
    else
    {
        hperh->perh->DATA    = *(uint16_t *)hperh->tx_buf;
        hperh->tx_buf       += 2;
    }
1577

W
wangyq2018 已提交
1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596
    --hperh->tx_count;

    if (hperh->tx_count == 0)
    {
        if (hperh->init.crc_calc)
            SPI_CRCNEXT_ENABLE(hperh);
    }

    return;
}

/**
  * @brief  handle program when an rx no empty interrupt flag arrived in non block mode
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @retval Status, see @ref ald_status_t.
  */
static void __spi_recv_by_it(spi_handle_t *hperh)
{
    uint16_t temp;
1597

W
wangyq2018 已提交
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607
    if (hperh->init.data_size == SPI_DATA_SIZE_8)
    {
        *hperh->rx_buf = hperh->perh->DATA;
        ++hperh->rx_buf;
    }
    else
    {
        *(uint16_t *)hperh->rx_buf = hperh->perh->DATA;
        hperh->rx_buf             += 2;
    }
1608

W
wangyq2018 已提交
1609 1610 1611 1612 1613 1614 1615
    --hperh->rx_count;

    if ((hperh->rx_count == 1) && (hperh->init.crc_calc))
        SPI_CRCNEXT_ENABLE(hperh);

    if (hperh->rx_count == 0)
    {
1616
        ald_spi_interrupt_config(hperh, SPI_IT_RXBNE, DISABLE);
W
wangyq2018 已提交
1617 1618
        hperh->state = SPI_STATE_READY;

1619
        if ((hperh->init.crc_calc) && (ald_spi_get_flag_status(hperh, SPI_IF_CRCERR) != RESET))
W
wangyq2018 已提交
1620 1621
        {
            hperh->err_code |= SPI_ERROR_CRC;
1622
            ald_spi_clear_flag_status(hperh, SPI_IF_CRCERR);
W
wangyq2018 已提交
1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710

            if (hperh->err_cbk)
                hperh->err_cbk(hperh);

            return;
        }

        if (hperh->init.crc_calc)
        {
            temp = hperh->perh->DATA;
            UNUSED(temp);
        }

        if (hperh->rx_cplt_cbk)
            hperh->rx_cplt_cbk(hperh);
    }

    return;
}

/**
  * @brief  handle program when an rx no empty interrupt flag arrived in non block mode(2 lines)
  * @param  hperh: Pointer to a spi_handle_t structure.
  * @param  status: SR.TXE or SR.RXNE set.
  * @retval Status, see @ref ald_status_t.
  */
static void __spi_send_recv_by_it(spi_handle_t *hperh, spi_sr_status_t status)
{
    assert_param(IS_SPI_SR_STATUS(status));

    if (hperh->rx_count != 0)
    {
        if ((status == SPI_SR_RXBNE) || (status == SPI_SR_TXBE_RXBNE))
        {
            if (hperh->init.data_size == SPI_DATA_SIZE_8)
            {
                *hperh->rx_buf = hperh->perh->DATA;
                ++hperh->rx_buf;
            }
            else
            {
                *(uint16_t *)hperh->rx_buf = hperh->perh->DATA;
                hperh->rx_buf += 2;
            }

            --hperh->rx_count;
        }
    }

    if (hperh->tx_count != 0)
    {
        if ((status == SPI_SR_TXBE) || (status == SPI_SR_TXBE_RXBNE))
        {
            if (hperh->tx_count == 1)
            {
                if (hperh->init.data_size == SPI_DATA_SIZE_8)
                {
                    hperh->perh->DATA = *hperh->tx_buf;
                    ++hperh->tx_buf;
                }
                else
                {
                    hperh->perh->DATA = *(uint16_t *)hperh->tx_buf;
                    hperh->tx_buf       += 2;
                }

                --hperh->tx_count;

                if (hperh->init.crc_calc)
                    SPI_CRCNEXT_ENABLE(hperh);
            }
            else
            {
                if (hperh->init.data_size == SPI_DATA_SIZE_8)
                {
                    hperh->perh->DATA = *hperh->tx_buf;
                    ++hperh->tx_buf;
                }
                else
                {
                    hperh->perh->DATA = *(uint16_t *)hperh->tx_buf;
                    hperh->tx_buf       += 2;
                }

                if (--hperh->tx_count == 0)
                {
                    if (hperh->init.crc_calc)
                        SPI_CRCNEXT_ENABLE(hperh);
1711 1712

                    ald_spi_interrupt_config(hperh, SPI_IT_TXBE, DISABLE);
W
wangyq2018 已提交
1713 1714 1715 1716 1717 1718 1719
                }
            }
        }
    }

    if (hperh->rx_count == 0)
    {
1720 1721 1722
        ald_spi_interrupt_config(hperh, SPI_IT_TXBE, DISABLE);
        ald_spi_interrupt_config(hperh, SPI_IT_RXBNE, DISABLE);
        ald_spi_interrupt_config(hperh, SPI_IT_ERR, DISABLE);
W
wangyq2018 已提交
1723 1724
        hperh->state = SPI_STATE_READY;

1725
        if ((hperh->init.crc_calc) && (ald_spi_get_flag_status(hperh, SPI_IF_CRCERR) != RESET))
W
wangyq2018 已提交
1726 1727
        {
            hperh->err_code |= SPI_ERROR_CRC;
1728
            ald_spi_clear_flag_status(hperh, SPI_IF_CRCERR);
W
wangyq2018 已提交
1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755

            if (hperh->err_cbk)
                hperh->err_cbk(hperh);

            return;
        }

        if (hperh->tx_rx_cplt_cbk)
            hperh->tx_rx_cplt_cbk(hperh);
    }

    return;
}


#ifdef ALD_DMA
/**
  * @brief  DMA SPI transmit process complete callback.
  * @param  arg: Pointer to a spi_handle_t structure.
  * @retval None
  */
static void spi_dma_send_cplt(void *arg)
{
    uint16_t delay;
    spi_handle_t *hperh = (spi_handle_t *)arg;

    hperh->tx_count = 0;
1756
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_TX, DISABLE);
W
wangyq2018 已提交
1757 1758 1759
    hperh->state = SPI_STATE_READY;

    if (hperh->init.dir == SPI_DIRECTION_2LINES)
1760
        ald_spi_clear_flag_status(hperh, SPI_IF_OVE);
W
wangyq2018 已提交
1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791

    if ((spi_wait_flag_irq(hperh, SPI_IF_BUSY, RESET, 5000)) != OK)
        hperh->err_code |= SPI_ERROR_FLAG;

    for (delay = 0; delay < 3000; delay++);

    if (hperh->err_code == SPI_ERROR_NONE)
    {
        if (hperh->tx_cplt_cbk)
            hperh->tx_cplt_cbk(hperh);
    }
    else
    {
        if (hperh->err_cbk)
            hperh->err_cbk(hperh);
    }

    return;
}

/**
  * @brief  DMA SPI receive process complete callback.
  * @param  arg: Pointer to a spi_handle_t structure.
  * @retval None
  */
static void spi_dma_recv_cplt(void *arg)
{
    uint32_t tmp;
    spi_handle_t *hperh = (spi_handle_t *)arg;

    hperh->rx_count = 0;
1792 1793
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_TX, DISABLE);
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_RX, DISABLE);
W
wangyq2018 已提交
1794 1795 1796 1797 1798 1799 1800 1801 1802 1803
    hperh->state = SPI_STATE_READY;

    if (hperh->init.crc_calc)
    {
        if ((spi_wait_flag_irq(hperh, SPI_IF_RXBNE, SET, 5000)) != OK)
            hperh->err_code |= SPI_ERROR_FLAG;

        tmp = hperh->perh->DATA;
        UNUSED(tmp);

1804
        if (ald_spi_get_flag_status(hperh, SPI_IF_CRCERR) == SET)
W
wangyq2018 已提交
1805 1806 1807
        {
            SET_BIT(hperh->err_code, SPI_ERROR_CRC);
            SPI_CRC_RESET(hperh);
1808
            ald_spi_clear_flag_status(hperh, SPI_IF_CRCERR);
W
wangyq2018 已提交
1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844
        }
    }

    if (hperh->err_code == SPI_ERROR_NONE)
    {
        if (hperh->rx_cplt_cbk)
            hperh->rx_cplt_cbk(hperh);
    }
    else
    {
        if (hperh->err_cbk)
            hperh->err_cbk(hperh);
    }

    return;
}

/**
  * @brief  DMA SPI transmit and receive process complete callback.
  * @param  arg: Pointer to a SPI_handle_t structure.
  * @retval None
  */
static void spi_dma_send_recv_cplt(void *arg)
{
    uint32_t tmp;
    uint16_t delay;
    spi_handle_t *hperh = (spi_handle_t *)arg;

    if (hperh->init.crc_calc)
    {
        if ((spi_wait_flag_irq(hperh, SPI_IF_RXBNE, SET, 5000)) != OK)
            hperh->err_code |= SPI_ERROR_FLAG;

        tmp = hperh->perh->DATA;
        UNUSED(tmp);

1845
        if (ald_spi_get_flag_status(hperh, SPI_IF_CRCERR) == SET)
W
wangyq2018 已提交
1846 1847
        {
            SET_BIT(hperh->err_code, SPI_ERROR_CRC);
1848
            ald_spi_clear_flag_status(hperh, SPI_IF_CRCERR);
W
wangyq2018 已提交
1849 1850 1851 1852 1853 1854 1855 1856
        }
    }

    if ((spi_wait_flag_irq(hperh, SPI_IF_BUSY, RESET, 5000)) != OK)
        hperh->err_code |= SPI_ERROR_FLAG;

    for (delay = 0; delay < 3000; delay++);

1857 1858
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_TX, DISABLE);
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_RX, DISABLE);
W
wangyq2018 已提交
1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886
    hperh->tx_count = 0;
    hperh->rx_count = 0;
    hperh->state    = SPI_STATE_READY;

    if (hperh->err_code == SPI_ERROR_NONE)
    {
        if (hperh->tx_rx_cplt_cbk)
            hperh->tx_rx_cplt_cbk(hperh);
    }
    else
    {
        if (hperh->err_cbk)
            hperh->err_cbk(hperh);
    }

    return;
}

/**
  * @brief  DMA SPI communication error callback.
  * @param  arg: Pointer to a spi_handle_t structure that contains
  *         the configuration information for the specified SPI module.
  * @retval None
  */
static void spi_dma_error(void *arg)
{
    spi_handle_t *hperh = (spi_handle_t *)arg;

1887 1888
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_TX, DISABLE);
    ald_spi_dma_req_config(hperh, SPI_DMA_REQ_RX, DISABLE);
W
wangyq2018 已提交
1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911
    SET_BIT(hperh->err_code, SPI_ERROR_DMA);

    hperh->tx_count = 0;
    hperh->rx_count = 0;
    hperh->state    = SPI_STATE_READY;

    if (hperh->err_cbk)
        hperh->err_cbk(hperh);

    return;
}
#endif /* ALD_DMA */
/**
  * @}
  */
#endif /* ALD_SPI */
/**
  * @}
  */

/**
  * @}
  */