blob: 8c6fbc0e30bc71f37828b298c3b4fc88a88e519b [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{
61 if (!id)
62 id = exp->next_id++;
63 else if (id >= exp->next_id)
64 exp->next_id = id + 1;
65
66 return id;
67}
68
69void expo_set_dynamic_start(struct expo *exp, uint dyn_start)
70{
71 exp->next_id = dyn_start;
72}
73
Simon Glass87c6f8a2023-01-06 08:52:36 -060074int expo_str(struct expo *exp, const char *name, uint id, const char *str)
75{
76 struct expo_string *estr;
77
78 estr = calloc(1, sizeof(struct expo_string));
79 if (!estr)
80 return log_msg_ret("obj", -ENOMEM);
81
82 estr->id = resolve_id(exp, id);
83 estr->str = str;
84 list_add_tail(&estr->sibling, &exp->str_head);
85
86 return estr->id;
87}
88
89const char *expo_get_str(struct expo *exp, uint id)
90{
91 struct expo_string *estr;
92
93 list_for_each_entry(estr, &exp->str_head, sibling) {
94 if (estr->id == id)
95 return estr->str;
96 }
97
98 return NULL;
99}
100
101int expo_set_display(struct expo *exp, struct udevice *dev)
102{
Simon Glass42b18492023-06-01 10:22:34 -0600103 struct udevice *cons;
104 int ret;
105
106 ret = device_find_first_child_by_uclass(dev, UCLASS_VIDEO_CONSOLE,
107 &cons);
108 if (ret)
109 return log_msg_ret("con", ret);
110
Simon Glass87c6f8a2023-01-06 08:52:36 -0600111 exp->display = dev;
Simon Glass42b18492023-06-01 10:22:34 -0600112 exp->cons = cons;
Simon Glass87c6f8a2023-01-06 08:52:36 -0600113
114 return 0;
115}
116
Simon Glass699b0ac2023-06-01 10:22:52 -0600117int expo_calc_dims(struct expo *exp)
118{
119 struct scene *scn;
120 int ret;
121
122 if (!exp->cons)
123 return log_msg_ret("dim", -ENOTSUPP);
124
125 list_for_each_entry(scn, &exp->scene_head, sibling) {
126 /*
127 * Do the menus last so that all the menus' text objects
128 * are dimensioned
129 */
130 ret = scene_calc_dims(scn, false);
131 if (ret)
132 return log_msg_ret("scn", ret);
133 ret = scene_calc_dims(scn, true);
134 if (ret)
135 return log_msg_ret("scn", ret);
136 }
137
138 return 0;
139}
140
Simon Glass5904d952023-06-01 10:22:37 -0600141void expo_set_text_mode(struct expo *exp, bool text_mode)
Simon Glass87c6f8a2023-01-06 08:52:36 -0600142{
143 exp->text_mode = text_mode;
144}
145
146struct scene *expo_lookup_scene_id(struct expo *exp, uint scene_id)
147{
148 struct scene *scn;
149
150 list_for_each_entry(scn, &exp->scene_head, sibling) {
151 if (scn->id == scene_id)
152 return scn;
153 }
154
155 return NULL;
156}
157
158int expo_set_scene_id(struct expo *exp, uint scene_id)
159{
Simon Glass14a86a52023-06-01 10:22:35 -0600160 struct scene *scn;
161 int ret;
162
163 scn = expo_lookup_scene_id(exp, scene_id);
164 if (!scn)
Simon Glass87c6f8a2023-01-06 08:52:36 -0600165 return log_msg_ret("id", -ENOENT);
Simon Glass14a86a52023-06-01 10:22:35 -0600166 ret = scene_arrange(scn);
167 if (ret)
168 return log_msg_ret("arr", ret);
169
Simon Glass87c6f8a2023-01-06 08:52:36 -0600170 exp->scene_id = scene_id;
171
172 return 0;
173}
174
Simon Glass4c87e072023-06-01 10:22:58 -0600175int expo_first_scene_id(struct expo *exp)
176{
177 struct scene *scn;
178
179 if (list_empty(&exp->scene_head))
180 return -ENOENT;
181
182 scn = list_first_entry(&exp->scene_head, struct scene, sibling);
183
184 return scn->id;
185}
186
Simon Glass87c6f8a2023-01-06 08:52:36 -0600187int expo_render(struct expo *exp)
188{
189 struct udevice *dev = exp->display;
190 struct video_priv *vid_priv = dev_get_uclass_priv(dev);
191 struct scene *scn = NULL;
192 u32 colour;
193 int ret;
194
195 colour = video_index_to_colour(vid_priv, VID_WHITE);
196 ret = video_fill(dev, colour);
197 if (ret)
198 return log_msg_ret("fill", ret);
199
200 if (exp->scene_id) {
201 scn = expo_lookup_scene_id(exp, exp->scene_id);
202 if (!scn)
203 return log_msg_ret("scn", -ENOENT);
204
205 ret = scene_render(scn);
206 if (ret)
207 return log_msg_ret("ren", ret);
208 }
209
210 video_sync(dev, true);
211
212 return scn ? 0 : -ECHILD;
213}
214
215int expo_send_key(struct expo *exp, int key)
216{
217 struct scene *scn = NULL;
218
219 if (exp->scene_id) {
220 int ret;
221
222 scn = expo_lookup_scene_id(exp, exp->scene_id);
223 if (!scn)
224 return log_msg_ret("scn", -ENOENT);
225
226 ret = scene_send_key(scn, key, &exp->action);
227 if (ret)
228 return log_msg_ret("key", ret);
Simon Glass14a86a52023-06-01 10:22:35 -0600229
230 /* arrange it to get any changes */
231 ret = scene_arrange(scn);
232 if (ret)
233 return log_msg_ret("arr", ret);
Simon Glass87c6f8a2023-01-06 08:52:36 -0600234 }
235
236 return scn ? 0 : -ECHILD;
237}
238
239int expo_action_get(struct expo *exp, struct expo_action *act)
240{
241 *act = exp->action;
242 exp->action.type = EXPOACT_NONE;
243
244 return act->type == EXPOACT_NONE ? -EAGAIN : 0;
245}
Simon Glass2e593892023-06-01 10:22:53 -0600246
247int expo_apply_theme(struct expo *exp, ofnode node)
248{
249 struct scene *scn;
250 struct expo_theme *theme = &exp->theme;
251 int ret;
252
253 log_debug("Applying theme %s\n", ofnode_get_name(node));
254
255 memset(theme, '\0', sizeof(struct expo_theme));
256 ofnode_read_u32(node, "font-size", &theme->font_size);
Simon Glass7230fdb2023-06-01 10:23:00 -0600257 ofnode_read_u32(node, "menu-inset", &theme->menu_inset);
258 ofnode_read_u32(node, "menuitem-gap-y", &theme->menuitem_gap_y);
Simon Glass2e593892023-06-01 10:22:53 -0600259
260 list_for_each_entry(scn, &exp->scene_head, sibling) {
261 ret = scene_apply_theme(scn, theme);
262 if (ret)
263 return log_msg_ret("app", ret);
264 }
265
266 return 0;
267}