2007-07-11 18:11:07 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2007 Schindler Lift Inc.
|
|
|
|
*
|
|
|
|
* Author: Michel Marti <mma@objectxp.com>
|
|
|
|
*
|
2013-10-07 11:07:26 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2007-07-11 18:11:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __FW_UPDATE_H
|
|
|
|
#define __FW_UPDATE_H
|
|
|
|
|
|
|
|
/* Default prefix for output messages */
|
2007-08-03 10:08:16 +00:00
|
|
|
#define LOG_PREFIX "CM5200:"
|
2007-07-11 18:11:07 +00:00
|
|
|
|
|
|
|
/* Extra debug macro */
|
|
|
|
#ifdef CONFIG_FWUPDATE_DEBUG
|
|
|
|
#define FW_DEBUG(fmt...) printf(LOG_PREFIX fmt)
|
|
|
|
#else
|
|
|
|
#define FW_DEBUG(fmt...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Name of the directory holding firmware images */
|
|
|
|
#define FW_DIR "nx-fw"
|
|
|
|
#define RESCUE_IMAGE "nxrs.img"
|
|
|
|
#define LOAD_ADDR 0x400000
|
2008-02-22 16:21:32 +00:00
|
|
|
#define RS_BOOTARGS "ramdisk_size=8192K"
|
2007-07-11 18:11:07 +00:00
|
|
|
|
|
|
|
/* Main function for fwupdate */
|
2007-08-03 10:08:16 +00:00
|
|
|
void cm5200_fwupdate(void);
|
2007-07-11 18:11:07 +00:00
|
|
|
|
|
|
|
#endif /* __FW_UPDATE_H */
|