]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
7d95f2a3 SG |
2 | /* |
3 | * Copyright (c) 2013 Google, Inc | |
7d95f2a3 SG |
4 | */ |
5 | ||
6 | #include <common.h> | |
3ade5bc4 | 7 | #include <dm.h> |
7d95f2a3 | 8 | #include <fdtdec.h> |
f7ae49fc | 9 | #include <log.h> |
3ade5bc4 | 10 | #include <video.h> |
7d95f2a3 | 11 | #include <asm/sdl.h> |
6be88c72 | 12 | #include <asm/state.h> |
7d95f2a3 | 13 | #include <asm/u-boot-sandbox.h> |
3ade5bc4 | 14 | #include <dm/test.h> |
7d95f2a3 SG |
15 | |
16 | DECLARE_GLOBAL_DATA_PTR; | |
17 | ||
18 | enum { | |
3ade5bc4 | 19 | /* Default LCD size we support */ |
7d95f2a3 SG |
20 | LCD_MAX_WIDTH = 1366, |
21 | LCD_MAX_HEIGHT = 768, | |
7d95f2a3 SG |
22 | }; |
23 | ||
3ade5bc4 | 24 | static int sandbox_sdl_probe(struct udevice *dev) |
7d95f2a3 | 25 | { |
3ade5bc4 SG |
26 | struct sandbox_sdl_plat *plat = dev_get_platdata(dev); |
27 | struct video_priv *uc_priv = dev_get_uclass_priv(dev); | |
6be88c72 | 28 | struct sandbox_state *state = state_get_current(); |
3ade5bc4 | 29 | int ret; |
7d95f2a3 | 30 | |
6be88c72 SG |
31 | ret = sandbox_sdl_init_display(plat->xres, plat->yres, plat->bpix, |
32 | state->double_lcd); | |
3ade5bc4 | 33 | if (ret) { |
7d95f2a3 | 34 | puts("LCD init failed\n"); |
3ade5bc4 SG |
35 | return ret; |
36 | } | |
37 | uc_priv->xsize = plat->xres; | |
38 | uc_priv->ysize = plat->yres; | |
39 | uc_priv->bpix = plat->bpix; | |
40 | uc_priv->rot = plat->rot; | |
8de536c2 SG |
41 | uc_priv->vidconsole_drv_name = plat->vidconsole_drv_name; |
42 | uc_priv->font_size = plat->font_size; | |
3ade5bc4 SG |
43 | |
44 | return 0; | |
7d95f2a3 SG |
45 | } |
46 | ||
3ade5bc4 | 47 | static int sandbox_sdl_bind(struct udevice *dev) |
7d95f2a3 | 48 | { |
3ade5bc4 SG |
49 | struct video_uc_platdata *uc_plat = dev_get_uclass_platdata(dev); |
50 | struct sandbox_sdl_plat *plat = dev_get_platdata(dev); | |
7d95f2a3 SG |
51 | int ret = 0; |
52 | ||
a466db5a SG |
53 | plat->xres = dev_read_u32_default(dev, "xres", LCD_MAX_WIDTH); |
54 | plat->yres = dev_read_u32_default(dev, "yres", LCD_MAX_HEIGHT); | |
55 | plat->bpix = dev_read_u32_default(dev, "log2-depth", VIDEO_BPP16); | |
3ade5bc4 SG |
56 | uc_plat->size = plat->xres * plat->yres * (1 << plat->bpix) / 8; |
57 | debug("%s: Frame buffer size %x\n", __func__, uc_plat->size); | |
7d95f2a3 SG |
58 | |
59 | return ret; | |
60 | } | |
3ade5bc4 SG |
61 | |
62 | static const struct udevice_id sandbox_sdl_ids[] = { | |
63 | { .compatible = "sandbox,lcd-sdl" }, | |
64 | { } | |
65 | }; | |
66 | ||
67 | U_BOOT_DRIVER(sdl_sandbox) = { | |
68 | .name = "sdl_sandbox", | |
69 | .id = UCLASS_VIDEO, | |
70 | .of_match = sandbox_sdl_ids, | |
71 | .bind = sandbox_sdl_bind, | |
72 | .probe = sandbox_sdl_probe, | |
73 | .platdata_auto_alloc_size = sizeof(struct sandbox_sdl_plat), | |
74 | }; |