Skip to content

Commit d2f025b

Browse files
rvoskstorulf
authored andcommitted
mmc: sdhci: Use "mmc" directly rather than "host->mmc"
Clean up the code to use the "mmc" directly instead of "host->mmc". If the code sits in hot code path, this clean up also brings trvial performance improvement. Take the sdhci_post_req() for example: before the patch: ... 8d0: a9be7bfd stp x29, x30, [sp, #-32]! 8d4: 910003fd mov x29, sp 8d8: f9000bf3 str x19, [sp, gregkh#16] 8dc: f9400833 ldr x19, [x1, gregkh#16] 8e0: b9404261 ldr w1, [x19, #64] 8e4: 34000161 cbz w1, 910 <sdhci_post_req+0x50> 8e8: f9424400 ldr x0, [x0, #1160] 8ec: d2800004 mov x4, #0x0 // #0 8f0: b9401a61 ldr w1, [x19, #24] 8f4: b9403262 ldr w2, [x19, #48] 8f8: f9400000 ldr x0, [x0] 8fc: f278003f tst x1, #0x100 900: f9401e61 ldr x1, [x19, #56] 904: 1a9f17e3 cset w3, eq // eq = none 908: 11000463 add w3, w3, #0x1 90c: 94000000 bl 0 <dma_unmap_sg_attrs> ... After the patch: ... 8d0: a9be7bfd stp x29, x30, [sp, #-32]! 8d4: 910003fd mov x29, sp 8d8: f9000bf3 str x19, [sp, gregkh#16] 8dc: f9400833 ldr x19, [x1, gregkh#16] 8e0: b9404261 ldr w1, [x19, #64] 8e4: 34000141 cbz w1, 90c <sdhci_post_req+0x4c> 8e8: b9401a61 ldr w1, [x19, #24] 8ec: d2800004 mov x4, #0x0 // #0 8f0: b9403262 ldr w2, [x19, #48] 8f4: f9400000 ldr x0, [x0] 8f8: f278003f tst x1, #0x100 8fc: f9401e61 ldr x1, [x19, #56] 900: 1a9f17e3 cset w3, eq // eq = none 904: 11000463 add w3, w3, #0x1 908: 94000000 bl 0 <dma_unmap_sg_attrs> ... We saved one ldr instruction: "ldr x0, [x0, #1160]" Signed-off-by: Jisheng Zhang <[email protected]> Acked-by: Adrian Hunter <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Ulf Hansson <[email protected]>
1 parent ba8734d commit d2f025b

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

drivers/mmc/host/sdhci.c

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,7 @@ static void sdhci_calc_sw_timeout(struct sdhci_host *host,
907907

908908
if (data) {
909909
blksz = data->blksz;
910-
freq = host->mmc->actual_clock ? : host->clock;
910+
freq = mmc->actual_clock ? : host->clock;
911911
transfer_time = (u64)blksz * NSEC_PER_SEC * (8 / bus_width);
912912
do_div(transfer_time, freq);
913913
/* multiply by '2' to account for any unknowns */
@@ -2269,14 +2269,14 @@ void sdhci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
22692269

22702270
if (host->quirks & SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK &&
22712271
host->clock) {
2272-
host->timeout_clk = host->mmc->actual_clock ?
2273-
host->mmc->actual_clock / 1000 :
2272+
host->timeout_clk = mmc->actual_clock ?
2273+
mmc->actual_clock / 1000 :
22742274
host->clock / 1000;
2275-
host->mmc->max_busy_timeout =
2275+
mmc->max_busy_timeout =
22762276
host->ops->get_max_timeout_count ?
22772277
host->ops->get_max_timeout_count(host) :
22782278
1 << 27;
2279-
host->mmc->max_busy_timeout /= host->timeout_clk;
2279+
mmc->max_busy_timeout /= host->timeout_clk;
22802280
}
22812281
}
22822282

@@ -2399,7 +2399,7 @@ static int sdhci_get_cd(struct mmc_host *mmc)
23992399
return 0;
24002400

24012401
/* If nonremovable, assume that the card is always present. */
2402-
if (!mmc_card_is_removable(host->mmc))
2402+
if (!mmc_card_is_removable(mmc))
24032403
return 1;
24042404

24052405
/*
@@ -2489,14 +2489,14 @@ void sdhci_enable_sdio_irq(struct mmc_host *mmc, int enable)
24892489
unsigned long flags;
24902490

24912491
if (enable)
2492-
pm_runtime_get_noresume(host->mmc->parent);
2492+
pm_runtime_get_noresume(mmc->parent);
24932493

24942494
spin_lock_irqsave(&host->lock, flags);
24952495
sdhci_enable_sdio_irq_nolock(host, enable);
24962496
spin_unlock_irqrestore(&host->lock, flags);
24972497

24982498
if (!enable)
2499-
pm_runtime_put_noidle(host->mmc->parent);
2499+
pm_runtime_put_noidle(mmc->parent);
25002500
}
25012501
EXPORT_SYMBOL_GPL(sdhci_enable_sdio_irq);
25022502

@@ -2837,7 +2837,7 @@ int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
28372837
goto out;
28382838
}
28392839

2840-
host->mmc->retune_period = tuning_count;
2840+
mmc->retune_period = tuning_count;
28412841

28422842
if (host->tuning_delay < 0)
28432843
host->tuning_delay = opcode == MMC_SEND_TUNING_BLOCK;
@@ -2886,11 +2886,10 @@ static void sdhci_enable_preset_value(struct sdhci_host *host, bool enable)
28862886
static void sdhci_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
28872887
int err)
28882888
{
2889-
struct sdhci_host *host = mmc_priv(mmc);
28902889
struct mmc_data *data = mrq->data;
28912890

28922891
if (data->host_cookie != COOKIE_UNMAPPED)
2893-
dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
2892+
dma_unmap_sg(mmc_dev(mmc), data->sg, data->sg_len,
28942893
mmc_get_dma_dir(data));
28952894

28962895
data->host_cookie = COOKIE_UNMAPPED;
@@ -2941,9 +2940,9 @@ static void sdhci_card_event(struct mmc_host *mmc)
29412940
/* Check sdhci_has_requests() first in case we are runtime suspended */
29422941
if (sdhci_has_requests(host) && !present) {
29432942
pr_err("%s: Card removed during transfer!\n",
2944-
mmc_hostname(host->mmc));
2943+
mmc_hostname(mmc));
29452944
pr_err("%s: Resetting controller.\n",
2946-
mmc_hostname(host->mmc));
2945+
mmc_hostname(mmc));
29472946

29482947
sdhci_do_reset(host, SDHCI_RESET_CMD);
29492948
sdhci_do_reset(host, SDHCI_RESET_DATA);
@@ -3677,23 +3676,23 @@ int sdhci_resume_host(struct sdhci_host *host)
36773676
host->ops->enable_dma(host);
36783677
}
36793678

3680-
if ((host->mmc->pm_flags & MMC_PM_KEEP_POWER) &&
3679+
if ((mmc->pm_flags & MMC_PM_KEEP_POWER) &&
36813680
(host->quirks2 & SDHCI_QUIRK2_HOST_OFF_CARD_ON)) {
36823681
/* Card keeps power but host controller does not */
36833682
sdhci_init(host, 0);
36843683
host->pwr = 0;
36853684
host->clock = 0;
36863685
mmc->ops->set_ios(mmc, &mmc->ios);
36873686
} else {
3688-
sdhci_init(host, (host->mmc->pm_flags & MMC_PM_KEEP_POWER));
3687+
sdhci_init(host, (mmc->pm_flags & MMC_PM_KEEP_POWER));
36893688
}
36903689

36913690
if (host->irq_wake_enabled) {
36923691
sdhci_disable_irq_wakeups(host);
36933692
} else {
36943693
ret = request_threaded_irq(host->irq, sdhci_irq,
36953694
sdhci_thread_irq, IRQF_SHARED,
3696-
mmc_hostname(host->mmc), host);
3695+
mmc_hostname(mmc), host);
36973696
if (ret)
36983697
return ret;
36993698
}
@@ -4380,7 +4379,7 @@ int sdhci_setup_host(struct sdhci_host *host)
43804379

43814380
if ((host->quirks & SDHCI_QUIRK_BROKEN_CARD_DETECTION) &&
43824381
mmc_card_is_removable(mmc) &&
4383-
mmc_gpio_get_cd(host->mmc) < 0)
4382+
mmc_gpio_get_cd(mmc) < 0)
43844383
mmc->caps |= MMC_CAP_NEEDS_POLL;
43854384

43864385
if (!IS_ERR(mmc->supply.vqmmc)) {

0 commit comments

Comments
 (0)