summaryrefslogtreecommitdiff
path: root/arch/arm/mach-uniphier/base-address.c
blob: d7456f8df6f21bdfbd1c3157a71eadaacbec850e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// SPDX-License-Identifier: GPL-2.0-only
//
// Copyright (C) 2019 Socionext Inc.
//   Author: Masahiro Yamada <yamada.masahiro@socionext.com>

#include <dm/of.h>
#include <fdt_support.h>
#include <linux/errno.h>
#include <linux/io.h>
#include <linux/libfdt.h>
#include <linux/sizes.h>
#include <asm/global_data.h>

#include "base-address.h"
#include "sc64-regs.h"
#include "sg-regs.h"

/*
 * Dummy initializers are needed to allocate these to .data section instead of
 * .bss section. The .bss section is unusable before relocation because the
 * .bss section and DT share the same address. Without the initializers,
 * DT would be broken.
 */
void __iomem *sc_base = (void *)0xdeadbeef;
void __iomem *sg_base = (void *)0xdeadbeef;

static u64 uniphier_base_address_get(const char *compat_tail)
{
	DECLARE_GLOBAL_DATA_PTR;
	const void *fdt = gd->fdt_blob;
	int offset, len, i;
	const char *str;

	for (offset = fdt_next_node(fdt, 0, NULL);
	     offset >= 0;
	     offset = fdt_next_node(fdt, offset, NULL)) {
		for (i = 0;
		     (str = fdt_stringlist_get(fdt, offset, "compatible", i, &len));
		     i++) {
			if (!memcmp(compat_tail,
				    str + len - strlen(compat_tail),
				    strlen(compat_tail)))
				return fdt_get_base_address(fdt, offset);
		}
	}

	return OF_BAD_ADDR;
}

int uniphier_base_address_init(void)
{
	u64 base;

	base = uniphier_base_address_get("-soc-glue");
	if (base == OF_BAD_ADDR)
		return -EINVAL;

	sg_base = ioremap(base, SZ_8K);

	base = uniphier_base_address_get("-sysctrl");
	if (base == OF_BAD_ADDR)
		return -EINVAL;

	sc_base = ioremap(base, SZ_64K);

	return 0;
}