2007-10-11 00:29:49 +08:00
|
|
|
/*
|
2009-01-07 23:14:39 +08:00
|
|
|
* reboot.h - shutdown/reboot header
|
2007-10-11 00:29:49 +08:00
|
|
|
*
|
2009-01-07 23:14:39 +08:00
|
|
|
* Copyright 2004-2008 Analog Devices Inc.
|
2007-10-11 00:29:49 +08:00
|
|
|
*
|
|
|
|
* Licensed under the GPL-2 or later.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_REBOOT_H__
|
|
|
|
#define __ASM_REBOOT_H__
|
|
|
|
|
|
|
|
/* optional board specific hooks */
|
|
|
|
extern void native_machine_restart(char *cmd);
|
|
|
|
extern void native_machine_halt(void);
|
|
|
|
extern void native_machine_power_off(void);
|
|
|
|
|
|
|
|
/* common reboot workarounds */
|
2009-02-04 16:49:45 +08:00
|
|
|
extern void bfin_reset_boot_spi_cs(unsigned short pin);
|
2007-10-11 00:29:49 +08:00
|
|
|
|
|
|
|
#endif
|