1 /* Blackfin GUI (SDL) helper code
3 Copyright (C) 2010-2019 Free Software Foundation, Inc.
4 Contributed by Analog Devices, Inc.
6 This file is part of simulators.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
30 #include "libiberty.h"
37 int (*Init
) (Uint32 flags
);
39 SDL_Surface
*(*SetVideoMode
) (int width
, int height
, int bpp
, Uint32 flags
);
40 void (*WM_SetCaption
) (const char *title
, const char *icon
);
41 int (*ShowCursor
) (int toggle
);
42 int (*LockSurface
) (SDL_Surface
*surface
);
43 void (*UnlockSurface
) (SDL_Surface
*surface
);
44 void (*GetRGB
) (Uint32 pixel
, const SDL_PixelFormat
* const fmt
, Uint8
*r
, Uint8
*g
, Uint8
*b
);
45 Uint32 (*MapRGB
) (const SDL_PixelFormat
* const format
, const Uint8 r
, const Uint8 g
, const Uint8 b
);
46 void (*UpdateRect
) (SDL_Surface
*screen
, Sint32 x
, Sint32 y
, Uint32 w
, Uint32 h
);
49 static const char * const sdl_syms
[] =
65 const SDL_PixelFormat
*format
;
66 int throttle
, throttle_limit
;
71 /* Load the SDL lib on the fly to avoid hard linking against it. */
73 bfin_gui_sdl_setup (void)
81 sdl
.handle
= dlopen ("libSDL-1.2.so.0", RTLD_LAZY
);
82 if (sdl
.handle
== NULL
)
85 funcs
= (void *) &sdl
.Init
;
86 for (i
= 0; i
< ARRAY_SIZE (sdl_syms
); ++i
)
88 funcs
[i
] = dlsym (sdl
.handle
, sdl_syms
[i
]);
100 static const SDL_PixelFormat
*bfin_gui_color_format (enum gui_color color
);
103 bfin_gui_setup (void *state
, int enabled
, int width
, int height
,
104 enum gui_color color
)
106 if (bfin_gui_sdl_setup ())
109 /* Create an SDL window if enabled and we don't have one yet. */
110 if (enabled
&& !state
)
112 struct gui_state
*gui
= xmalloc (sizeof (*gui
));
116 if (sdl
.Init (SDL_INIT_VIDEO
))
120 gui
->format
= bfin_gui_color_format (gui
->color
);
121 gui
->screen
= sdl
.SetVideoMode (width
, height
, 32,
122 SDL_ANYFORMAT
|SDL_HWSURFACE
);
129 sdl
.WM_SetCaption ("GDB Blackfin Simulator", NULL
);
133 gui
->throttle_limit
= 0xf; /* XXX: let people control this ? */
141 /* Else break down a window if disabled and we had one. */
142 else if (!enabled
&& state
)
149 /* Retain existing state, whatever that may be. */
154 SDL_ConvertBlitLineFrom (const Uint8
*src
, const SDL_PixelFormat
* const format
,
155 SDL_Surface
*dst
, int dsty
)
161 if (SDL_MUSTLOCK (dst
))
162 if (sdl
.LockSurface (dst
))
165 pixels
= dst
->pixels
;
166 pixels
+= (dsty
* dst
->pitch
/ 4);
168 for (i
= 0; i
< dst
->w
; ++i
)
170 /* Exract the packed source pixel; RGB or BGR. */
172 for (j
= 0; j
< format
->BytesPerPixel
; ++j
)
174 pix
= (pix
<< 8) | src
[j
];
176 pix
= pix
| ((Uint32
)src
[j
] << (j
* 8));
178 /* Unpack the source pixel into its components. */
179 sdl
.GetRGB (pix
, format
, &r
, &g
, &b
);
180 /* Translate into the screen pixel format. */
181 *pixels
++ = sdl
.MapRGB (dst
->format
, r
, g
, b
);
183 src
+= format
->BytesPerPixel
;
186 if (SDL_MUSTLOCK (dst
))
187 sdl
.UnlockSurface (dst
);
189 sdl
.UpdateRect (dst
, 0, dsty
, dst
->w
, 1);
195 bfin_gui_update (void *state
, const void *source
, unsigned nr_bytes
)
197 struct gui_state
*gui
= state
;
203 /* XXX: Make this an option ? */
204 gui
->throttle
= (gui
->throttle
+ 1) & gui
->throttle_limit
;
208 ret
= SDL_ConvertBlitLineFrom (source
, gui
->format
, gui
->screen
,
213 gui
->curr_line
= (gui
->curr_line
+ 1) % gui
->screen
->h
;
218 #define FMASK(cnt, shift) (((1 << (cnt)) - 1) << (shift))
219 #define _FORMAT(bpp, rcnt, gcnt, bcnt, acnt, rsh, gsh, bsh, ash) \
220 NULL, bpp, (bpp)/8, 8-(rcnt), 8-(gcnt), 8-(bcnt), 8-(acnt), rsh, gsh, bsh, ash, \
221 FMASK (rcnt, rsh), FMASK (gcnt, gsh), FMASK (bcnt, bsh), FMASK (acnt, ash),
222 #define FORMAT(rcnt, gcnt, bcnt, acnt, rsh, gsh, bsh, ash) \
223 _FORMAT(((((rcnt) + (gcnt) + (bcnt) + (acnt)) + 7) / 8) * 8, \
224 rcnt, gcnt, bcnt, acnt, rsh, gsh, bsh, ash)
226 static const SDL_PixelFormat sdl_rgb_565
=
228 FORMAT (5, 6, 5, 0, 11, 5, 0, 0)
230 static const SDL_PixelFormat sdl_bgr_565
=
232 FORMAT (5, 6, 5, 0, 0, 5, 11, 0)
234 static const SDL_PixelFormat sdl_rgb_888
=
236 FORMAT (8, 8, 8, 0, 16, 8, 0, 0)
238 static const SDL_PixelFormat sdl_bgr_888
=
240 FORMAT (8, 8, 8, 0, 0, 8, 16, 0)
242 static const SDL_PixelFormat sdl_rgba_8888
=
244 FORMAT (8, 8, 8, 8, 24, 16, 8, 0)
247 static const struct {
249 const SDL_PixelFormat
*format
;
250 enum gui_color color
;
252 { "rgb565", &sdl_rgb_565
, GUI_COLOR_RGB_565
, },
253 { "bgr565", &sdl_bgr_565
, GUI_COLOR_BGR_565
, },
254 { "rgb888", &sdl_rgb_888
, GUI_COLOR_RGB_888
, },
255 { "bgr888", &sdl_bgr_888
, GUI_COLOR_BGR_888
, },
256 { "rgba8888", &sdl_rgba_8888
, GUI_COLOR_RGBA_8888
, },
259 enum gui_color
bfin_gui_color (const char *color
)
266 for (i
= 0; i
< ARRAY_SIZE (color_spaces
); ++i
)
267 if (!strcmp (color
, color_spaces
[i
].name
))
268 return color_spaces
[i
].color
;
270 /* Pick a random default. */
272 return GUI_COLOR_RGB_888
;
275 static const SDL_PixelFormat
*bfin_gui_color_format (enum gui_color color
)
279 for (i
= 0; i
< ARRAY_SIZE (color_spaces
); ++i
)
280 if (color
== color_spaces
[i
].color
)
281 return color_spaces
[i
].format
;
286 int bfin_gui_color_depth (enum gui_color color
)
288 const SDL_PixelFormat
*format
= bfin_gui_color_format (color
);
289 return format
? format
->BitsPerPixel
: 0;