]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
mmc: arm_pl180: Limit data transfer to U16_MAX
authorMaximilian Brune <maximilian.brune@9elements.com>
Mon, 15 Apr 2024 09:53:11 +0000 (11:53 +0200)
committerJaehoon Chung <jh80.chung@samsung.com>
Fri, 26 Apr 2024 06:32:06 +0000 (15:32 +0900)
Currently fetching files bigger that cause a data transfer greater than
U16_MAX fails.

The reason is that the specification defines the datalength register
as a 16 bit wide register, but in u-boot it is used as if it is an
32 bit register. Therefore values greater than U16_MAX cause an
infinite loop inside u-boot. U-boot expects to get more data from
interface/hardware then it will ever get and therefore inifintely waits
for more data that will never come.

Signed-off-by: Maximilian Brune <maximilian.brune@9elements.com>
Cc: Peng Fan <peng.fan@nxp.com>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
drivers/mmc/arm_pl180_mmci.c

index 2666b65362bcfbf1c10e0285189e36b673b18ab3..cecc7ad783d093899807345bf9d64df20b109185 100644 (file)
@@ -229,6 +229,7 @@ static int do_data_transfer(struct mmc *dev,
        u32 blksz = 0;
        u32 data_ctrl = 0;
        u32 data_len = (u32) (data->blocks * data->blocksize);
+       assert(data_len < U16_MAX); /* should be ensured by arm_pl180_get_b_max */
 
        if (!host->version2) {
                blksz = (ffs(data->blocksize) - 1);
@@ -356,6 +357,14 @@ static int  host_set_ios(struct mmc *dev)
        return 0;
 }
 
+static int arm_pl180_get_b_max(struct udevice *dev, void *dst, lbaint_t blkcnt)
+{
+       struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
+       struct mmc *mmc = upriv->mmc;
+
+       return U16_MAX / mmc->read_bl_len;
+}
+
 static void arm_pl180_mmc_init(struct pl180_mmc_host *host)
 {
        u32 sdi_u32;
@@ -470,6 +479,7 @@ static const struct dm_mmc_ops arm_pl180_dm_mmc_ops = {
        .send_cmd = dm_host_request,
        .set_ios = dm_host_set_ios,
        .get_cd = dm_mmc_getcd,
+       .get_b_max = arm_pl180_get_b_max,
 };
 
 static int arm_pl180_mmc_of_to_plat(struct udevice *dev)