mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
1d3d0f1f1c
This patch add some common code for QCA/Atheros ath79 SOCs such as DDR tuning, chip reset and CPU detection. Signed-off-by: Wills Wang <wills.wang@live.com>
13 lines
238 B
C
13 lines
238 B
C
/*
|
|
* Copyright (C) 2015-2016 Wills Wang <wills.wang@live.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __ASM_MACH_DDR_H
|
|
#define __ASM_MACH_DDR_H
|
|
|
|
void ddr_init(void);
|
|
void ddr_tap_tuning(void);
|
|
|
|
#endif /* __ASM_MACH_DDR_H */
|