[PATCH v2] mmc: arm_pl180: Limit data transfer to U16_MAX

2024-04-15 Thread cmax
From: Maximilian Brune 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

[PATCH v2] mmc: arm_pl180: Limit data transfer to U16_MAX

2024-04-04 Thread cmax
From: Maximilian Brune 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

[PATCH] mmc: arm_pl180: Limit data transfer to U16_MAX

2024-02-27 Thread cmax
From: max 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