blob: 61e2f1d1b221732ba9b82d4cbbc0d06b3a3815c2 [file] [log] [blame]
Dave Chapmane17043e2007-03-15 22:55:36 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
Dave Chapman4a812912007-03-15 23:02:37 +00008 * $Id$
Dave Chapmane17043e2007-03-15 22:55:36 +00009 *
10 * Copyright (C) 2006-2007 Dave Chapman
11 *
Daniel Stenberg2acc0ac2008-06-28 18:10:04 +000012 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
Dave Chapmane17043e2007-03-15 22:55:36 +000016 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#ifndef __SANSAIO_H
23#define __SANSAIO_H
24
25#include <stdint.h>
Dominik Riebeling5ffd2f72011-12-08 21:59:13 +000026#if !defined(_MSC_VER)
27#include <unistd.h> /* not available on MSVC */
28#endif
Dave Chapmane17043e2007-03-15 22:55:36 +000029
Dominik Riebeling38890ac2011-12-04 19:40:35 +000030#if defined(__WIN32__) || defined(_WIN32)
Dave Chapmane17043e2007-03-15 22:55:36 +000031#include <windows.h>
32#define loff_t int64_t
33#else
34#define HANDLE int
35#define O_BINARY 0
36
37/* Only Linux seems to need lseek64 and loff_t */
Dave Chapmance5383e2007-03-16 09:37:04 +000038#if !defined(linux) && !defined (__linux)
Dave Chapmane17043e2007-03-15 22:55:36 +000039#define loff_t off_t
40#define lseek64 lseek
41#endif
42
43#endif
44
Dominik Riebeling38890ac2011-12-04 19:40:35 +000045#ifdef __cplusplus
46extern "C" {
47#endif
48
Dominik Wengerdde262b2007-05-03 20:07:57 +000049struct sansa_partinfo_t {
Dave Chapmane17043e2007-03-15 22:55:36 +000050 unsigned long start; /* first sector (LBA) */
51 unsigned long size; /* number of sectors */
52 int type;
53};
54
55struct mi4header_t {
56 uint32_t version;
57 uint32_t length;
58 uint32_t crc32;
59 uint32_t enctype;
60 uint32_t mi4size;
61 uint32_t plaintext;
62};
63
64struct sansa_t {
65 HANDLE dh;
Dominik Riebeling9c1ed842012-12-23 23:36:00 +010066 unsigned char* sectorbuf;
Dave Chapmane17043e2007-03-15 22:55:36 +000067 char diskname[4096];
68 int sector_size;
Dominik Wengerdde262b2007-05-03 20:07:57 +000069 struct sansa_partinfo_t pinfo[4];
Dave Chapmane17043e2007-03-15 22:55:36 +000070 int hasoldbootloader;
Dave Chapman8d145a52007-09-19 18:46:54 +000071 char* targetname; /* "e200" or "c200" */
Dave Chapmane17043e2007-03-15 22:55:36 +000072 loff_t start; /* Offset in bytes of firmware partition from start of disk */
73};
74
Dominik Riebeling3e489c12009-11-08 13:38:10 +000075void sansa_print_error(char* msg);
Dave Chapmane17043e2007-03-15 22:55:36 +000076int sansa_open(struct sansa_t* sansa, int silent);
77int sansa_reopen_rw(struct sansa_t* sansa);
78int sansa_close(struct sansa_t* sansa);
79int sansa_seek(struct sansa_t* sansa, loff_t pos);
80int sansa_read(struct sansa_t* sansa, unsigned char* buf, int nbytes);
Dominik Riebeling9c1ed842012-12-23 23:36:00 +010081int sansa_write(struct sansa_t* sansa, int nbytes);
82int sansa_alloc_buffer(struct sansa_t* sansa, int bufsize);
Dominik Riebeling163ab462013-01-01 13:23:47 +010083int sansa_dealloc_buffer(struct sansa_t* sansa);
Dave Chapmane17043e2007-03-15 22:55:36 +000084
Dominik Riebeling38890ac2011-12-04 19:40:35 +000085#ifdef __cplusplus
86}
87#endif
Dave Chapmane17043e2007-03-15 22:55:36 +000088#endif