On Sun, 8 Sept 2024 at 12:22, Avri Altman <avri.altman@xxxxxxx> wrote: > > SDUC memory addressing spans beyond 2TB and up to 128TB. Therefore, 38 > bits are required to access the entire memory space of all sectors. > Those extra 6 bits are to be carried by CMD22 prior of sending > read/write/erase commands: CMD17, CMD18, CMD24, CMD25, CMD32, and CMD33. > > CMD22 will carry the higher order 6 bits, and must precedes any of the > above commands even if it targets sector < 2TB. > > No error related to address or length is indicated in CMD22 but rather > in the read/write command itself. > > Tested-by: Ricky WU <ricky_wu@xxxxxxxxxxx> > Reviewed-by: Adrian Hunter <adrian.hunter@xxxxxxxxx> > Signed-off-by: Avri Altman <avri.altman@xxxxxxx> > --- > drivers/mmc/core/sd_ops.c | 16 ++++++++++++++++ > drivers/mmc/core/sd_ops.h | 1 + > include/linux/mmc/sd.h | 3 +++ > 3 files changed, 20 insertions(+) > > diff --git a/drivers/mmc/core/sd_ops.c b/drivers/mmc/core/sd_ops.c > index f93c392040ae..bb83db85a689 100644 > --- a/drivers/mmc/core/sd_ops.c > +++ b/drivers/mmc/core/sd_ops.c > @@ -16,6 +16,7 @@ > #include <linux/mmc/sd.h> > > #include "core.h" > +#include "card.h" > #include "sd_ops.h" > #include "mmc_ops.h" > > @@ -188,6 +189,21 @@ int mmc_send_app_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr) > return 0; > } > > +int mmc_send_ext_addr(struct mmc_host *host, u32 addr) > +{ > + struct mmc_command cmd = { > + .opcode = SD_ADDR_EXT, > + .arg = addr, > + .flags = MMC_RSP_R1 | MMC_CMD_AC, > + }; > + > + if (!mmc_card_ult_capacity(host->card)) > + return 0; > + > + return mmc_wait_for_cmd(host, &cmd, 0); > +} > +EXPORT_SYMBOL_GPL(mmc_send_ext_addr); This doesn't need to be exported as it's only used by the core module. [...] Kind regards Uffe