summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVitja Makarov <vitja.makarov@gmail.com>2008-10-07 05:04:11 +0000
committerVitja Makarov <vitja.makarov@gmail.com>2008-10-07 05:04:11 +0000
commitc4fdd2e7881c7ea91a4d8a3a6d227e2fb87e8a76 (patch)
treed09f295417be4a4a9f93d0bab1ce6ff7bbe0b3ca
parent2391ad73d0fdca7b2cbe3305cd4d616875bb83e1 (diff)
downloadrockbox-c4fdd2e7881c7ea91a4d8a3a6d227e2fb87e8a76.tar.gz
rockbox-c4fdd2e7881c7ea91a4d8a3a6d227e2fb87e8a76.zip
Fill some ata_identify fields, e.g model name, firmware, block count
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18725 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/target/arm/ata-nand-telechips.c47
1 files changed, 42 insertions, 5 deletions
diff --git a/firmware/target/arm/ata-nand-telechips.c b/firmware/target/arm/ata-nand-telechips.c
index 316780d417..1c135650f1 100644
--- a/firmware/target/arm/ata-nand-telechips.c
+++ b/firmware/target/arm/ata-nand-telechips.c
@@ -33,6 +33,8 @@
#include "button.h"
#include <sprintf.h>
+#define SECTOR_SIZE 512
+
/* #define USE_TCC_LPT */
/* #define USE_ECC_CORRECTION */
@@ -41,13 +43,14 @@ int ata_spinup_time = 0;
long last_disk_activity = -1;
+/* as we aren't actually ata manually fill some fields */
+static unsigned short ata_identify[SECTOR_SIZE/2];
+
/** static, private data **/
static bool initialized = false;
static struct mutex ata_mtx SHAREDBSS_ATTR;
-#define SECTOR_SIZE 512
-
#if defined(COWON_D2) || defined(IAUDIO_7)
#define SEGMENT_ID_BIGENDIAN
#define BLOCKS_PER_SEGMENT 4
@@ -754,6 +757,41 @@ void ata_enable(bool on)
(void)on;
}
+static void fill_identify(void)
+{
+ char buf[80];
+ unsigned short *wbuf = (unsigned short *) buf;
+ unsigned long blocks;
+ int i;
+
+ memset(ata_identify, 0, sizeof(ata_identify));
+
+ /* firmware version */
+ memset(buf, ' ', 8);
+ memcpy(buf, "0.00", 4);
+
+ for (i = 0; i < 4; i++)
+ ata_identify[23 + i] = betoh16(wbuf[i]);
+
+ /* model field, need better name? */
+ memset(buf, ' ', 80);
+ memcpy(buf, "TNFL", 4);
+
+ for (i = 0; i < 40; i++)
+ ata_identify[27 + i] = betoh16(wbuf[i]);
+
+ /* blocks count */
+ blocks = (pages_per_block * blocks_per_bank / SECTOR_SIZE)
+ * page_size * total_banks;
+ ata_identify[60] = blocks & 0xffff;
+ ata_identify[61] = blocks >> 16;
+
+ /* TODO: discover where is s/n in TNFL */
+ for (i = 10; i < 20; i++) {
+ ata_identify[i] = 0;
+ }
+}
+
int ata_init(void)
{
int i, bank, phys_segment;
@@ -871,14 +909,13 @@ int ata_init(void)
}
#endif
+ fill_identify();
initialized = true;
return 0;
}
-
-/* TEMP: This will return junk, it's here for compilation only */
unsigned short* ata_get_identify(void)
{
- return (unsigned short*)0x21000000; /* Unused DRAM */
+ return ata_identify;
}