blob: f021a8cab3309b61d8b70f0d1a09c762f3e6614b [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Masahiro Yamadae27d6c72017-01-21 18:05:26 +09002/*
3 * Copyright (C) 2017 Socionext Inc.
4 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
Masahiro Yamadae27d6c72017-01-21 18:05:26 +09005 */
6
7#include <linux/io.h>
8#include <linux/types.h>
9
10#include "sg-regs.h"
11#include "soc-info.h"
12
13static unsigned int __uniphier_get_revision_field(unsigned int mask,
14 unsigned int shift)
15{
Masahiro Yamadad41b3582019-07-10 20:07:40 +090016 u32 revision = readl(sg_base + SG_REVISION);
Masahiro Yamadae27d6c72017-01-21 18:05:26 +090017
18 return (revision >> shift) & mask;
19}
20
21unsigned int uniphier_get_soc_id(void)
22{
23 return __uniphier_get_revision_field(0xff, 16);
24}
25
26unsigned int uniphier_get_soc_model(void)
27{
Masahiro Yamadac5bd4112017-05-09 17:14:55 +090028 return __uniphier_get_revision_field(0x7, 8);
Masahiro Yamadae27d6c72017-01-21 18:05:26 +090029}
30
31unsigned int uniphier_get_soc_revision(void)
32{
33 return __uniphier_get_revision_field(0x1f, 0);
34}