30 lines
988 B
C
Executable File
30 lines
988 B
C
Executable File
/*
|
|
*********************************************************************************************************
|
|
* LINUX-KERNEL
|
|
* AllWinner Linux Platform Develop Kits
|
|
* Kernel Module
|
|
*
|
|
* (c) Copyright 2006-2011, kevin.z China
|
|
* All Rights Reserved
|
|
*
|
|
* File : standby_cfg.h
|
|
* By : kevin.z
|
|
* Version : v1.0
|
|
* Date : 2011-5-31 14:29
|
|
* Descript:
|
|
* Update : date auther ver notes
|
|
*********************************************************************************************************
|
|
*/
|
|
#ifndef __STANDBY_CFG_H__
|
|
#define __STANDBY_CFG_H__
|
|
|
|
//config wakeup source for standby
|
|
#define ALLOW_DISABLE_HOSC (1) // if allow disable hosc
|
|
|
|
#define CHECK_CACHE_TLB_MISS
|
|
//#undef CHECK_CACHE_TLB_MISS
|
|
|
|
#endif /* __STANDBY_CFG_H__ */
|
|
|
|
|