2 * Copyright (C) 2011-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
4 * SPDX-License-Identifier: GPL-2.0+
11 #include "../sg-regs.h"
14 int ph1_ld4_sbc_init(const struct uniphier_board_data *bd)
18 /* system bus output enable */
24 * Only CS1 is connected to support card.
25 * BKSZ[1:0] should be set to "01".
27 writel(SBCTRL0_SAVEPIN_PERI_VALUE, SBCTRL10);
28 writel(SBCTRL1_SAVEPIN_PERI_VALUE, SBCTRL11);
29 writel(SBCTRL2_SAVEPIN_PERI_VALUE, SBCTRL12);
30 writel(SBCTRL4_SAVEPIN_PERI_VALUE, SBCTRL14);
32 if (boot_is_swapped()) {
34 * Boot Swap On: boot from external NOR/SRAM
35 * 0x42000000-0x43ffffff is a mirror of 0x40000000-0x41ffffff.
37 * 0x40000000-0x41efffff, 0x42000000-0x43efffff: memory bank
38 * 0x41f00000-0x41ffffff, 0x43f00000-0x43ffffff: peripherals
40 writel(0x0000bc01, SBBASE0);
43 * Boot Swap Off: boot from mask ROM
44 * 0x40000000-0x41ffffff: mask ROM
45 * 0x42000000-0x43efffff: memory bank (31MB)
46 * 0x43f00000-0x43ffffff: peripherals (1MB)
48 writel(0x0000be01, SBBASE0); /* dummy */
49 writel(0x0200be01, SBBASE1);