The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/firmware/coreboot.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 COREBOOT firmware information
    2 
    3 The device tree node to communicate the location of coreboot's memory-resident
    4 bookkeeping structures to the kernel. Since coreboot itself cannot boot a
    5 device-tree-based kernel (yet), this node needs to be inserted by a
    6 second-stage bootloader (a coreboot "payload").
    7 
    8 Required properties:
    9  - compatible: Should be "coreboot"
   10  - reg: Address and length of the following two memory regions, in order:
   11         1.) The coreboot table. This is a list of variable-sized descriptors
   12         that contain various compile- and run-time generated firmware
   13         parameters. It is identified by the magic string "LBIO" in its first
   14         four bytes.
   15         See coreboot's src/commonlib/include/commonlib/coreboot_tables.h for
   16         details.
   17         2.) The CBMEM area. This is a downward-growing memory region used by
   18         coreboot to dynamically allocate data structures that remain resident.
   19         It may or may not include the coreboot table as one of its members. It
   20         is identified by a root node descriptor with the magic number
   21         0xc0389481 that resides in the topmost 8 bytes of the area.
   22         See coreboot's src/include/imd.h for details.
   23 
   24 Example:
   25         firmware {
   26                 ranges;
   27 
   28                 coreboot {
   29                         compatible = "coreboot";
   30                         reg = <0xfdfea000 0x264>,
   31                               <0xfdfea000 0x16000>;
   32                 }
   33         };

Cache object: 61cc5ab085570005f7213a3e133ba6e4


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.