2008-11-01 16:25:04 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Alan Korr
|
|
|
|
* Copyright (C) 2008 by Frank Gevaerts
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef __NAND_H__
|
|
|
|
#define __NAND_H__
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2011-12-19 20:12:52 +00:00
|
|
|
#include "config.h"
|
2009-07-17 22:28:49 +00:00
|
|
|
#include "mv.h" /* for HAVE_MULTIDRIVE or not */
|
2008-11-01 16:25:04 +00:00
|
|
|
|
|
|
|
struct storage_info;
|
|
|
|
|
|
|
|
void nand_enable(bool on);
|
2009-07-17 16:34:34 +00:00
|
|
|
void nand_spindown(int seconds);
|
|
|
|
void nand_sleep(void);
|
2009-07-17 22:28:49 +00:00
|
|
|
void nand_sleepnow(void);
|
2008-11-01 16:25:04 +00:00
|
|
|
bool nand_disk_is_active(void);
|
2009-07-17 22:28:49 +00:00
|
|
|
int nand_soft_reset(void);
|
2011-11-20 18:44:40 +00:00
|
|
|
int nand_init(void) STORAGE_INIT_ATTR;
|
2008-11-01 16:25:04 +00:00
|
|
|
void nand_close(void);
|
2013-08-17 16:18:22 +00:00
|
|
|
int nand_read_sectors(IF_MD(int drive,) unsigned long start, int count, void* buf);
|
|
|
|
int nand_write_sectors(IF_MD(int drive,) unsigned long start, int count, const void* buf);
|
2009-10-09 20:36:09 +00:00
|
|
|
#ifdef HAVE_STORAGE_FLUSH
|
|
|
|
int nand_flush(void);
|
|
|
|
#endif
|
2009-07-17 16:34:34 +00:00
|
|
|
void nand_spin(void);
|
2009-07-17 23:19:21 +00:00
|
|
|
int nand_spinup_time(void); /* ticks */
|
2008-11-01 16:25:04 +00:00
|
|
|
|
2008-11-01 17:33:21 +00:00
|
|
|
#ifdef STORAGE_GET_INFO
|
2013-08-17 16:18:22 +00:00
|
|
|
void nand_get_info(IF_MD(int drive,) struct storage_info *info);
|
2008-11-01 17:33:21 +00:00
|
|
|
#endif
|
2008-11-01 16:25:04 +00:00
|
|
|
|
|
|
|
long nand_last_disk_activity(void);
|
|
|
|
|
2009-07-17 22:28:49 +00:00
|
|
|
#ifdef CONFIG_STORAGE_MULTI
|
|
|
|
int nand_num_drives(int first_drive);
|
|
|
|
#endif
|
|
|
|
|
2008-11-01 16:25:04 +00:00
|
|
|
#endif
|