ARM: DT: binding fixup to align with vendor-prefixes.txt (drivers)
[deliverable/linux.git] / arch / arm / mach-bcm / bcm_kona_smc.c
CommitLineData
b8eb35fd
CD
1/*
2 * Copyright (C) 2013 Broadcom Corporation
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation version 2.
7 *
8 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
9 * kind, whether express or implied; without even the implied warranty
10 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
14#include <stdarg.h>
15#include <linux/smp.h>
16#include <linux/io.h>
17#include <linux/ioport.h>
18
19#include <asm/cacheflush.h>
20#include <linux/of_address.h>
21
22#include "bcm_kona_smc.h"
23
24struct secure_bridge_data {
25 void __iomem *bounce; /* virtual address */
26 u32 __iomem buffer_addr; /* physical address */
27 int initialized;
28} bridge_data;
29
30struct bcm_kona_smc_data {
31 unsigned service_id;
32 unsigned arg0;
33 unsigned arg1;
34 unsigned arg2;
35 unsigned arg3;
36};
37
38static const struct of_device_id bcm_kona_smc_ids[] __initconst = {
aea237bf
CD
39 {.compatible = "brcm,kona-smc"},
40 {.compatible = "bcm,kona-smc"}, /* deprecated name */
b8eb35fd
CD
41 {},
42};
43
44/* Map in the bounce area */
721e0205 45void __init bcm_kona_smc_init(void)
b8eb35fd
CD
46{
47 struct device_node *node;
48
49 /* Read buffer addr and size from the device tree node */
50 node = of_find_matching_node(NULL, bcm_kona_smc_ids);
51 BUG_ON(!node);
52
53 /* Don't care about size or flags of the DT node */
54 bridge_data.buffer_addr =
55 be32_to_cpu(*of_get_address(node, 0, NULL, NULL));
56 BUG_ON(!bridge_data.buffer_addr);
57
58 bridge_data.bounce = of_iomap(node, 0);
59 BUG_ON(!bridge_data.bounce);
60
61 bridge_data.initialized = 1;
62
63 pr_info("Secure API initialized!\n");
64}
65
66/* __bcm_kona_smc() should only run on CPU 0, with pre-emption disabled */
67static void __bcm_kona_smc(void *info)
68{
69 struct bcm_kona_smc_data *data = info;
70 u32 *args = bridge_data.bounce;
71 int rc = 0;
72
73 /* Must run on CPU 0 */
74 BUG_ON(smp_processor_id() != 0);
75
76 /* Check map in the bounce area */
77 BUG_ON(!bridge_data.initialized);
78
79 /* Copy one 32 bit word into the bounce area */
80 args[0] = data->arg0;
81 args[1] = data->arg1;
82 args[2] = data->arg2;
83 args[3] = data->arg3;
84
85 /* Flush caches for input data passed to Secure Monitor */
86 if (data->service_id != SSAPI_BRCM_START_VC_CORE)
87 flush_cache_all();
88
89 /* Trap into Secure Monitor */
90 rc = bcm_kona_smc_asm(data->service_id, bridge_data.buffer_addr);
91
92 if (rc != SEC_ROM_RET_OK)
93 pr_err("Secure Monitor call failed (0x%x)!\n", rc);
94}
95
96unsigned bcm_kona_smc(unsigned service_id, unsigned arg0, unsigned arg1,
97 unsigned arg2, unsigned arg3)
98{
99 struct bcm_kona_smc_data data;
100
101 data.service_id = service_id;
102 data.arg0 = arg0;
103 data.arg1 = arg1;
104 data.arg2 = arg2;
105 data.arg3 = arg3;
106
107 /*
108 * Due to a limitation of the secure monitor, we must use the SMP
109 * infrastructure to forward all secure monitor calls to Core 0.
110 */
111 if (get_cpu() != 0)
112 smp_call_function_single(0, __bcm_kona_smc, (void *)&data, 1);
113 else
114 __bcm_kona_smc(&data);
115
116 put_cpu();
117
118 return 0;
119}
This page took 0.049502 seconds and 5 git commands to generate.