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