From: Robin Murphy <robin.murphy@arm.com>
To: Ulf Hansson <ulf.hansson@oss.qualcomm.com>,
John Garry <john.g.garry@oracle.com>
Cc: ulfh@kernel.org, florian.fainelli@broadcom.com,
rjui@broadcom.com, sbranden@broadcom.com,
bcm-kernel-feedback-list@broadcom.com, linux-mmc@vger.kernel.org,
hch@lst.de, martin.petersen@oracle.com,
linux-rpi-kernel@lists.infradead.org
Subject: Re: [PATCH] mmc: bcm2835: DMA mapping improvements
Date: Mon, 13 Jul 2026 13:19:10 +0100 [thread overview]
Message-ID: <ba056712-027b-4996-9b15-8f70d630ff2c@arm.com> (raw)
In-Reply-To: <CAPx+jO8KJLdpb-H_MGzbOuQA-4mMi0r03Ba-EvLCfG8Q0sk5tA@mail.gmail.com>
On 13/07/2026 12:25 pm, Ulf Hansson wrote:
[...]
>> @@ -1281,10 +1279,8 @@ static int bcm2835_add_host(struct bcm2835_host *host)
>>
>> if (!host->dma_chan_rxtx) {
>> dev_warn(dev, "unable to initialise DMA channel. Falling back to PIO\n");
>> - host->use_dma = false;
>> + host->dma_dev = NULL;
>> } else {
>> - host->use_dma = true;
>> -
>> host->dma_cfg_tx.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
>> host->dma_cfg_tx.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
>> host->dma_cfg_tx.direction = DMA_MEM_TO_DEV;
>> @@ -1300,12 +1296,18 @@ static int bcm2835_add_host(struct bcm2835_host *host)
>> if (dmaengine_slave_config(host->dma_chan_rxtx,
>> &host->dma_cfg_tx) != 0 ||
>> dmaengine_slave_config(host->dma_chan_rxtx,
>> - &host->dma_cfg_rx) != 0)
>> - host->use_dma = false;
>> + &host->dma_cfg_rx) != 0) {
Hang on, doesn't this whole if condition need to be inverted? It's true
upon dma config _failure_, thanks to the original use_dma logic being a
bit backwards here.
Thanks,
Robin.
>> + host->dma_dev =
>> + dmaengine_get_dma_device(host->dma_chan_rxtx);
>> + }
>> }
>>
>> mmc->max_segs = 128;
>> - mmc->max_req_size = min_t(size_t, 524288, dma_max_mapping_size(dev));
>> + mmc->max_req_size = 524288;
>> + if (host->dma_dev) {
>> + mmc->max_req_size = min_t(size_t, mmc->max_req_size,
>> + dma_max_mapping_size(host->dma_dev));
>> + }
>> mmc->max_seg_size = mmc->max_req_size;
>> mmc->max_blk_size = 1024;
>> mmc->max_blk_count = 65535;
>> @@ -1336,10 +1338,10 @@ static int bcm2835_add_host(struct bcm2835_host *host)
>> }
>>
>> pio_limit_string[0] = '\0';
>> - if (host->use_dma && (PIO_THRESHOLD > 0))
>> + if (host->dma_dev && (PIO_THRESHOLD > 0))
>> sprintf(pio_limit_string, " (>%d)", PIO_THRESHOLD);
>> dev_info(dev, "loaded - DMA %s%s\n",
>> - host->use_dma ? "enabled" : "disabled", pio_limit_string);
>> + host->dma_dev ? "enabled" : "disabled", pio_limit_string);
>>
>> return 0;
>> }
>> --
>> 2.43.7
>>
next prev parent reply other threads:[~2026-07-13 12:19 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-06 7:39 [PATCH] mmc: bcm2835: DMA mapping improvements John Garry
2026-07-13 11:25 ` Ulf Hansson
2026-07-13 12:19 ` Robin Murphy [this message]
2026-07-13 12:37 ` John Garry
2026-07-13 13:07 ` Ulf Hansson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ba056712-027b-4996-9b15-8f70d630ff2c@arm.com \
--to=robin.murphy@arm.com \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=florian.fainelli@broadcom.com \
--cc=hch@lst.de \
--cc=john.g.garry@oracle.com \
--cc=linux-mmc@vger.kernel.org \
--cc=linux-rpi-kernel@lists.infradead.org \
--cc=martin.petersen@oracle.com \
--cc=rjui@broadcom.com \
--cc=sbranden@broadcom.com \
--cc=ulf.hansson@oss.qualcomm.com \
--cc=ulfh@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox