2006-08-05 20:19:10 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 by Miika Pekkarinen
|
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* 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.
|
2006-08-05 20:19:10 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _EEPROM_SETTINGS_H_
|
|
|
|
#define _EEPROM_SETTINGS_H_
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "inttypes.h"
|
|
|
|
|
2007-01-12 18:34:00 +00:00
|
|
|
#define EEPROM_SETTINGS_VERSION 0x24c01002
|
2020-11-15 17:26:54 +00:00
|
|
|
#define EEPROM_SETTINGS_BL_MINVER 8
|
2006-08-05 20:19:10 +00:00
|
|
|
|
2007-01-12 18:34:00 +00:00
|
|
|
enum boot_methods {
|
|
|
|
BOOT_DISK = 0,
|
|
|
|
BOOT_RAM,
|
|
|
|
BOOT_ROM,
|
|
|
|
BOOT_RECOVERY,
|
|
|
|
};
|
|
|
|
|
2006-08-05 20:19:10 +00:00
|
|
|
struct eeprom_settings
|
|
|
|
{
|
|
|
|
long version; /* Settings version number */
|
|
|
|
bool initialized; /* Is eeprom_settings ready to be used */
|
|
|
|
bool disk_clean; /* Is disk intact from last reboot */
|
2007-01-12 18:34:00 +00:00
|
|
|
uint8_t bootmethod; /* The default boot method. */
|
2006-08-05 20:19:10 +00:00
|
|
|
uint8_t bl_version; /* Installed bootloader version */
|
|
|
|
|
2007-01-12 18:34:00 +00:00
|
|
|
long reserved; /* A few reserved bits for the future. */
|
|
|
|
|
2006-08-05 20:19:10 +00:00
|
|
|
/* This must be the last entry */
|
|
|
|
uint32_t checksum; /* Checksum of this structure */
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct eeprom_settings firmware_settings;
|
|
|
|
|
|
|
|
bool eeprom_settings_init(void);
|
|
|
|
bool eeprom_settings_store(void);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|