blob: 4d04c9776430b08c0bd013a2cfc9ab345a462210 [file] [log] [blame]
Masahiro Yamada539d6e02019-07-10 20:07:38 +09001// 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
Masahiro Yamada86227492020-07-09 15:08:19 +09008#define SBBASE0 0x58c00100
9#define SBBASE_BANK_ENABLE (0x00000001)
Masahiro Yamada539d6e02019-07-10 20:07:38 +090010
11int uniphier_sbc_boot_is_swapped(void)
12{
13 return !(readl(SBBASE0) & SBBASE_BANK_ENABLE);
14}