21972ac9494bc462780a34955935b8919e7f06c8
[oweals/u-boot.git] / arch / arm / mach-uniphier / sbc / sbc-ld11.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2016-2017 Socionext Inc.
4  */
5
6 #include <common.h>
7 #include <spl.h>
8 #include <linux/io.h>
9
10 #include "../init.h"
11 #include "sbc-regs.h"
12
13 void uniphier_ld11_sbc_init(void)
14 {
15         if (!uniphier_sbc_is_enabled())
16                 return;
17
18         uniphier_sbc_init_savepin();
19
20         /* necessary for ROM boot ?? */
21         /* system bus output enable */
22         writel(0x17, PC0CTRL);
23
24         /* pins for NAND and System Bus are multiplexed */
25         if (spl_boot_device() != BOOT_DEVICE_NAND)
26                 uniphier_pin_init("system-bus");
27 }