summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorRegina König2020-06-23 20:51:22 +0200
committerRegina König2020-06-23 20:51:22 +0200
commit5445614a4d3ff56d8d20811fb36a651c7b3a5d3f (patch)
tree7c3d2d6a8e736ea604058640db3503276690361e /documentation
parentcreated new directory for UEFI documentation (diff)
downloadmemtest86-5445614a4d3ff56d8d20811fb36a651c7b3a5d3f.tar.gz
memtest86-5445614a4d3ff56d8d20811fb36a651c7b3a5d3f.tar.xz
memtest86-5445614a4d3ff56d8d20811fb36a651c7b3a5d3f.zip
created new directory for general information
Diffstat (limited to 'documentation')
-rw-r--r--documentation/general/APIC14
-rw-r--r--documentation/general/ATA_ATAPI9
-rw-r--r--documentation/general/MMX9
-rw-r--r--documentation/general/PAE11
-rw-r--r--documentation/general/SSE0
5 files changed, 43 insertions, 0 deletions
diff --git a/documentation/general/APIC b/documentation/general/APIC
new file mode 100644
index 0000000..83384b7
--- /dev/null
+++ b/documentation/general/APIC
@@ -0,0 +1,14 @@
+APIC - Advanced Programmable Interrupt Controller (Wikipedia)
+
+Particularly enabling the construction of multiprocessor systems.
+One of several architectural designs intended to solve interrupt routing efficiency issues in multiprocessor computer systems.
+
+Split architecture design: local component (LAPIC) and optional I/O APIC on a system bus.
+
+Intel: One LAPIC in each CPU and typically one I/O APIC for each peripheral bus in the system.
+
+INTEGRATED LOCAL APICS
+-----------------------
+Manage all external interrupts for some specific processor in an SMP system.
+In addition, able to accept and generate inter-processur interrupts (IPIs) between LAPICS.
+
diff --git a/documentation/general/ATA_ATAPI b/documentation/general/ATA_ATAPI
new file mode 100644
index 0000000..6ec6e68
--- /dev/null
+++ b/documentation/general/ATA_ATAPI
@@ -0,0 +1,9 @@
+ATA - AT Attachment
+--------------------
+
+standard for parallel data transfer between hard disc storages and the corresponding interface of a computer.
+
+
+ATAPI - AT Attachment Packet Interface
+---------------------------------------
+uses this interface and expands the protocol st it can transport SCSI-pakets. Additionally supports
diff --git a/documentation/general/MMX b/documentation/general/MMX
new file mode 100644
index 0000000..14a8a89
--- /dev/null
+++ b/documentation/general/MMX
@@ -0,0 +1,9 @@
+MMX is a single instruction, multiple data (SIMD) instruction set designed by Intel. (Wikipedia)
+
+Defines eight registers, MM0 to MM7 and operations that operate on them. Each register: 64 bits wide and can hold either 64-bit integers
+or multiple smaller integers in a packed format.
+
+MMX provides only integer operations.
+To avoid compatibility problems with the context switch mechanisms in existing operating systems, the MMX registers are aliases for the existing x87 FPU registers, which context switches would already save and restore. Unlike the x87 registers, which behave like a stack, the MMX registers are each directly addressable (random access).
+
+Any operation involving the floating point stack might also affect the MMX registers and vice versa, so this aliasing makes it difficult to work with floating point and SIMD operations in the same application.[10] To maximize performance, programmers often used the processor exclusively in one mode or the other, deferring the relatively slow switch between them as long as possible.
diff --git a/documentation/general/PAE b/documentation/general/PAE
new file mode 100644
index 0000000..9661fc9
--- /dev/null
+++ b/documentation/general/PAE
@@ -0,0 +1,11 @@
+PAE - Physical Address Extension (Wikipedia)
+---------------------------------------------
+Memory management feature for the x86 architecture,
+
+Page-table hierarchy of three levels (instead of two), with table entries of 64 bits instead of 32,
+allowing CPUs to directly access a physical address space larger than 4 gigabytes.
+
+Page-table structure used by x86-64 CPUs when operating in long mode firther extends page table hierarchy to
+four levels, extending the virtual address space and uses additional physical address bits at all levels of the page table, extending the physical address space. Also uses the topmost bit of 64bit page table entry as a no-executive or "NX" bit, indicating that code cannot be executed from the associated page.
+
+With PAE, the page table entry of the x86 architecture is enlarged from 32 to 64 bits. This allows more room for the physical page address, or "page frame number" field, in the page table entry. In the initial implementations of PAE the page frame number field was expanded from 20 to 24 bits. The size of the "byte offset" from the address being translated is still 12 bits, so total physical address size increases from 32 bits to 36 bits (i.e. from 20+12 to 24+12). This increased the physical memory that is theoretically addressable by the CPU from 4 GB to 64 GB.
diff --git a/documentation/general/SSE b/documentation/general/SSE
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/documentation/general/SSE