summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2013-11-11 02:02:11 +0000
committerAmaury Pouly <amaury.pouly@gmail.com>2013-11-11 02:02:11 +0000
commitbb8dd053434cbe9c98fe5b9a1095d00ebafb7b61 (patch)
treeaf02a94d87691298a15758ed3e1c86b18c128519 /firmware
parent39bfd0d2ab6b4edd30c1ccf4deefac96b9004e09 (diff)
downloadrockbox-bb8dd053434cbe9c98fe5b9a1095d00ebafb7b61.tar.gz
rockbox-bb8dd053434cbe9c98fe5b9a1095d00ebafb7b61.zip
imx233/creative: workaround stupid Creative partition table
This should fix wrong partition size on the ZEN, X-Fi and Mozaic Change-Id: Ib8999d414773c12e1b97d515e9bf058a82141d35
Diffstat (limited to 'firmware')
-rw-r--r--firmware/target/arm/imx233/partitions-imx233.c15
-rw-r--r--firmware/target/arm/imx233/partitions-imx233.h10
2 files changed, 20 insertions, 5 deletions
diff --git a/firmware/target/arm/imx233/partitions-imx233.c b/firmware/target/arm/imx233/partitions-imx233.c
index 508d6f0d66..60c36ebb4d 100644
--- a/firmware/target/arm/imx233/partitions-imx233.c
+++ b/firmware/target/arm/imx233/partitions-imx233.c
@@ -64,7 +64,6 @@ static const char *creative_part_name(enum imx233_part_t part)
{
switch(part)
{
- case IMX233_PART_USER: return "cfs";
case IMX233_PART_CFS: return "cfs";
case IMX233_PART_MINIFS: return "minifs";
default: return "";
@@ -90,7 +89,17 @@ static int compute_window_creative(intptr_t user, part_read_fn_t read_fn,
if(strcmp(ent[i].name, name) == 0)
{
*start = ent[i].start * hdr->block_size / 512;
- *end = *start + ent[i].size * hdr->block_size / 512;
+ if(part == IMX233_PART_CFS)
+ {
+ /* There is a bug in Creative's partitioner which restrict
+ * computations to 32-bit even though the format itself can
+ * handle much bigger volumes. We make the assumption
+ * that the CFS partition always extends up the end of the
+ * volume. So don't touch *end */
+ }
+ else
+ *end = *start + ent[i].size * hdr->block_size / 512;
+
return 0;
}
}
@@ -126,7 +135,7 @@ static int compute_window_freescale(intptr_t user, part_read_fn_t read_fn,
* it seems that it is similarly truncated. */
if(mbr[510] != 0x55 || mbr[511] != 0xAA)
return -101; /* invalid MBR */
- if(part == IMX233_PART_USER)
+ if(part == IMX233_PART_DATA)
{
/* sanity check that the first partition is greater than 2Gib */
uint8_t *ent = &mbr[446];
diff --git a/firmware/target/arm/imx233/partitions-imx233.h b/firmware/target/arm/imx233/partitions-imx233.h
index 80936ad865..e5378dadbb 100644
--- a/firmware/target/arm/imx233/partitions-imx233.h
+++ b/firmware/target/arm/imx233/partitions-imx233.h
@@ -30,13 +30,15 @@
enum imx233_part_t
{
- IMX233_PART_USER,
#if (IMX233_PARTITIONS & IMX233_FREESCALE)
IMX233_PART_BOOT,
+ IMX233_PART_DATA,
+ IMX233_PART_USER = IMX233_PART_DATA,
#endif
#if (IMX233_PARTITIONS & IMX233_CREATIVE)
IMX233_PART_CFS,
IMX233_PART_MINIFS,
+ IMX233_PART_USER = IMX233_PART_CFS,
#endif
};
@@ -45,9 +47,13 @@ enum imx233_part_t
* issue, one must provide a read function. */
typedef int (*part_read_fn_t)(intptr_t user, unsigned long start, int count, void* buf);
/* Enable/Disable window computations for internal storage following the
- * Freescale convention */
+ * Freescale/Creative convention */
void imx233_partitions_enable_window(bool enable);
bool imx233_partitions_is_window_enabled(void);
+/* Compute the window size. The *start and *end parameters should contain
+ * the initial window in which the computation is done. So in particular,
+ * for a whole disk, *end should be the size of the disk when the function is
+ * called */
int imx233_partitions_compute_window(intptr_t user, part_read_fn_t read_fn,
enum imx233_part_t part, unsigned *start, unsigned *end);