]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/mach-uniphier/sbc/sbc-admulti.c
Merge branch 'master' of http://git.denx.de/u-boot-sunxi
[people/ms/u-boot.git] / arch / arm / mach-uniphier / sbc / sbc-admulti.c
1 /*
2 * Copyright (C) 2011-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7 #include <common.h>
8 #include <linux/io.h>
9
10 #include "../init.h"
11 #include "../sg-regs.h"
12 #include "sbc-regs.h"
13
14 #define SBCTRL0_ADMULTIPLX_PERI_VALUE 0x33120000
15 #define SBCTRL1_ADMULTIPLX_PERI_VALUE 0x03005500
16 #define SBCTRL2_ADMULTIPLX_PERI_VALUE 0x14000020
17
18 #define SBCTRL0_ADMULTIPLX_MEM_VALUE 0x33120000
19 #define SBCTRL1_ADMULTIPLX_MEM_VALUE 0x03005500
20 #define SBCTRL2_ADMULTIPLX_MEM_VALUE 0x14000010
21
22 int sbc_admulti_init(const struct uniphier_board_data *bd)
23 {
24 /*
25 * Only CS1 is connected to support card.
26 * BKSZ[1:0] should be set to "01".
27 */
28 writel(SBCTRL0_ADMULTIPLX_MEM_VALUE, SBCTRL10);
29 writel(SBCTRL1_ADMULTIPLX_MEM_VALUE, SBCTRL11);
30 writel(SBCTRL2_ADMULTIPLX_MEM_VALUE, SBCTRL12);
31
32 if (boot_is_swapped()) {
33 /*
34 * Boot Swap On: boot from external NOR/SRAM
35 * 0x42000000-0x43ffffff is a mirror of 0x40000000-0x41ffffff.
36 *
37 * 0x40000000-0x41efffff, 0x42000000-0x43efffff: memory bank
38 * 0x41f00000-0x41ffffff, 0x43f00000-0x43ffffff: peripherals
39 */
40 writel(0x0000bc01, SBBASE0);
41 } else {
42 /*
43 * Boot Swap Off: boot from mask ROM
44 * 0x40000000-0x41ffffff: mask ROM
45 * 0x42000000-0x43efffff: memory bank (31MB)
46 * 0x43f00000-0x43ffffff: peripherals (1MB)
47 */
48 writel(0x0000be01, SBBASE0); /* dummy */
49 writel(0x0200be01, SBBASE1);
50 }
51
52 return 0;
53 }