mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:42:44 +00:00 
			
		
		
		
	 1682f0b760
			
		
	
	
		1682f0b760
		
	
	
	
	
		
			
			SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
		
			
				
	
	
		
			110 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			110 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Liav A. <liavalb@hotmail.co.il>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #include <AK/Format.h>
 | |
| #include <AK/Singleton.h>
 | |
| #include <AK/StringView.h>
 | |
| #include <AK/Types.h>
 | |
| #include <Kernel/Arch/PC/BIOS.h>
 | |
| #include <Kernel/DMI.h>
 | |
| #include <Kernel/StdLib.h>
 | |
| #include <Kernel/VM/MappedROM.h>
 | |
| #include <Kernel/VM/TypedMapping.h>
 | |
| 
 | |
| namespace Kernel {
 | |
| 
 | |
| #define SMBIOS_BASE_SEARCH_ADDR 0xf0000
 | |
| #define SMBIOS_END_SEARCH_ADDR 0xfffff
 | |
| #define SMBIOS_SEARCH_AREA_SIZE (SMBIOS_END_SEARCH_ADDR - SMBIOS_BASE_SEARCH_ADDR)
 | |
| 
 | |
| AK::Singleton<DMIExpose> s_the;
 | |
| 
 | |
| UNMAP_AFTER_INIT void DMIExpose::set_64_bit_entry_initialization_values()
 | |
| {
 | |
|     dbgln("DMIExpose: SMBIOS 64bit Entry point @ {}", m_entry_point);
 | |
|     auto smbios_entry = map_typed<SMBIOS::EntryPoint64bit>(m_entry_point, SMBIOS_SEARCH_AREA_SIZE);
 | |
|     m_structure_table = PhysicalAddress(smbios_entry.ptr()->table_ptr);
 | |
|     m_entry_point_length = smbios_entry.ptr()->length;
 | |
|     m_structure_table_length = smbios_entry.ptr()->table_maximum_size;
 | |
| }
 | |
| 
 | |
| UNMAP_AFTER_INIT void DMIExpose::set_32_bit_entry_initialization_values()
 | |
| {
 | |
|     dbgln("DMIExpose: SMBIOS 32bit Entry point @ {}", m_entry_point);
 | |
|     auto smbios_entry = map_typed<SMBIOS::EntryPoint32bit>(m_entry_point, SMBIOS_SEARCH_AREA_SIZE);
 | |
|     m_structure_table = PhysicalAddress(smbios_entry.ptr()->legacy_structure.smbios_table_ptr);
 | |
|     m_entry_point_length = smbios_entry.ptr()->length;
 | |
|     m_structure_table_length = smbios_entry.ptr()->legacy_structure.smboios_table_length;
 | |
| }
 | |
| 
 | |
| UNMAP_AFTER_INIT void DMIExpose::initialize()
 | |
| {
 | |
|     s_the.ensure_instance();
 | |
| }
 | |
| 
 | |
| DMIExpose& DMIExpose::the()
 | |
| {
 | |
|     return *s_the;
 | |
| }
 | |
| 
 | |
| size_t DMIExpose::entry_point_length() const
 | |
| {
 | |
|     return m_entry_point_length;
 | |
| }
 | |
| size_t DMIExpose::structure_table_length() const
 | |
| {
 | |
|     return m_structure_table_length;
 | |
| }
 | |
| 
 | |
| UNMAP_AFTER_INIT void DMIExpose::initialize_exposer()
 | |
| {
 | |
|     VERIFY(!(m_entry_point.is_null()));
 | |
|     if (m_using_64bit_entry_point) {
 | |
|         set_64_bit_entry_initialization_values();
 | |
|     } else {
 | |
|         set_32_bit_entry_initialization_values();
 | |
|     }
 | |
|     dbgln("DMIExpose: Data table @ {}", m_structure_table);
 | |
| }
 | |
| 
 | |
| OwnPtr<KBuffer> DMIExpose::entry_point() const
 | |
| {
 | |
|     auto dmi_blob = map_typed<u8>((m_entry_point), m_entry_point_length);
 | |
|     return KBuffer::try_create_with_bytes(Span<u8> { dmi_blob.ptr(), m_entry_point_length });
 | |
| }
 | |
| OwnPtr<KBuffer> DMIExpose::structure_table() const
 | |
| {
 | |
|     auto dmi_blob = map_typed<u8>(m_structure_table, m_structure_table_length);
 | |
|     return KBuffer::try_create_with_bytes(Span<u8> { dmi_blob.ptr(), m_structure_table_length });
 | |
| }
 | |
| 
 | |
| UNMAP_AFTER_INIT DMIExpose::DMIExpose()
 | |
| {
 | |
|     auto entry_32bit = find_entry32bit_point();
 | |
|     m_entry_point = entry_32bit.value();
 | |
| 
 | |
|     auto entry_64bit = find_entry64bit_point();
 | |
|     if (entry_64bit.has_value()) {
 | |
|         m_entry_point = entry_64bit.value();
 | |
|         m_using_64bit_entry_point = true;
 | |
|     }
 | |
|     if (m_entry_point.is_null())
 | |
|         return;
 | |
|     m_available = true;
 | |
|     initialize_exposer();
 | |
| }
 | |
| 
 | |
| UNMAP_AFTER_INIT Optional<PhysicalAddress> DMIExpose::find_entry64bit_point()
 | |
| {
 | |
|     return map_bios().find_chunk_starting_with("_SM3_", 16);
 | |
| }
 | |
| 
 | |
| UNMAP_AFTER_INIT Optional<PhysicalAddress> DMIExpose::find_entry32bit_point()
 | |
| {
 | |
|     return map_bios().find_chunk_starting_with("_SM_", 16);
 | |
| }
 | |
| 
 | |
| }
 |