diff options
author | Tom Rini <trini@konsulko.com> | 2020-07-11 11:50:49 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-07-11 11:50:49 -0400 |
commit | 610e1487c8921d266f5cb304bfb66eb71f1dc7dc (patch) | |
tree | 68991565dbed957030795ef3229020e1207709d3 /arch/arm/mach-uniphier/sbc/sbc-ld11.c | |
parent | 4a9146c29573dbfa661918280d9522a01f6ca919 (diff) | |
parent | 5785950369cd68d4409bf4d0e34d4b1894e5d0e9 (diff) |
Merge tag 'uniphier-v2020.10' of https://gitlab.denx.de/u-boot/custodians/u-boot-uniphier
UniPhier SoC updates for v2020.10
- remove workaround for Cortex-A72
- increase U-Boot proper size to 2MB
- sync DT with Linux
- add system bus controller driver
- improve serial driver
- add reset assertion to Denali NAND driver
Diffstat (limited to 'arch/arm/mach-uniphier/sbc/sbc-ld11.c')
-rw-r--r-- | arch/arm/mach-uniphier/sbc/sbc-ld11.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/arch/arm/mach-uniphier/sbc/sbc-ld11.c b/arch/arm/mach-uniphier/sbc/sbc-ld11.c deleted file mode 100644 index a0162e1cc8..0000000000 --- a/arch/arm/mach-uniphier/sbc/sbc-ld11.c +++ /dev/null @@ -1,26 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0+ -/* - * Copyright (C) 2016-2017 Socionext Inc. - */ - -#include <spl.h> -#include <linux/io.h> - -#include "../init.h" -#include "sbc-regs.h" - -void uniphier_ld11_sbc_init(void) -{ - if (!uniphier_sbc_is_enabled()) - return; - - uniphier_sbc_init_savepin(); - - /* necessary for ROM boot ?? */ - /* system bus output enable */ - writel(0x17, PC0CTRL); - - /* pins for NAND and System Bus are multiplexed */ - if (spl_boot_device() != BOOT_DEVICE_NAND) - uniphier_pin_init("system-bus"); -} |