4d04c9776430b08c0bd013a2cfc9ab345a462210
[platform/kernel/u-boot.git] / arch / arm / mach-uniphier / sbc / sbc-boot.c
1 // SPDX-License-Identifier: GPL-2.0+
2 //
3 // Copyright (C) 2011-2014 Panasonic Corporation
4 // Copyright (C) 2015-2019 Socionext Inc.
5
6 #include <linux/io.h>
7
8 #define SBBASE0                 0x58c00100
9 #define SBBASE_BANK_ENABLE      (0x00000001)
10
11 int uniphier_sbc_boot_is_swapped(void)
12 {
13         return !(readl(SBBASE0) & SBBASE_BANK_ENABLE);
14 }