hw: add mbi2 framebuffer support

Issue #2555
This commit is contained in:
Alexander Boettcher 2017-11-18 15:53:02 +01:00 committed by Christian Helmuth
parent e1ac124a4d
commit 858f5732ba
8 changed files with 72 additions and 7 deletions

View File

@ -197,7 +197,8 @@ Platform::Platform()
*construct_at<Boot_info>(bi_base, (addr_t)&core_pd->table, *construct_at<Boot_info>(bi_base, (addr_t)&core_pd->table,
(addr_t)&core_pd->array, (addr_t)&core_pd->array,
core_pd->mappings, boot_modules, core_pd->mappings, boot_modules,
board.core_mmio, board.acpi_rsdp); board.core_mmio, board.acpi_rsdp,
board.framebuffer);
/* add all left RAM to bootinfo */ /* add all left RAM to bootinfo */
ram_alloc.for_each_free_region([&] (Memory_region const & r) { ram_alloc.for_each_free_region([&] (Memory_region const & r) {

View File

@ -46,6 +46,7 @@ class Bootstrap::Platform
Memory_region_array late_ram_regions; Memory_region_array late_ram_regions;
Mmio_space const core_mmio; Mmio_space const core_mmio;
Hw::Acpi_rsdp acpi_rsdp; Hw::Acpi_rsdp acpi_rsdp;
Hw::Framebuffer framebuffer;
Board(); Board();
}; };

View File

@ -30,8 +30,10 @@ class Genode::Multiboot2_info : Mmio
struct Type : Register <0x00, 32> struct Type : Register <0x00, 32>
{ {
enum { END = 0, MEMORY = 6, ACPI_RSDP_V1 = 14, enum {
ACPI_RSDP_V2 = 15 }; END = 0, MEMORY = 6, FRAMEBUFFER = 8,
ACPI_RSDP_V1 = 14, ACPI_RSDP_V2 = 15
};
}; };
struct Size : Register <0x04, 32> { }; struct Size : Register <0x04, 32> { };
@ -54,8 +56,8 @@ class Genode::Multiboot2_info : Mmio
Multiboot2_info(addr_t mbi) : Mmio(mbi) { } Multiboot2_info(addr_t mbi) : Mmio(mbi) { }
template <typename FUNC_MEM, typename FUNC_ACPI> template <typename FUNC_MEM, typename FUNC_ACPI, typename FUNC_FB>
void for_each_tag(FUNC_MEM mem_fn, FUNC_ACPI acpi_fn) void for_each_tag(FUNC_MEM mem_fn, FUNC_ACPI acpi_fn, FUNC_FB fb_fn)
{ {
addr_t const size = read<Multiboot2_info::Size>(); addr_t const size = read<Multiboot2_info::Size>();
@ -95,6 +97,15 @@ class Genode::Multiboot2_info : Mmio
acpi_fn(*rsdp); acpi_fn(*rsdp);
} }
if (tag.read<Tag::Type>() == Tag::Type::FRAMEBUFFER) {
size_t const sizeof_tag = 1UL << Tag::LOG2_SIZE;
addr_t const fb_addr = tag_addr + sizeof_tag;
Hw::Framebuffer const * fb = reinterpret_cast<Hw::Framebuffer *>(fb_addr);
if (sizeof(*fb) <= tag.read<Tag::Size>() - sizeof_tag)
fb_fn(*fb);
}
tag_addr += align_addr(tag.read<Tag::Size>(), Tag::LOG2_SIZE); tag_addr += align_addr(tag.read<Tag::Size>(), Tag::LOG2_SIZE);
} }
} }

View File

@ -80,6 +80,9 @@ Bootstrap::Platform::Board::Board()
/* prefer higher acpi revisions */ /* prefer higher acpi revisions */
if (!acpi_rsdp.valid() || acpi_rsdp.revision < rsdp.revision) if (!acpi_rsdp.valid() || acpi_rsdp.revision < rsdp.revision)
acpi_rsdp = rsdp; acpi_rsdp = rsdp;
},
[&] (Hw::Framebuffer const &fb) {
framebuffer = fb;
}); });
return; return;

View File

@ -69,6 +69,17 @@ void Platform::_init_additional()
xml.attribute("xsdt", String<32>(Hex(xsdt))); xml.attribute("xsdt", String<32>(Hex(xsdt)));
} }
}); });
xml.node("boot", [&] () {
xml.node("framebuffer", [&] () {
Hw::Framebuffer const &boot_fb = _boot_info().framebuffer;
xml.attribute("phys", String<32>(Hex(boot_fb.addr)));
xml.attribute("width", boot_fb.width);
xml.attribute("height", boot_fb.height);
xml.attribute("bpp", boot_fb.bpp);
xml.attribute("type", boot_fb.type);
xml.attribute("pitch", boot_fb.pitch);
});
});
}); });
if (!unmap_local(virt_addr, pages)) { if (!unmap_local(virt_addr, pages)) {

View File

@ -16,6 +16,7 @@
#include <hw/acpi_rsdp.h> #include <hw/acpi_rsdp.h>
#include <hw/memory_map.h> #include <hw/memory_map.h>
#include <hw/framebuffer.h>
namespace Hw { struct Boot_info; } namespace Hw { struct Boot_info; }
@ -30,16 +31,18 @@ struct Hw::Boot_info
Mmio_space const mmio_space; Mmio_space const mmio_space;
Memory_region_array ram_regions; Memory_region_array ram_regions;
Acpi_rsdp const acpi_rsdp; Acpi_rsdp const acpi_rsdp;
Framebuffer const framebuffer;
Boot_info(addr_t const table, Boot_info(addr_t const table,
addr_t const table_alloc, addr_t const table_alloc,
Mapping_pool const elf_mappings, Mapping_pool const elf_mappings,
Mapping const boot_modules, Mapping const boot_modules,
Mmio_space const mmio_space, Mmio_space const mmio_space,
Acpi_rsdp const &acpi_rsdp) Acpi_rsdp const &acpi_rsdp,
Framebuffer const &fb)
: table(table), table_allocator(table_alloc), : table(table), table_allocator(table_alloc),
elf_mappings(elf_mappings), boot_modules(boot_modules), elf_mappings(elf_mappings), boot_modules(boot_modules),
mmio_space(mmio_space), acpi_rsdp(acpi_rsdp) {} mmio_space(mmio_space), acpi_rsdp(acpi_rsdp), framebuffer(fb) {}
}; };
#endif /* _SRC__LIB__HW__BOOT_INFO_H_ */ #endif /* _SRC__LIB__HW__BOOT_INFO_H_ */

View File

@ -0,0 +1,33 @@
/*
* \brief Framebuffer structure as provided by bootloader
* \author Alexander Boettcher
* \date 2017-11-20
*/
/*
* Copyright (C) 2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _SRC__LIB__HW__FRAMEBUFFER_H
#define _SRC__LIB__HW__FRAMEBUFFER_H
#include <base/fixed_stdint.h>
namespace Hw {
struct Framebuffer;
}
struct Hw::Framebuffer
{
Genode::uint64_t addr;
Genode::uint32_t pitch;
Genode::uint32_t width;
Genode::uint32_t height;
Genode::uint8_t bpp;
Genode::uint8_t type;
} __attribute__((packed));
#endif /* _SRC__LIB__HW__FRAMEBUFFER_H */

View File

@ -129,6 +129,8 @@ proc run_boot_dir {binaries} {
# #
set fh [open "[run_dir]/boot/grub/grub.cfg" "WRONLY CREAT TRUNC"] set fh [open "[run_dir]/boot/grub/grub.cfg" "WRONLY CREAT TRUNC"]
puts $fh "set timeout=0" puts $fh "set timeout=0"
# tell grub2 to prefer 32bit framebuffer resolution
puts $fh "set gfxpayload=\"0x0x32\""
puts $fh "menuentry 'Genode on base-hw' {" puts $fh "menuentry 'Genode on base-hw' {"
puts $fh " insmod multiboot2" puts $fh " insmod multiboot2"
puts $fh " multiboot2 /boot/bender $serial_bender_opt" puts $fh " multiboot2 /boot/bender $serial_bender_opt"