1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-10-04 00:42:35 +02:00

mips: add base support for QCA/Atheros ath79 SOCs

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>
This commit is contained in:
Wills Wang
2016-03-16 16:59:52 +08:00
committed by Daniel Schwierzeck
parent 4a48cfc4e5
commit 1d3d0f1f1c
12 changed files with 1610 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
/*
* 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 */