blob: 139d684f8e6e06a0f4a1d48920213c2def9281af [file] [log] [blame]
Simon Glass87c6f8a2023-01-06 08:52:36 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Implementation of a expo, a collection of scenes providing menu options
4 *
5 * Copyright 2022 Google LLC
6 * Written by Simon Glass <sjg@chromium.org>
7 */
8
Simon Glassc98cb512023-06-01 10:22:43 -06009#define LOG_CATEGORY LOGC_EXPO
10
Simon Glass87c6f8a2023-01-06 08:52:36 -060011#include <common.h>
12#include <dm.h>
13#include <expo.h>
14#include <malloc.h>
15#include <video.h>
16#include "scene_internal.h"
17
18int expo_new(const char *name, void *priv, struct expo **expp)
19{
20 struct expo *exp;
21
22 exp = calloc(1, sizeof(struct expo));
23 if (!exp)
24 return log_msg_ret("expo", -ENOMEM);
25 exp->name = strdup(name);
26 if (!exp->name) {
27 free(exp);
28 return log_msg_ret("name", -ENOMEM);
29 }
30 exp->priv = priv;
31 INIT_LIST_HEAD(&exp->scene_head);
32 INIT_LIST_HEAD(&exp->str_head);
33
34 *expp = exp;
35
36 return 0;
37}
38
39static void estr_destroy(struct expo_string *estr)
40{
41 free(estr);
42}
43
44void expo_destroy(struct expo *exp)
45{
46 struct scene *scn, *next;
47 struct expo_string *estr, *enext;
48
49 list_for_each_entry_safe(scn, next, &exp->scene_head, sibling)
50 scene_destroy(scn);
51
52 list_for_each_entry_safe(estr, enext, &exp->str_head, sibling)
53 estr_destroy(estr);
54
55 free(exp->name);
56 free(exp);
57}
58
Simon Glass9af34152023-06-01 10:22:47 -060059uint resolve_id(struct expo *exp, uint id)
60{
Simon Glass82cafee2023-06-01 10:23:01 -060061 log_debug("resolve id %d\n", id);
Simon Glass9af34152023-06-01 10:22:47 -060062 if (!id)
63 id = exp->next_id++;
64 else if (id >= exp->next_id)
65 exp->next_id = id + 1;
66
67 return id;
68}
69
70void expo_set_dynamic_start(struct expo *exp, uint dyn_start)
71{
72 exp->next_id = dyn_start;
73}
74
Simon Glass87c6f8a2023-01-06 08:52:36 -060075int expo_str(struct expo *exp, const char *name, uint id, const char *str)
76{
77 struct expo_string *estr;
78
79 estr = calloc(1, sizeof(struct expo_string));
80 if (!estr)
81 return log_msg_ret("obj", -ENOMEM);
82
83 estr->id = resolve_id(exp, id);
84 estr->str = str;
85 list_add_tail(&estr->sibling, &exp->str_head);
86
87 return estr->id;
88}
89
90const char *expo_get_str(struct expo *exp, uint id)
91{
92 struct expo_string *estr;
93
94 list_for_each_entry(estr, &exp->str_head, sibling) {
95 if (estr->id == id)
96 return estr->str;
97 }
98
99 return NULL;
100}
101
102int expo_set_display(struct expo *exp, struct udevice *dev)
103{
Simon Glass42b18492023-06-01 10:22:34 -0600104 struct udevice *cons;
105 int ret;
106
107 ret = device_find_first_child_by_uclass(dev, UCLASS_VIDEO_CONSOLE,
108 &cons);
109 if (ret)
110 return log_msg_ret("con", ret);
111
Simon Glass87c6f8a2023-01-06 08:52:36 -0600112 exp->display = dev;
Simon Glass42b18492023-06-01 10:22:34 -0600113 exp->cons = cons;
Simon Glass87c6f8a2023-01-06 08:52:36 -0600114
115 return 0;
116}
117
Simon Glass699b0ac2023-06-01 10:22:52 -0600118int expo_calc_dims(struct expo *exp)
119{
120 struct scene *scn;
121 int ret;
122
123 if (!exp->cons)
124 return log_msg_ret("dim", -ENOTSUPP);
125
126 list_for_each_entry(scn, &exp->scene_head, sibling) {
127 /*
128 * Do the menus last so that all the menus' text objects
129 * are dimensioned
130 */
131 ret = scene_calc_dims(scn, false);
132 if (ret)
133 return log_msg_ret("scn", ret);
134 ret = scene_calc_dims(scn, true);
135 if (ret)
136 return log_msg_ret("scn", ret);
137 }
138
139 return 0;
140}
141
Simon Glass5904d952023-06-01 10:22:37 -0600142void expo_set_text_mode(struct expo *exp, bool text_mode)
Simon Glass87c6f8a2023-01-06 08:52:36 -0600143{
144 exp->text_mode = text_mode;
145}
146
147struct scene *expo_lookup_scene_id(struct expo *exp, uint scene_id)
148{
149 struct scene *scn;
150
151 list_for_each_entry(scn, &exp->scene_head, sibling) {
152 if (scn->id == scene_id)
153 return scn;
154 }
155
156 return NULL;
157}
158
159int expo_set_scene_id(struct expo *exp, uint scene_id)
160{
Simon Glass14a86a52023-06-01 10:22:35 -0600161 struct scene *scn;
162 int ret;
163
164 scn = expo_lookup_scene_id(exp, scene_id);
165 if (!scn)
Simon Glass87c6f8a2023-01-06 08:52:36 -0600166 return log_msg_ret("id", -ENOENT);
Simon Glass14a86a52023-06-01 10:22:35 -0600167 ret = scene_arrange(scn);
168 if (ret)
169 return log_msg_ret("arr", ret);
170
Simon Glass87c6f8a2023-01-06 08:52:36 -0600171 exp->scene_id = scene_id;
172
173 return 0;
174}
175
Simon Glass4c87e072023-06-01 10:22:58 -0600176int expo_first_scene_id(struct expo *exp)
177{
178 struct scene *scn;
179
180 if (list_empty(&exp->scene_head))
181 return -ENOENT;
182
183 scn = list_first_entry(&exp->scene_head, struct scene, sibling);
184
185 return scn->id;
186}
187
Simon Glass87c6f8a2023-01-06 08:52:36 -0600188int expo_render(struct expo *exp)
189{
190 struct udevice *dev = exp->display;
191 struct video_priv *vid_priv = dev_get_uclass_priv(dev);
192 struct scene *scn = NULL;
193 u32 colour;
194 int ret;
195
196 colour = video_index_to_colour(vid_priv, VID_WHITE);
197 ret = video_fill(dev, colour);
198 if (ret)
199 return log_msg_ret("fill", ret);
200
201 if (exp->scene_id) {
202 scn = expo_lookup_scene_id(exp, exp->scene_id);
203 if (!scn)
204 return log_msg_ret("scn", -ENOENT);
205
206 ret = scene_render(scn);
207 if (ret)
208 return log_msg_ret("ren", ret);
209 }
210
211 video_sync(dev, true);
212
213 return scn ? 0 : -ECHILD;
214}
215
216int expo_send_key(struct expo *exp, int key)
217{
218 struct scene *scn = NULL;
219
220 if (exp->scene_id) {
221 int ret;
222
223 scn = expo_lookup_scene_id(exp, exp->scene_id);
224 if (!scn)
225 return log_msg_ret("scn", -ENOENT);
226
227 ret = scene_send_key(scn, key, &exp->action);
228 if (ret)
229 return log_msg_ret("key", ret);
Simon Glass14a86a52023-06-01 10:22:35 -0600230
231 /* arrange it to get any changes */
232 ret = scene_arrange(scn);
233 if (ret)
234 return log_msg_ret("arr", ret);
Simon Glass87c6f8a2023-01-06 08:52:36 -0600235 }
236
237 return scn ? 0 : -ECHILD;
238}
239
240int expo_action_get(struct expo *exp, struct expo_action *act)
241{
242 *act = exp->action;
243 exp->action.type = EXPOACT_NONE;
244
245 return act->type == EXPOACT_NONE ? -EAGAIN : 0;
246}
Simon Glass2e593892023-06-01 10:22:53 -0600247
248int expo_apply_theme(struct expo *exp, ofnode node)
249{
250 struct scene *scn;
251 struct expo_theme *theme = &exp->theme;
252 int ret;
253
254 log_debug("Applying theme %s\n", ofnode_get_name(node));
255
256 memset(theme, '\0', sizeof(struct expo_theme));
257 ofnode_read_u32(node, "font-size", &theme->font_size);
Simon Glass7230fdb2023-06-01 10:23:00 -0600258 ofnode_read_u32(node, "menu-inset", &theme->menu_inset);
259 ofnode_read_u32(node, "menuitem-gap-y", &theme->menuitem_gap_y);
Simon Glass2e593892023-06-01 10:22:53 -0600260
261 list_for_each_entry(scn, &exp->scene_head, sibling) {
262 ret = scene_apply_theme(scn, theme);
263 if (ret)
264 return log_msg_ret("app", ret);
265 }
266
267 return 0;
268}
Simon Glassf2eb6ad2023-08-14 16:40:23 -0600269
270int expo_iter_scene_objs(struct expo *exp, expo_scene_obj_iterator iter,
271 void *priv)
272{
273 struct scene *scn;
274 int ret;
275
276 list_for_each_entry(scn, &exp->scene_head, sibling) {
277 ret = scene_iter_objs(scn, iter, priv);
278 if (ret)
279 return log_msg_ret("wr", ret);
280 }
281
282 return 0;
283}