hrev54448 adds 2 changesets to branch 'master'
old head: 7d5ea15ee0c2ed1338ebddd94a56969eb79711a3
new head: a704a197f547ce3149b6ab5414836061e7150ff0
overview:
https://git.haiku-os.org/haiku/log/?qt=range&q=a704a197f547+%5E7d5ea15ee0c2
----------------------------------------------------------------------------
9f30e61f953f: efi/mmu: Add tracing, fix line widths. No functional change
Change-Id: I9fcd6790f7c7e8b9e12a3bc1a2c43cae091a11be
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3048
Reviewed-by: Adrien Destugues <pulkomandy@xxxxxxxxx>
a704a197f547: efi/devices: Skip qemu flash device for now due to crash
* An upstream bug exists which results in the tianocore
bios crashing when attempting to read from qemu's
(unconfigured, but present) flash device.
Change-Id: Ie9f02a290abc29cce3a5e279382750c0b14164dc
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3049
Reviewed-by: Adrien Destugues <pulkomandy@xxxxxxxxx>
[ Alexander von Gluck IV <kallisti5@xxxxxxxxxxx> ]
----------------------------------------------------------------------------
2 files changed, 60 insertions(+), 12 deletions(-)
src/system/boot/platform/efi/devices.cpp | 7 +++
src/system/boot/platform/efi/mmu.cpp | 65 +++++++++++++++++++++++-----
############################################################################
Commit: 9f30e61f953fbcf55afc09411323d836e897bc78
URL: https://git.haiku-os.org/haiku/commit/?id=9f30e61f953f
Author: Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date: Mon Jul 20 19:16:28 2020 UTC
Committer: Alex von Gluck IV <kallisti5@xxxxxxxxxxx>
Commit-Date: Tue Jul 21 12:49:44 2020 UTC
efi/mmu: Add tracing, fix line widths. No functional change
Change-Id: I9fcd6790f7c7e8b9e12a3bc1a2c43cae091a11be
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3048
Reviewed-by: Adrien Destugues <pulkomandy@xxxxxxxxx>
----------------------------------------------------------------------------
diff --git a/src/system/boot/platform/efi/mmu.cpp
b/src/system/boot/platform/efi/mmu.cpp
index 75fcd1060b..952434845e 100644
--- a/src/system/boot/platform/efi/mmu.cpp
+++ b/src/system/boot/platform/efi/mmu.cpp
@@ -17,6 +17,14 @@
#include "mmu.h"
+//#define TRACE_MMU
+#ifdef TRACE_MMU
+# define TRACE(x...) dprintf("efi/mmu: " x)
+#else
+# define TRACE(x...) ;
+#endif
+
+
struct allocated_memory_region {
allocated_memory_region *next;
uint64_t vaddr;
@@ -41,8 +49,12 @@ static allocated_memory_region *allocated_memory_regions =
NULL;
extern "C" uint64_t
mmu_allocate_page()
{
+ TRACE("%s: called\n", __func__);
+
efi_physical_addr addr;
- efi_status s = kBootServices->AllocatePages(AllocateAnyPages,
EfiLoaderData, 1, &addr);
+ efi_status s = kBootServices->AllocatePages(AllocateAnyPages,
+ EfiLoaderData, 1, &addr);
+
if (s != EFI_SUCCESS)
panic("Unabled to allocate memory: %li", s);
@@ -53,6 +65,8 @@ mmu_allocate_page()
extern "C" addr_t
get_next_virtual_address(size_t size)
{
+ TRACE("%s: called. size: %" B_PRIuSIZE "\n", __func__, size);
+
addr_t address = sNextVirtualAddress;
sNextVirtualAddress += ROUNDUP(size, B_PAGE_SIZE);
return address;
@@ -62,6 +76,8 @@ get_next_virtual_address(size_t size)
extern "C" addr_t
get_current_virtual_address()
{
+ TRACE("%s: called\n", __func__);
+
return sNextVirtualAddress;
}
@@ -76,8 +92,11 @@ get_current_virtual_address()
// addresses to kernel addresses.
extern "C" status_t
-platform_allocate_region(void **_address, size_t size, uint8 /* protection */,
bool exactAddress)
+platform_allocate_region(void **_address, size_t size, uint8 /* protection */,
+ bool exactAddress)
{
+ TRACE("%s: called\n", __func__);
+
// We don't have any control over the page tables, give up right away
if an
// exactAddress is wanted.
if (exactAddress)
@@ -131,13 +150,17 @@ platform_allocate_region(void **_address, size_t size,
uint8 /* protection */, b
extern "C" addr_t
mmu_map_physical_memory(addr_t physicalAddress, size_t size, uint32 flags)
{
+ TRACE("%s: called\n", __func__);
+
addr_t pageOffset = physicalAddress & (B_PAGE_SIZE - 1);
physicalAddress -= pageOffset;
size += pageOffset;
- if (insert_physical_allocated_range(physicalAddress, ROUNDUP(size,
B_PAGE_SIZE)) != B_OK)
+ if (insert_physical_allocated_range(physicalAddress,
+ ROUNDUP(size, B_PAGE_SIZE)) != B_OK) {
return B_NO_MEMORY;
+ }
return physicalAddress + pageOffset;
}
@@ -146,6 +169,8 @@ mmu_map_physical_memory(addr_t physicalAddress, size_t
size, uint32 flags)
extern "C" void
mmu_free(void *virtualAddress, size_t size)
{
+ TRACE("%s: called\n", __func__);
+
addr_t physicalAddress = (addr_t)virtualAddress;
addr_t pageOffset = physicalAddress & (B_PAGE_SIZE - 1);
@@ -154,7 +179,8 @@ mmu_free(void *virtualAddress, size_t size)
size_t aligned_size = ROUNDUP(size, B_PAGE_SIZE);
- for (allocated_memory_region *region = allocated_memory_regions;
region; region = region->next) {
+ for (allocated_memory_region *region = allocated_memory_regions; region;
+ region = region->next) {
if (region->paddr == physicalAddress && region->size ==
aligned_size) {
region->released = true;
return;
@@ -166,7 +192,10 @@ mmu_free(void *virtualAddress, size_t size)
static allocated_memory_region *
get_region(void *address, size_t size)
{
- for (allocated_memory_region *region = allocated_memory_regions;
region; region = region->next) {
+ TRACE("%s: called\n", __func__);
+
+ for (allocated_memory_region *region = allocated_memory_regions; region;
+ region = region->next) {
if (region->paddr == (uint64_t)address && region->size == size)
{
return region;
}
@@ -176,19 +205,23 @@ get_region(void *address, size_t size)
static void
-convert_physical_ranges() {
+convert_physical_ranges()
+{
+ TRACE("%s: called\n", __func__);
+
addr_range *range = gKernelArgs.physical_allocated_range;
uint32 num_ranges = gKernelArgs.num_physical_allocated_ranges;
for (uint32 i = 0; i < num_ranges; ++i) {
- allocated_memory_region *region = new(std::nothrow)
allocated_memory_region;
+ allocated_memory_region *region
+ = new(std::nothrow) allocated_memory_region;
if (!region)
panic("Couldn't add allocated region");
// Addresses above 512GB not supported.
- // Memory map regions above 512GB can be ignored, but if EFI
returns pages above
- // that there's nothing that can be done to fix it.
+ // Memory map regions above 512GB can be ignored, but if EFI
returns
+ // pages above that there's nothing that can be done to fix it.
if (range[i].start + range[i].size > (512ull * 1024 * 1024 *
1024))
panic("Can't currently support more than 512GB of
RAM!");
@@ -208,14 +241,18 @@ convert_physical_ranges() {
extern "C" status_t
-platform_bootloader_address_to_kernel_address(void *address, uint64_t *_result)
+platform_bootloader_address_to_kernel_address(void *address,
+ uint64_t *_result)
{
+ TRACE("%s: called\n", __func__);
+
// Convert any physical ranges prior to looking up address
convert_physical_ranges();
uint64_t addr = (uint64_t)address;
- for (allocated_memory_region *region = allocated_memory_regions;
region; region = region->next) {
+ for (allocated_memory_region *region = allocated_memory_regions; region;
+ region = region->next) {
if (region->paddr <= addr && addr < region->paddr +
region->size) {
// Lazily allocate virtual memory.
if (region->vaddr == 0) {
@@ -235,6 +272,8 @@ platform_bootloader_address_to_kernel_address(void
*address, uint64_t *_result)
extern "C" status_t
platform_kernel_address_to_bootloader_address(uint64_t address, void **_result)
{
+ TRACE("%s: called\n", __func__);
+
for (allocated_memory_region *region = allocated_memory_regions;
region; region = region->next) {
if (region->vaddr != 0 && region->vaddr <= address && address <
region->vaddr + region->size) {
*_result = (void *)(region->paddr + (address -
region->vaddr));
@@ -251,7 +290,9 @@ platform_kernel_address_to_bootloader_address(uint64_t
address, void **_result)
extern "C" status_t
platform_free_region(void *address, size_t size)
{
- //dprintf("Release region %p %lu\n", address, size);
+ TRACE("%s: called to release region %p (%" B_PRIuSIZE ")\n", __func__,
+ address, size);
+
allocated_memory_region *region = get_region(address, size);
if (!region)
panic("Unknown region??");
############################################################################
Revision: hrev54448
Commit: a704a197f547ce3149b6ab5414836061e7150ff0
URL: https://git.haiku-os.org/haiku/commit/?id=a704a197f547
Author: Alexander von Gluck IV <kallisti5@xxxxxxxxxxx>
Date: Mon Jul 20 19:37:25 2020 UTC
Committer: Alex von Gluck IV <kallisti5@xxxxxxxxxxx>
Commit-Date: Tue Jul 21 12:49:44 2020 UTC
efi/devices: Skip qemu flash device for now due to crash
* An upstream bug exists which results in the tianocore
bios crashing when attempting to read from qemu's
(unconfigured, but present) flash device.
Change-Id: Ie9f02a290abc29cce3a5e279382750c0b14164dc
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3049
Reviewed-by: Adrien Destugues <pulkomandy@xxxxxxxxx>
----------------------------------------------------------------------------
diff --git a/src/system/boot/platform/efi/devices.cpp
b/src/system/boot/platform/efi/devices.cpp
index 17cd4a9c14..690a6a7858 100644
--- a/src/system/boot/platform/efi/devices.cpp
+++ b/src/system/boot/platform/efi/devices.cpp
@@ -155,6 +155,13 @@ platform_add_boot_device(struct stage2_args *args,
NodeList *devicesList)
if (!blockIo->Media->MediaPresent ||
blockIo->Media->LogicalPartition)
continue;
+ // The qemu flash device with a 256K block sizes sometime show
up
+ // in edk2. If flash is unconfigured, bad things happen on arm.
+ // edk2 bug: https://bugzilla.tianocore.org/show_bug.cgi?id=2856
+ // We're not ready for flash devices in efi, so skip anything
odd.
+ if (blockIo->Media->BlockSize > 8192)
+ continue;
+
EfiDevice *device = new(std::nothrow)EfiDevice(blockIo);
if (device == NULL)
panic("Can't allocate memory for block devices!");