x86: spl: Drop unwanted debug()
[platform/kernel/u-boot.git] / include / vbe.h
index 16bb096..5ede818 100644 (file)
-/******************************************************************************
- * Copyright (c) 2004, 2008 IBM Corporation
- * Copyright (c) 2009 Pattrick Hueper <phueper@hueper.net>
- * All rights reserved.
+/* SPDX-License-Identifier: GPL-2.0+ */
+/*
+ * Verified Boot for Embedded (VBE) support
+ * See doc/develop/vbe.rst
  *
- * SPDX-License-Identifier:    BSD-2-Clause
- *
- * Contributors:
- *     IBM Corporation - initial implementation
- *****************************************************************************/
-#ifndef _VBE_H
-#define _VBE_H
+ * Copyright 2022 Google LLC
+ * Written by Simon Glass <sjg@chromium.org>
+ */
 
-/* these structs are for input from and output to OF */
-struct __packed vbe_screen_info {
-       u8 display_type;        /* 0=NONE, 1= analog, 2=digital */
-       u16 screen_width;
-       u16 screen_height;
-       /* bytes per line in framebuffer, may be more than screen_width */
-       u16 screen_linebytes;
-       u8 color_depth; /* color depth in bits per pixel */
-       u32 framebuffer_address;
-       u8 edid_block_zero[128];
-};
+#ifndef __VBE_H
+#define __VBE_H
 
-struct __packed vbe_screen_info_input {
-       u8 signature[4];
-       u16 size_reserved;
-       u8 monitor_number;
-       u16 max_screen_width;
-       u8 color_depth;
+/**
+ * enum vbe_phase_t - current phase of VBE
+ *
+ * VBE operates in two distinct phases. In VPL it has to choose which firmware
+ * to run (SPL, U-Boot, OP-TEE, etc.). It then carries on running until it gets
+ * to U-Boot, where it decides which OS to run
+ *
+ * @VBE_PHASE_FIRMWARE: Selecting the firmware to run
+ * @VBE_PHASE_OS: Selecting the Operating System to run
+ */
+enum vbe_phase_t {
+       VBE_PHASE_FIRMWARE,
+       VBE_PHASE_OS,
 };
 
-/* these structs only store the required a subset of the VBE-defined fields */
-struct __packed vbe_info {
-       char signature[4];
-       u16 version;
-       u32 oem_string_ptr;
-       u32 capabilities;
-       u32 modes_ptr;
-       u16 total_memory;
-       u16 oem_version;
-       u32 vendor_name_ptr;
-       u32 product_name_ptr;
-       u32 product_rev_ptr;
+/**
+ * struct vbe_handoff - information about VBE progress
+ *
+ * @phases: Indicates which phases used the VBE bootmeth (1 << PHASE_...)
+ */
+struct vbe_handoff {
+       u8 phases;
 };
 
-struct __packed vesa_mode_info {
-       u16 mode_attributes;    /* 00 */
-       u8 win_a_attributes;    /* 02 */
-       u8 win_b_attributes;    /* 03 */
-       u16 win_granularity;    /* 04 */
-       u16 win_size;           /* 06 */
-       u16 win_a_segment;      /* 08 */
-       u16 win_b_segment;      /* 0a */
-       u32 win_func_ptr;       /* 0c */
-       u16 bytes_per_scanline; /* 10 */
-       u16 x_resolution;       /* 12 */
-       u16 y_resolution;       /* 14 */
-       u8 x_charsize;          /* 16 */
-       u8 y_charsize;          /* 17 */
-       u8 number_of_planes;    /* 18 */
-       u8 bits_per_pixel;      /* 19 */
-       u8 number_of_banks;     /* 20 */
-       u8 memory_model;        /* 21 */
-       u8 bank_size;           /* 22 */
-       u8 number_of_image_pages; /* 23 */
-       u8 reserved_page;
-       u8 red_mask_size;
-       u8 red_mask_pos;
-       u8 green_mask_size;
-       u8 green_mask_pos;
-       u8 blue_mask_size;
-       u8 blue_mask_pos;
-       u8 reserved_mask_size;
-       u8 reserved_mask_pos;
-       u8 direct_color_mode_info;
-       u32 phys_base_ptr;
-       u32 offscreen_mem_offset;
-       u16 offscreen_mem_size;
-       u8 reserved[206];
-};
+/**
+ * vbe_phase() - get current VBE phase
+ *
+ * Returns: Current VBE phase
+ */
+static inline enum vbe_phase_t vbe_phase(void)
+{
+       if (IS_ENABLED(CONFIG_SPL_BUILD))
+               return VBE_PHASE_FIRMWARE;
 
-struct vbe_mode_info {
-       u16 video_mode;
-       bool valid;
-       union {
-               struct vesa_mode_info vesa;
-               u8 mode_info_block[256];
-       };
-};
+       return VBE_PHASE_OS;
+}
 
-struct vbe_ddc_info {
-       u8 port_number; /* i.e. monitor number */
-       u8 edid_transfer_time;
-       u8 ddc_level;
-       u8 edid_block_zero[128];
-};
+/**
+ * vbe_list() - List the VBE bootmeths
+ *
+ * This shows a list of the VBE bootmeth devices
+ *
+ * @return 0 (always)
+ */
+int vbe_list(void);
 
-#define VESA_GET_INFO          0x4f00
-#define VESA_GET_MODE_INFO     0x4f01
-#define VESA_SET_MODE          0x4f02
-#define VESA_GET_CUR_MODE      0x4f03
+/**
+ * vbe_find_by_any() - Find a VBE bootmeth by name or sequence
+ *
+ * @name: name (e.g. "vbe-simple"), or sequence ("2") to find
+ * @devp: returns the device found, on success
+ * Return: 0 if OK, -ve on error
+ */
+int vbe_find_by_any(const char *name, struct udevice **devp);
 
-extern struct vbe_mode_info mode_info;
+/**
+ * vbe_find_first_device() - Find the first VBE bootmeth
+ *
+ * @devp: Returns first available VBE bootmeth, or NULL if none
+ * Returns: 0 (always)
+ */
+int vbe_find_first_device(struct udevice **devp);
 
-struct graphic_device;
-int vbe_get_video_info(struct graphic_device *gdev);
-struct video_priv;
-struct video_uc_platdata;
-int vbe_setup_video_priv(struct vesa_mode_info *vesa,
-                        struct video_priv *uc_priv,
-                        struct video_uc_platdata *plat);
-int vbe_setup_video(struct udevice *dev, int (*int15_handler)(void));
+/**
+ * vbe_find_next_device() - Find the next available VBE bootmeth
+ *
+ * @devp: Previous device to start from. Returns next available VBE bootmeth,
+ * or NULL if none
+ * Returns: 0 (always)
+ */
+int vbe_find_next_device(struct udevice **devp);
 
 #endif