1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2018 Linaro Limited
8 #include <dm/device-internal.h>
9 #include <dm/uclass-internal.h>
13 * struct tee_uclass_priv - information of a TEE, stored by the uclass
15 * @list_shm: list of structe tee_shm representing memory blocks shared
18 struct tee_uclass_priv {
19 struct list_head list_shm;
22 static const struct tee_driver_ops *tee_get_ops(struct udevice *dev)
24 return device_get_ops(dev);
27 void tee_get_version(struct udevice *dev, struct tee_version_data *vers)
29 tee_get_ops(dev)->get_version(dev, vers);
32 int tee_open_session(struct udevice *dev, struct tee_open_session_arg *arg,
33 uint num_param, struct tee_param *param)
35 return tee_get_ops(dev)->open_session(dev, arg, num_param, param);
38 int tee_close_session(struct udevice *dev, u32 session)
40 return tee_get_ops(dev)->close_session(dev, session);
43 int tee_invoke_func(struct udevice *dev, struct tee_invoke_arg *arg,
44 uint num_param, struct tee_param *param)
46 return tee_get_ops(dev)->invoke_func(dev, arg, num_param, param);
49 int __tee_shm_add(struct udevice *dev, ulong align, void *addr, ulong size,
50 u32 flags, struct tee_shm **shmp)
56 if (flags & TEE_SHM_ALLOC) {
58 p = memalign(align, size);
65 shm = calloc(1, sizeof(*shm));
76 if (flags & TEE_SHM_SEC_REGISTER) {
77 rc = tee_get_ops(dev)->shm_register(dev, shm);
82 if (flags & TEE_SHM_REGISTER) {
83 struct tee_uclass_priv *priv = dev_get_uclass_priv(dev);
85 list_add(&shm->link, &priv->list_shm);
93 if (flags & TEE_SHM_ALLOC)
99 int tee_shm_alloc(struct udevice *dev, ulong size, u32 flags,
100 struct tee_shm **shmp)
104 f |= TEE_SHM_SEC_REGISTER | TEE_SHM_REGISTER | TEE_SHM_ALLOC;
106 return __tee_shm_add(dev, 0, NULL, size, f, shmp);
109 int tee_shm_register(struct udevice *dev, void *addr, ulong size, u32 flags,
110 struct tee_shm **shmp)
112 u32 f = flags & ~TEE_SHM_ALLOC;
114 f |= TEE_SHM_SEC_REGISTER | TEE_SHM_REGISTER;
116 return __tee_shm_add(dev, 0, addr, size, f, shmp);
119 void tee_shm_free(struct tee_shm *shm)
124 if (shm->flags & TEE_SHM_SEC_REGISTER)
125 tee_get_ops(shm->dev)->shm_unregister(shm->dev, shm);
127 if (shm->flags & TEE_SHM_REGISTER)
128 list_del(&shm->link);
130 if (shm->flags & TEE_SHM_ALLOC)
136 bool tee_shm_is_registered(struct tee_shm *shm, struct udevice *dev)
138 struct tee_uclass_priv *priv = dev_get_uclass_priv(dev);
141 list_for_each_entry(s, &priv->list_shm, link)
148 struct udevice *tee_find_device(struct udevice *start,
149 int (*match)(struct tee_version_data *vers,
152 struct tee_version_data *vers)
154 struct udevice *dev = start;
155 struct tee_version_data lv;
156 struct tee_version_data *v = vers ? vers : &lv;
159 uclass_find_first_device(UCLASS_TEE, &dev);
161 uclass_find_next_device(&dev);
163 for (; dev; uclass_find_next_device(&dev)) {
164 if (device_probe(dev))
166 tee_get_ops(dev)->get_version(dev, v);
167 if (!match || match(v, data))
174 static int tee_pre_probe(struct udevice *dev)
176 struct tee_uclass_priv *priv = dev_get_uclass_priv(dev);
178 INIT_LIST_HEAD(&priv->list_shm);
183 static int tee_pre_remove(struct udevice *dev)
185 struct tee_uclass_priv *priv = dev_get_uclass_priv(dev);
189 * Any remaining shared memory must be unregistered now as U-Boot
190 * is about to hand over to the next stage and that memory will be
193 while (!list_empty(&priv->list_shm)) {
194 shm = list_first_entry(&priv->list_shm, struct tee_shm, link);
195 debug("%s: freeing leftover shm %p (size %lu, flags %#x)\n",
196 __func__, (void *)shm, shm->size, shm->flags);
203 UCLASS_DRIVER(tee) = {
206 .per_device_auto_alloc_size = sizeof(struct tee_uclass_priv),
207 .pre_probe = tee_pre_probe,
208 .pre_remove = tee_pre_remove,
211 void tee_optee_ta_uuid_from_octets(struct tee_optee_ta_uuid *d,
212 const u8 s[TEE_UUID_LEN])
214 d->time_low = ((u32)s[0] << 24) | ((u32)s[1] << 16) |
215 ((u32)s[2] << 8) | s[3],
216 d->time_mid = ((u32)s[4] << 8) | s[5];
217 d->time_hi_and_version = ((u32)s[6] << 8) | s[7];
218 memcpy(d->clock_seq_and_node, s + 8, sizeof(d->clock_seq_and_node));
221 void tee_optee_ta_uuid_to_octets(u8 d[TEE_UUID_LEN],
222 const struct tee_optee_ta_uuid *s)
224 d[0] = s->time_low >> 24;
225 d[1] = s->time_low >> 16;
226 d[2] = s->time_low >> 8;
228 d[4] = s->time_mid >> 8;
230 d[6] = s->time_hi_and_version >> 8;
231 d[7] = s->time_hi_and_version;
232 memcpy(d + 8, s->clock_seq_and_node, sizeof(s->clock_seq_and_node));