23 lines
724 B
C
23 lines
724 B
C
/*
|
|
* driver/soc/allwinner/sunxi_bootup_extend.c
|
|
*
|
|
* Copyright(c) 2013-2015 Allwinnertech Co., Ltd.
|
|
* http://www.allwinnertech.com
|
|
*
|
|
* allwinner sunxi platform bootup extend code.
|
|
*
|
|
* 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.
|
|
*/
|
|
#ifndef _SUNXI_BOORUP_EXTEND_H_
|
|
#define SUNXI_BOORUP_EXTEND_H_
|
|
|
|
#define SUNXI_BOOTUP_EXTEND_MODE_POWEROFF (1)
|
|
#define SUNXI_BOOTUP_EXTEND_MODE_RESTART (2)
|
|
|
|
#define SUNXI_BOOTUP_EXTEND_RTC_POWEROFF (0x02)
|
|
#define SUNXI_BOOTUP_EXTEND_RTC_RESTART (0x0f)
|
|
|
|
#endif
|