1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006-2007 Dave Chapman
12 * 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.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
35 /* The maximum number of images in a firmware partition - a guess... */
46 struct ipod_directory_t
{
47 enum firmwaretype_t ftype
;
49 uint32_t devOffset
; /* Offset of image relative to one sector into bootpart*/
58 /* A fake partition type - DOS partition tables can't include HFS partitions */
59 #define PARTTYPE_HFS 0xffff
62 uint32_t start
; /* first sector (LBA) */
63 uint32_t size
; /* number of sectors */
71 int sectors_per_track
;
73 struct ipod_directory_t ipod_directory
[MAX_IMAGES
];
77 off_t start
; /* Offset in bytes of firmware partition from start of disk */
78 off_t fwoffset
; /* Offset in bytes of start of firmware images from start of disk */
79 struct partinfo_t pinfo
[4];
85 char* xmlinfo
; /* The XML Device Information (if available) */
87 int ramsize
; /* The amount of RAM in the ipod (if available) */
89 unsigned char* bootloader
;
94 void print_error(char* msg
);
95 int ipod_open(struct ipod_t
* ipod
, int silent
);
96 int ipod_reopen_rw(struct ipod_t
* ipod
);
97 int ipod_close(struct ipod_t
* ipod
);
98 int ipod_seek(struct ipod_t
* ipod
, unsigned long pos
);
99 int ipod_scsi_inquiry(struct ipod_t
* ipod
, int page_code
,
100 unsigned char* buf
, int bufsize
);
101 ssize_t
ipod_read(struct ipod_t
* ipod
, unsigned char* buf
, int nbytes
);
102 ssize_t
ipod_write(struct ipod_t
* ipod
, unsigned char* buf
, int nbytes
);
103 int ipod_alloc_buffer(unsigned char** sectorbuf
, int bufsize
);
105 /* In fat32format.c */
106 int format_partition(struct ipod_t
* ipod
, int partition
);