30 lines
1,005 B
C
30 lines
1,005 B
C
/*
|
|
* Copyright (c) 2007-2017 Allwinnertech Co., Ltd.
|
|
*
|
|
* This software is licensed under the terms of the GNU General Public
|
|
* License version 2, as published by the Free Software Foundation, and
|
|
* may be copied, distributed, and modified under those terms.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
|
|
#ifndef _MCTL_STANDBY_H
|
|
#define _MCTL_STANDBY_H
|
|
|
|
#if defined(CONFIG_ARCH_SUN8IW11)
|
|
#include "sun8iw11p1/mctl_para-sun8iw11.h"
|
|
#elif defined(CONFIG_ARCH_SUN8IW10)
|
|
#include "sun8iw10p1/mctl_para-sun8iw10.h"
|
|
#else
|
|
#include "mctl_para-default.h" /*the default dram para*/
|
|
#endif
|
|
|
|
extern unsigned int dram_power_save_process(void);
|
|
extern unsigned int dram_power_up_process(__dram_para_t *para);
|
|
extern void dram_enable_all_master(void);
|
|
extern void dram_disable_all_master(void);
|
|
#endif
|