Merge tag 'u-boot-amlogic-20190704' of https://gitlab.denx.de/u-boot/custodians/u...
[platform/kernel/u-boot.git] / arch / arm / mach-meson / sm.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com>
4  *
5  * Secure monitor calls.
6  */
7
8 #include <common.h>
9 #include <asm/arch/sm.h>
10 #include <linux/kernel.h>
11
12 #define FN_GET_SHARE_MEM_INPUT_BASE     0x82000020
13 #define FN_GET_SHARE_MEM_OUTPUT_BASE    0x82000021
14 #define FN_EFUSE_READ                   0x82000030
15 #define FN_EFUSE_WRITE                  0x82000031
16 #define FN_CHIP_ID                      0x82000044
17
18 static void *shmem_input;
19 static void *shmem_output;
20
21 static void meson_init_shmem(void)
22 {
23         struct pt_regs regs;
24
25         if (shmem_input && shmem_output)
26                 return;
27
28         regs.regs[0] = FN_GET_SHARE_MEM_INPUT_BASE;
29         smc_call(&regs);
30         shmem_input = (void *)regs.regs[0];
31
32         regs.regs[0] = FN_GET_SHARE_MEM_OUTPUT_BASE;
33         smc_call(&regs);
34         shmem_output = (void *)regs.regs[0];
35
36         debug("Secure Monitor shmem: 0x%p 0x%p\n", shmem_input, shmem_output);
37 }
38
39 ssize_t meson_sm_read_efuse(uintptr_t offset, void *buffer, size_t size)
40 {
41         struct pt_regs regs;
42
43         meson_init_shmem();
44
45         regs.regs[0] = FN_EFUSE_READ;
46         regs.regs[1] = offset;
47         regs.regs[2] = size;
48
49         smc_call(&regs);
50
51         if (regs.regs[0] == 0)
52                 return -1;
53
54         memcpy(buffer, shmem_output, min(size, regs.regs[0]));
55
56         return regs.regs[0];
57 }
58
59 #define SM_CHIP_ID_LENGTH       119
60 #define SM_CHIP_ID_OFFSET       4
61 #define SM_CHIP_ID_SIZE         12
62
63 int meson_sm_get_serial(void *buffer, size_t size)
64 {
65         struct pt_regs regs;
66
67         meson_init_shmem();
68
69         regs.regs[0] = FN_CHIP_ID;
70         regs.regs[1] = 0;
71         regs.regs[2] = 0;
72
73         smc_call(&regs);
74
75         memcpy(buffer, shmem_output + SM_CHIP_ID_OFFSET,
76                min_t(size_t, size, SM_CHIP_ID_SIZE));
77
78         return 0;
79 }