mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-10 04:08:52 +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>
14 lines
247 B
C
14 lines
247 B
C
/*
|
|
* Copyright (C) 2015-2016 Wills Wang <wills.wang@live.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __ASM_MACH_RESET_H
|
|
#define __ASM_MACH_RESET_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
u32 get_bootstrap(void);
|
|
|
|
#endif /* __ASM_MACH_RESET_H */
|