blob: ce2d4b6dea4cc5f9b0d246857590b2e656c20f4c [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{
16 u32 revision = readl(SG_REVISION);
17
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}