]> git.codelabs.ch Git - muen/mugenhwcfg.git/summary
 
descriptionMuen hardware config generator
ownerReto Buerki
last changeMon, 18 Oct 2021 10:14:30 +0000 (12:14 +0200)
readme

Mugenhwcfg

Overview

mugenhwcfg is a Python tool developed to support the Muen Project. It retrieves hardware information from a running Linux system and produces a Muen hardware configuration file in XML format.

Requirements

mugenhwcfg requires Python 3. It also requires iasl (part of the acpica-tools package) and cpuid to be installed:

$ sudo apt-get install acpica-tools cpuid

Optionally, mugenhwcfg also uses the Python Package lxml to format the generated XML file. You can get it (if not yet installed) with either:

$ sudo apt-get install python3-lxml

or

$ sudo pip install lxml

Installing mugenhwcfg

mugenhwcfg can be obtained from the repository with the command:

$ git clone --recursive https://git.codelabs.ch/git/muen/mugenhwcfg.git

This clones all submodules required by the tool as well as the source files.

Running mugenhwcfg

After installation, mugenhwcfg can be run with the following commands:

$ sudo modprobe msr
$ cd mugenhwcfg
$ sudo ./mugenhwcfg.py

Root user permissions are necessary to allow mugenhwcfg to examine system data.

Output

After running the tool, the output XML file will be produced in the tool directory and will be named output.xml.

Any errors encountered by the tool will (by default) prevent the output file from being generated. The tool can attempt to generate an output file anyway (for manual editing) using the -f / --force argument.

Updating

As the tool relies on external files (such as the pci.ids repository), some of these files might need to be updated to retrieve accurate information. You can utilise the -u / --update argument to download and update these files automatically.

Optional Arguments

More about mugenhwcfg

How it works

mugenhwcfg scans Linux system files (/sys, /proc, /dev) for processor, memory and device information needed by the Muen kernel. It then fills up PyXB Python objects with the information and creates an XML file.

Use of PyXB Library

mugenhwcfg utilises the PyXB package to generate a Python binding file from a hardware configuration schema file which should be included with the tool distribution at /schema/hardware_config.xsd. This generation happens the first time the tool is run, at the location /generated/hardware_config.py. This binding file is then used to create and fill objects that are later converted to XML in the output.

The PyXB package is included as a submodule in the mugenhwcfg repository at: /contrib/pyxb

Use of pci.ids

To decode device names, mugenhwcfg parses the pci.ids file in /data/pci.ids. pci.ids is a repository of PCI identification numbers maintained by the good people here.

Running Tests

The mugenhwcfg tests require the Python package pytest:

$ sudo apt-get install python3-pytest

or

$ sudo pip install pytest

After installing the required dependencies, the tests can be run with:

$ py.test-3

To produce a coverage report, execute the following commands:

$ sudo apt-get install python3-pytest-cov
$ py.test-3 --cov=src

Append the --cov-report html option if a html report instead of terminal output is desired.

Additional information on generated hardware file

mugenhwcfg alters the following in the XML output hardware file to match the requirements of the Muen Kernel:

Memory
Devices (PCI)
Devices (Serial)

Contact

You can drop an email to the Muen development team's mailing list at

muen-dev@googlegroups.com

or contact the author (Chen Chin Jieh) directly at

chinjieh@gmail.com

Acknowledgements

Big thanks to Adrian and Reto for their unending guidance and advice!

shortlog
2021-10-18 Adrian-Ken... Update pci.ids to version 2021.10.18 master v0.6
2019-12-02 Adrian-Ken... Switch to MCFG table to gather PCI MMCONF address
2019-12-02 Adrian-Ken... Fix pep8 W605 warnings
2019-12-02 Adrian-Ken... Drop unnecessary IOMEM-related constants & files
2019-12-02 Adrian-Ken... Parse MCFG table when creating hardware spec
2019-12-02 Adrian-Ken... Extract PCI Config Space address from MCFG table
2019-12-02 Adrian-Ken... Implement PCI MMCONF extraction from MCFG table
2019-11-29 Adrian-Ken... Add MCFG ACPI table test data
2019-11-22 Adrian-Ken... Add source ID to I/O APIC devices
2019-11-21 Adrian-Ken... Fix pep8 E722 errors regarding except
2019-11-21 Adrian-Ken... Collect I/O APIC source ID information
2019-11-21 Adrian-Ken... Implement DMAR I/O APIC info parsing
2019-11-21 Adrian-Ken... Also extract enumeration ID in pci_dev regex
2019-11-21 Adrian-Ken... Rename rmrr_dev regular expression to pci_dev
2019-11-19 Adrian-Ken... Extract I/O APIC ID from MADT
2018-07-19 Reto BuerkiCollect APIC IDs in processor creator
...
tags
7 months ago v0.7.1 Mugenhwcfg version 0.7.1
10 months ago v0.7 Mugenhwcfg version 0.7
23 months ago v0.6 Mugenhwcfg version 0.6
6 years ago PyXB-1.2.6 PyXB release 1.2.6
7 years ago PyXB-1.2.5 PyXB release 1.2.5
7 years ago v0.5 Mugenhwcfg version 0.5
8 years ago PyXB-1.2.4
10 years ago PyXB-1.2.3
10 years ago PyXB-1.2.2
10 years ago PyXB-1.2.1
10 years ago PyXB-1.2.0
10 years ago PyXB-1.1.5
11 years ago PyXB-1.1.4
12 years ago PyXB-1.1.3
13 years ago PyXB-1.1.2
13 years ago PyXB-1.1.1
...
heads
7 months ago devel
10 months ago devel-irq-collection
23 months ago master