Masahiro Yamada | 77f0822 | 2015-02-27 02:27:02 +0900 | [diff] [blame] | 1 | /* |
Masahiro Yamada | 663a23f | 2015-05-29 17:30:00 +0900 | [diff] [blame] | 2 | * Copyright (C) 2011-2015 Masahiro Yamada <yamada.masahiro@socionext.com> |
Masahiro Yamada | 77f0822 | 2015-02-27 02:27:02 +0900 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Masahiro Yamada | 663a23f | 2015-05-29 17:30:00 +0900 | [diff] [blame] | 8 | #include <linux/io.h> |
Masahiro Yamada | 77f0822 | 2015-02-27 02:27:02 +0900 | [diff] [blame] | 9 | #include <mach/sbc-regs.h> |
| 10 | #include <mach/sg-regs.h> |
| 11 | |
| 12 | void sbc_init(void) |
| 13 | { |
| 14 | u32 tmp; |
| 15 | |
| 16 | /* system bus output enable */ |
| 17 | tmp = readl(PC0CTRL); |
| 18 | tmp &= 0xfffffcff; |
| 19 | writel(tmp, PC0CTRL); |
| 20 | |
| 21 | /* XECS1: sub/boot memory (boot swap = off/on) */ |
| 22 | writel(SBCTRL0_SAVEPIN_MEM_VALUE, SBCTRL10); |
| 23 | writel(SBCTRL1_SAVEPIN_MEM_VALUE, SBCTRL11); |
| 24 | writel(SBCTRL2_SAVEPIN_MEM_VALUE, SBCTRL12); |
| 25 | writel(SBCTRL4_SAVEPIN_MEM_VALUE, SBCTRL14); |
| 26 | |
| 27 | /* XECS0: boot/sub memory (boot swap = off/on) */ |
| 28 | writel(SBCTRL0_SAVEPIN_MEM_VALUE, SBCTRL00); |
| 29 | writel(SBCTRL1_SAVEPIN_MEM_VALUE, SBCTRL01); |
| 30 | writel(SBCTRL2_SAVEPIN_MEM_VALUE, SBCTRL02); |
| 31 | writel(SBCTRL4_SAVEPIN_MEM_VALUE, SBCTRL04); |
| 32 | |
| 33 | /* XECS3: peripherals */ |
| 34 | writel(SBCTRL0_SAVEPIN_PERI_VALUE, SBCTRL30); |
| 35 | writel(SBCTRL1_SAVEPIN_PERI_VALUE, SBCTRL31); |
| 36 | writel(SBCTRL2_SAVEPIN_PERI_VALUE, SBCTRL32); |
| 37 | writel(SBCTRL4_SAVEPIN_PERI_VALUE, SBCTRL34); |
| 38 | |
| 39 | /* base address regsiters */ |
| 40 | writel(0x0000bc01, SBBASE0); |
| 41 | writel(0x0400bc01, SBBASE1); |
| 42 | writel(0x0800bf01, SBBASE3); |
| 43 | |
| 44 | /* enable access to sub memory when boot swap is on */ |
| 45 | if (boot_is_swapped()) |
| 46 | sg_set_pinsel(155, 1); /* PORT24 -> XECS0 */ |
| 47 | |
| 48 | sg_set_pinsel(156, 1); /* PORT25 -> XECS3 */ |
| 49 | } |