bcm2835_sdhci: "fix" DMA on the RPi 4

According to the documentation I have, DREQ pacing should be required here.
The DREQ# hasn't changed since the BCM2835. As soon as we attempt to setup
DREQ, DMA stalls and there's no clear reason why as of yet. Setting this
back to NONE seems to work just as well, though it's yet to be determined if
this is a sustainable model in high-throughput scenarios.
This commit is contained in:
Kyle Evans 2019-11-23 01:46:02 +00:00
parent 7993a104a1
commit d7399dfdba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=355025
2 changed files with 18 additions and 4 deletions

View File

@ -42,6 +42,10 @@
/* Peripheral DREQ Signals (4.2.1.3) */
#define BCM_DMA_DREQ_NONE 0
/*
* XXX This doesn't seem to work for the Raspberry Pi 4, but the peripheral
* documentation still lists it at 11.
*/
#define BCM_DMA_DREQ_EMMC 11
#define BCM_DMA_DREQ_SDHOST 13

View File

@ -114,6 +114,7 @@ struct bcm_mmc_conf {
int default_freq;
int quirks;
bool use_dma;
int emmc_dreq;
};
struct bcm_mmc_conf bcm2835_sdhci_conf = {
@ -124,6 +125,7 @@ struct bcm_mmc_conf bcm2835_sdhci_conf = {
SDHCI_QUIRK_BROKEN_TIMEOUT_VAL | SDHCI_QUIRK_DONT_SET_HISPD_BIT |
SDHCI_QUIRK_MISSING_CAPS,
.use_dma = true
.emmc_dreq = BCM_DMA_DREQ_EMMC,
};
struct bcm_mmc_conf bcm2838_emmc2_conf = {
@ -131,8 +133,8 @@ struct bcm_mmc_conf bcm2838_emmc2_conf = {
.clock_src = -1,
.default_freq = BCM2838_DEFAULT_SDHCI_FREQ,
.quirks = 0,
/* XXX DMA is currently broken, but it shouldn't be. */
.use_dma = false
.use_dma = true
.emmc_dreq = BCM_DMA_DREQ_NONE,
};
static struct ofw_compat_data compat_data[] = {
@ -555,7 +557,11 @@ bcm_sdhci_start_dma_seg(struct bcm_sdhci_softc *sc)
width = (len & 0xf ? BCM_DMA_32BIT : BCM_DMA_128BIT);
if (slot->curcmd->data->flags & MMC_DATA_READ) {
bcm_dma_setup_src(sc->sc_dma_ch, BCM_DMA_DREQ_EMMC,
/*
* Peripherals on the AXI bus do not need DREQ pacing for reads
* from the ARM core, so we can safely set this to NONE.
*/
bcm_dma_setup_src(sc->sc_dma_ch, BCM_DMA_DREQ_NONE,
BCM_DMA_SAME_ADDR, BCM_DMA_32BIT);
bcm_dma_setup_dst(sc->sc_dma_ch, BCM_DMA_DREQ_NONE,
BCM_DMA_INC_ADDR, width);
@ -563,9 +569,13 @@ bcm_sdhci_start_dma_seg(struct bcm_sdhci_softc *sc)
pdst = sc->dmamap_seg_addrs[idx];
sync_op = BUS_DMASYNC_PREREAD;
} else {
/*
* The ordering here is important, because the last write to
* dst/src in the dma control block writes the real dreq value.
*/
bcm_dma_setup_src(sc->sc_dma_ch, BCM_DMA_DREQ_NONE,
BCM_DMA_INC_ADDR, width);
bcm_dma_setup_dst(sc->sc_dma_ch, BCM_DMA_DREQ_EMMC,
bcm_dma_setup_dst(sc->sc_dma_ch, sc->conf->emmc_dreq,
BCM_DMA_SAME_ADDR, BCM_DMA_32BIT);
psrc = sc->dmamap_seg_addrs[idx];
pdst = sc->sc_sdhci_buffer_phys;