upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
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.
16 lines
414 B
16 lines
414 B
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2016 Socionext Inc.
|
|
*/
|
|
|
|
#ifndef ARCH_DDRPHY_INIT_H
|
|
#define ARCH_DDRPHY_INTT_H
|
|
|
|
#include <linux/compiler.h>
|
|
#include <linux/types.h>
|
|
|
|
int uniphier_ld4_ddrphy_init(void __iomem *phy_base, int freq, bool ddr3plus);
|
|
void ddrphy_prepare_training(void __iomem *phy_base, int rank);
|
|
int ddrphy_training(void __iomem *phy_base);
|
|
|
|
#endif /* ARCH_DDRPHY_INT_H */
|
|
|