summaryrefslogtreecommitdiff
path: root/arch/arm/mach-uniphier/clk/clk-early-ld11.c
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2017-07-13 11:32:15 (GMT)
committerMasahiro Yamada <yamada.masahiro@socionext.com>2017-07-26 13:27:15 (GMT)
commitee8d037ce7b5ece66d085c0e6b7793e6e3fbef5b (patch)
tree1bb03f8871c41c669f29f46c95ddce08e4eadd15 /arch/arm/mach-uniphier/clk/clk-early-ld11.c
parent609bf924117950b88987a5fa477acf1239bfdbc1 (diff)
downloadu-boot-fsl-qoriq-ee8d037ce7b5ece66d085c0e6b7793e6e3fbef5b.tar.xz
ARM: uniphier: remove SPL support for ARMv8 SoCs
It has been a while since ARM Trusted Firmware supported UniPhier SoC family. U-Boot SPL was intended as a temporary loader that runs in secure world. It is a maintenance headache to support two different boot mechanisms. Secure firmware is realm of ARM Trusted Firmware and now U-Boot only serves as a non-secure boot loader for UniPhier ARMv8 SoCs. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'arch/arm/mach-uniphier/clk/clk-early-ld11.c')
-rw-r--r--arch/arm/mach-uniphier/clk/clk-early-ld11.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/arch/arm/mach-uniphier/clk/clk-early-ld11.c b/arch/arm/mach-uniphier/clk/clk-early-ld11.c
deleted file mode 100644
index bb6f7a4..0000000
--- a/arch/arm/mach-uniphier/clk/clk-early-ld11.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * Copyright (C) 2016-2017 Socionext Inc.
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <linux/io.h>
-
-#include "../init.h"
-#include "../sc64-regs.h"
-
-void uniphier_ld11_early_clk_init(void)
-{
- u32 tmp;
-
- /* provide clocks */
- tmp = readl(SC_CLKCTRL4);
- tmp |= SC_CLKCTRL4_PERI;
- writel(tmp, SC_CLKCTRL4);
-}