forked from len0rd/rockbox
Currently, only the development bootloader can be built successfully. This is a part of the large iPod Nano 3G and iPod Nano 4G support patch. Credit: Cástor Muñoz <cmvidal@gmail.com> Change-Id: I74ea0da999ddb1d8ce5d0f5434141b3f0b5f7448
63 lines
1.6 KiB
C
63 lines
1.6 KiB
C
/***************************************************************************
|
|
* __________ __ ___.
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
* \/ \/ \/ \/ \/
|
|
* $Id$
|
|
*
|
|
* Copyright (C) 2009 by Michael Sparmann
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#include "mv.h"
|
|
|
|
int nand_init(void)
|
|
{
|
|
// TODO
|
|
return 0;
|
|
}
|
|
|
|
int nand_read_sectors(IF_MD(int drive,) sector_t start, int incount,
|
|
void* inbuf)
|
|
{
|
|
// TODO
|
|
#ifdef HAVE_MULTIDRIVE
|
|
(void) drive;
|
|
#endif
|
|
(void) start;
|
|
(void) incount;
|
|
(void) inbuf;
|
|
return 0;
|
|
}
|
|
|
|
int nand_write_sectors(IF_MD(int drive,) sector_t start, int count,
|
|
const void* outbuf)
|
|
{
|
|
// TODO
|
|
#ifdef HAVE_MULTIDRIVE
|
|
(void) drive;
|
|
#endif
|
|
(void) start;
|
|
(void) count;
|
|
(void) outbuf;
|
|
return 0;
|
|
}
|
|
|
|
int nand_event(long id, intptr_t data)
|
|
{
|
|
// TODO
|
|
(void) id;
|
|
(void) data;
|
|
|
|
return 0;
|
|
}
|