/* * \brief Platform implementations specific for x86_64 * \author Reto Buerki * \author Stefan Kalkowski * \date 2015-05-04 */ /* * Copyright (C) 2015-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. */ /* core includes */ #include #include #include using namespace Genode; /* contains physical pointer to multiboot */ extern "C" Genode::addr_t __initial_bx; Bootstrap::Platform::Board::Board() : core_mmio(Memory_region { 0, 0x1000 }, Memory_region { Hw::Cpu_memory_map::MMIO_LAPIC_BASE, Hw::Cpu_memory_map::MMIO_LAPIC_SIZE }, Memory_region { Hw::Cpu_memory_map::MMIO_IOAPIC_BASE, Hw::Cpu_memory_map::MMIO_IOAPIC_SIZE }, Memory_region { __initial_bx & ~0xFFFUL, get_page_size() }) { using Mmap = Multiboot_info::Mmap; static constexpr size_t initial_map_max = 1024 * 1024 * 1024; for (unsigned i = 0; true; i++) { Mmap v(Multiboot_info(__initial_bx).phys_ram_mmap_base(i)); if (!v.base()) break; Mmap::Addr::access_t base = v.read(); Mmap::Length::access_t size = v.read(); /* * Exclude first physical page, so that it will become part of the * MMIO allocator. The framebuffer requests this page as MMIO. */ if (base == 0 && size >= get_page_size()) { base = get_page_size(); size -= get_page_size(); } if (base >= initial_map_max) { late_ram_regions.add(Memory_region { base, size }); continue; } if (base + size <= initial_map_max) { early_ram_regions.add(Memory_region { base, size }); continue; } size_t low_size = initial_map_max - base; early_ram_regions.add(Memory_region { base, low_size }); late_ram_regions.add(Memory_region { initial_map_max, size - low_size }); } } void Bootstrap::Platform::enable_mmu() { Cpu::Cr3::write(Cpu::Cr3::Pdb::masked((addr_t)core_pd->table_base)); } addr_t Bios_data_area::_mmio_base_virt() { return 0x1ff000; } Bootstrap::Serial::Serial(addr_t, size_t, unsigned baudrate) :X86_uart_base(Bios_data_area::singleton()->serial_port(), 0, baudrate) {}