Examples of AcpiRSDPInfo


Examples of org.jnode.driver.system.firmware.AcpiRSDPInfo

        });
        final Address tablePtr =
            scanner.findInt8Array(Address.fromIntZeroExtend(0xe0000), 0x1ffff, match, 0, match.length, 1);
        if (tablePtr != null) {
            final int version = getRSDTVersion(rm, tablePtr);
            return new AcpiRSDPInfo(tablePtr, version);
        } else {
            // Not an ACPI system
            return null;
        }
    }
View Full Code Here

Examples of org.jnode.driver.system.firmware.AcpiRSDPInfo

        final AcpiDevice dev = (AcpiDevice) getDevice();
        try {
            final ResourceManager rm;
            rm = InitialNaming.lookup(ResourceManager.NAME);
            mmapAcpiRegion();
            AcpiRSDPInfo acpiInfo = dev.getRsdpInfo();
            loadRootTable(rm, acpiInfo);
        } catch (NameNotFoundException ex) {
            throw new DriverException("Could not find ResourceManager", ex);
        } catch (ResourceNotFreeException ex) {
            throw new DriverException("Cannot load ACPI info", ex);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.