WRITE_SINGLE_BLOCK/WRITE_MULTIPLE_BLOCK Operation using DMA Controller

  1. 1.Wait until the current command execution has successfully terminated.

    a. Check that CMDRDY and NOTBUSY fields are asserted in HSMCI_SR

  2. 2.Program the block length in the card. This value defines the value block_length.
  3. 3.Program the block length in the HSMCI Configuration Register with block_length value.
  4. 4.Configure the fields of the HSMCI_MR as follows:

    a. Program FBYTE to one when the transfer is not multiple of 4, zero otherwise.

  5. 5.Issue a WRITE_SINGLE_BLOCK command writing HSMCI_ARGR then HSMCI_CMDR.
  6. 6.Program the DMA Controller.

    a. Read the Channel Status Register to choose an available (disabled) channel.

    b. Clear any pending interrupts on the channel from the previous DMAC transfer by reading the DMAC_CISx register.

    c. Program the channel registers.

    d. The DMAC_CSAx register for Channel x must be set to the location of the source data.

    e. The DMAC_CDAx register for Channel x must be set with the starting address of the HSMCI_FIFO address.

    f. Configure the fields of DMAC_CCx of Channel x as follows:

    – DWIDTH is set to WORD when the transfer is multiple of 4, otherwise it is set to BYTE

    – CSIZE must be set according to the value of HSMCI_DMA.CHKSIZE.

    g. Configure the fields of DMAC_CUBCx for Channel x as follows:

    – UBLEN is programmed with block_length/4 when the transfer length is multiple of 4, block_length otherwise.

    h. Enable Channel x, writing one to DMAC_GE.EN[x]. The DMAC is ready and waiting for request.

  7. 7.Wait for XFRDONE in the HSMCI_SR.