You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
545 B
26 lines
545 B
/*
|
|
* Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef SUSPEND_H
|
|
#define SUSPEND_H
|
|
|
|
#include <dram.h>
|
|
|
|
#define KHz (1000)
|
|
#define MHz (1000 * KHz)
|
|
#define GHz (1000 * MHz)
|
|
|
|
#define PI_CA_TRAINING (1 << 0)
|
|
#define PI_WRITE_LEVELING (1 << 1)
|
|
#define PI_READ_GATE_TRAINING (1 << 2)
|
|
#define PI_READ_LEVELING (1 << 3)
|
|
#define PI_WDQ_LEVELING (1 << 4)
|
|
#define PI_FULL_TRAINING (0xff)
|
|
|
|
void dmc_suspend(void);
|
|
__pmusramfunc void dmc_resume(void);
|
|
|
|
#endif /* SUSPEND_H */
|
|
|