Martin L Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/70239 )
Change subject: Docs: Add page for external resources ......................................................................
Docs: Add page for external resources
This is a page to add links to other sites that have firmware related material, or other things that are of interest to the community.
Signed-off-by: Martin Roth gaumless@gmail.com Change-Id: Icf411e67bf865426b1a3b99ecbabed2302a7b738 --- A Documentation/external_docs.md M Documentation/index.md 2 files changed, 88 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/39/70239/1
diff --git a/Documentation/external_docs.md b/Documentation/external_docs.md new file mode 100644 index 0000000..40ae386 --- /dev/null +++ b/Documentation/external_docs.md @@ -0,0 +1,74 @@ +# External Resources + +## Articles + +* External Interrupts in the x86 system. + [Part1](https://habr.com/en/post/446312/) + [Part2](https://habr.com/en/post/501660/) + [Part3](https://habr.com/en/post/501912/) + + +## General Information + +* [OS Dev](https://wiki.osdev.org/Categorized_Main_Page) +* [Interface BUS](http://www.interfacebus.com/) + + +## Firmware Specifications + +* [System Management BIOS - SMBIOS](https://www.dmtf.org/standards/smbios) +* [Desktop and Mobile Architecture for System Hardware - DASH](https://www.dmtf.org/standards/dash) +* [PNP BIOS](https://www.intel.com/content/dam/support/us/en/documents/motherboards/deskt...) +* [ACPI](https://uefi.org/acpi/specs) + + +## Hardware information + +* [WikiChip](https://en.wikichip.org/wiki/WikiChip) +* [Sandpile](https://www.sandpile.org/) + + +### Hardware Specifications & Standards + +* [Bluetooth](https://www.bluetooth.com/specifications/specs/) - Bluetooth SIG +* [eMMC](https://www.jedec.org/) - JEDEC - (LOGIN REQUIRED) +* [eSPI](https://www.intel.com/content/www/us/en/download/645987/27055/espi.html) - Intel +* [I2c Spec](https://web.archive.org/web/20170704151406/https://www.nxp.com/docs/en/user-...), + [Appnote](https://www.nxp.com/docs/en/application-note/AN10216.pdf) - NXP +* [I2S](https://www.nxp.com/docs/en/user-manual/UM11732.pdf) - NXP +* [I3C](https://www.mipi.org/specifications/i3c-sensor-specification) - MIPI Alliance (LOGIN REQUIRED) +* [Memory](https://www.jedec.org/) - JEDEC - (LOGIN REQUIRED) +* [LPC](https://www.intel.com/content/dam/www/program/design/us/en/documents/low-pin...) - Intel +* [PCI / PCIe / M.2](https://pcisig.com/specifications) - PCI-SIG - (LOGIN REQUIRED) +* [Power Delivery](https://www.usb.org/documents) - USB Implementers Forum +* [SATA](https://sata-io.org/developers/purchase-specification) - SATA-IO (LOGIN REQUIRED) +* [SMBus](http://www.smbus.org/specs/) - System Management Interface Forum +* [Smart Battery](http://smartbattery.org/specs/) - Smart Battery System Implementers Forum +* [USB](https://www.usb.org/documents) - USB Implementers Forum +* [WI-FI](https://www.wi-fi.org/discover-wi-fi/specifications) - Wi-Fi Alliance + + +### Chip Vendor Documentation + +* AMD + * [Developer Guides, Manuals & ISA Documents](https://developer.amd.com/resources/developer-guides-manuals/) + * [AMD Tech Docs - Official Documentation Page](https://www.amd.com/en/support/tech-docs) +* ARM + * [Tools and Software - Specifications](https://developer.arm.com/tools-and-software/software-development-tools/spec...) +* Intel + * [Developer Zone](https://www.intel.com/content/www/us/en/developer/overview.html) + * [Resource & Documentation Center](https://www.intel.com/content/www/us/en/resources-documentation/developer.ht...) +* Rockchip + * [Open Source Wiki](https://opensource.rock-chips.com/wiki_Main_Page) + + +## Software + + * [Fiedka](https://github.com/fiedka/fiedka) - A graphical Firmware Editor + * [IOTools](https://github.com/adurbin/iotools) - Command line tools to access hardware registers + + +## Infrastructure software + +* [Kconfig](https://www.kernel.org/doc/html/latest/kbuild/kconfig-language.html) +* [GNU Make](https://www.gnu.org/software/make/manual/) diff --git a/Documentation/index.md b/Documentation/index.md index 0cb462c..45ad837 100644 --- a/Documentation/index.md +++ b/Documentation/index.md @@ -197,4 +197,5 @@ * [Boards supported in each release directory](releases/boards_supported_on_branches.md) * [Release notes](releases/index.md) * [Acronyms & Definitions](acronyms.md) +* [External Resources](external_docs.md) * [Documentation License](documentation_license.md)