├── .checkpatch.conf ├── .clang-format ├── .gitignore ├── .gitmodules ├── .gitreview ├── COPYING ├── Documentation ├── AMD-S3.txt ├── CorebootBuildingGuide.tex ├── Doxyfile.coreboot ├── Doxyfile.coreboot_simple ├── Intel │ ├── Board │ │ ├── Galileo_checklist.html │ │ ├── board.html │ │ └── galileo.html │ ├── SoC │ │ ├── quark.html │ │ └── soc.html │ ├── development.html │ ├── fsp1_1.html │ └── index.html ├── Kconfig.tex ├── Makefile ├── POSTCODES ├── RFC │ ├── chip.tex │ └── config.tex ├── abi-data-consumption.txt ├── acpi │ └── gpio.md ├── beginverbatim.tex ├── build_system.md ├── cbfs.txt ├── codeflow.svg ├── core │ └── Kconfig.md ├── coreboot_logo.png ├── doxygen │ └── Doxyfile.coreboot_platform ├── endverbatim.tex ├── gcov.txt ├── gerrit_guidelines.md ├── hypertransport.svg ├── index.html ├── mainboard_io_trap_handler_sample.c ├── submodules.txt ├── technotes │ └── 2017-02-dealing-with-untrusted-input-in-smm.md └── timestamp.md ├── MAINTAINERS ├── Makefile ├── Makefile.inc ├── README ├── configs ├── a_defconfig ├── builder │ ├── config.lenovo_t420 │ ├── config.lenovo_t420s │ ├── config.lenovo_t430s │ ├── config.lenovo_t520 │ ├── config.lenovo_t530 │ ├── config.lenovo_x220 │ ├── config.lenovo_x220i │ └── config.lenovo_x230 ├── config.emulation_qemu_x86_i440fx ├── config.emulation_qemu_x86_i440fx_debug ├── config.emulation_qemu_x86_i440fx_noserial ├── config.sentinel ├── config.sentinel.for_silicon ├── r_defconfig └── x_defconfig ├── gnat.adc ├── payloads ├── Kconfig ├── Makefile.inc ├── bayou │ ├── Doxyfile │ ├── Makefile │ ├── bayou.h │ ├── bayou.ldscript │ ├── bayou.xml.example │ ├── config.c │ ├── lzma.c │ ├── lzmadecode.c │ ├── lzmadecode.h │ ├── main.c │ ├── menu.c │ ├── nrv2b.c │ ├── payload.c │ ├── self.c │ └── self.h ├── coreinfo │ ├── COPYING │ ├── Kconfig │ ├── Makefile │ ├── README │ ├── bootlog_module.c │ ├── cbfs_module.c │ ├── coreboot_module.c │ ├── coreinfo.c │ ├── coreinfo.h │ ├── cpuid.S │ ├── cpuinfo_module.c │ ├── multiboot_module.c │ ├── nvram_module.c │ ├── pci_module.c │ ├── ramdump_module.c │ └── timestamps_module.c ├── external │ ├── FILO │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── Makefile │ ├── GRUB2 │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── Makefile │ ├── Makefile.inc │ ├── Memtest86Plus │ │ └── Makefile │ ├── SeaBIOS │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── Makefile │ ├── U-Boot │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── Makefile │ ├── depthcharge │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── Makefile │ ├── iPXE │ │ ├── Kconfig │ │ └── Makefile │ ├── linux │ │ ├── Kconfig │ │ └── Kconfig.name │ ├── tianocore │ │ ├── Kconfig │ │ └── Kconfig.name │ └── tint │ │ ├── Makefile │ │ └── libpayload_tint.patch ├── libpayload │ ├── Doxyfile │ ├── Kconfig │ ├── LICENSES │ ├── LICENSE_GPL │ ├── Makefile │ ├── Makefile.inc │ ├── README │ ├── arch │ │ ├── arm │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── asmlib.h │ │ │ ├── cache.c │ │ │ ├── coreboot.c │ │ │ ├── cpu.S │ │ │ ├── dummy_media.c │ │ │ ├── eabi_compat.c │ │ │ ├── exception.c │ │ │ ├── exception_asm.S │ │ │ ├── gdb.c │ │ │ ├── head.S │ │ │ ├── libpayload.ldscript │ │ │ ├── main.c │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ ├── selfboot.c │ │ │ ├── sysinfo.c │ │ │ ├── timer.c │ │ │ ├── util.S │ │ │ └── virtual.c │ │ ├── arm64 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── cache.c │ │ │ ├── coreboot.c │ │ │ ├── cpu.S │ │ │ ├── dummy_media.c │ │ │ ├── exception.c │ │ │ ├── exception_asm.S │ │ │ ├── gdb.c │ │ │ ├── head.S │ │ │ ├── lib │ │ │ │ ├── Makefile.inc │ │ │ │ ├── cache.c │ │ │ │ ├── clock.c │ │ │ │ ├── pstate.c │ │ │ │ ├── sysctrl.c │ │ │ │ └── tlb.c │ │ │ ├── libpayload.ldscript │ │ │ ├── main.c │ │ │ ├── memcpy.S │ │ │ ├── memmove.S │ │ │ ├── memset.S │ │ │ ├── mmu.c │ │ │ ├── selfboot.c │ │ │ ├── sysinfo.c │ │ │ ├── timer.c │ │ │ ├── util.S │ │ │ └── virtual.c │ │ ├── mips │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── cache.c │ │ │ ├── coreboot.c │ │ │ ├── dummy_media.c │ │ │ ├── exception.c │ │ │ ├── exception_asm.S │ │ │ ├── gdb.c │ │ │ ├── head.S │ │ │ ├── libpayload.ldscript │ │ │ ├── main.c │ │ │ ├── selfboot.c │ │ │ ├── string.c │ │ │ ├── sysinfo.c │ │ │ ├── timer.c │ │ │ └── util.S │ │ └── x86 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── coreboot.c │ │ │ ├── exception.c │ │ │ ├── exception_asm.S │ │ │ ├── exec.S │ │ │ ├── gdb.c │ │ │ ├── head.S │ │ │ ├── libpayload.ldscript │ │ │ ├── main.c │ │ │ ├── multiboot.c │ │ │ ├── rom_media.c │ │ │ ├── selfboot.c │ │ │ ├── string.c │ │ │ ├── sysinfo.c │ │ │ ├── timer.c │ │ │ ├── util.S │ │ │ └── virtual.c │ ├── bin │ │ ├── lp.functions │ │ ├── lpas │ │ └── lpgcc │ ├── configs │ │ ├── config.arm64-generic │ │ ├── config.gru │ │ ├── config.nyan │ │ ├── config.oak │ │ ├── config.purin │ │ ├── config.veyron │ │ ├── defconfig │ │ ├── defconfig-arm │ │ ├── defconfig-mips │ │ └── defconfig-tinycurses │ ├── crypto │ │ ├── Makefile.inc │ │ └── sha1.c │ ├── curses │ │ ├── Makefile.inc │ │ ├── PDCurses │ │ │ ├── HISTORY │ │ │ ├── IMPLEMNT │ │ │ ├── Makefile.in │ │ │ ├── PDCurses.spec │ │ │ ├── README │ │ │ ├── aclocal.m4 │ │ │ ├── config.h.in │ │ │ ├── configure.ac │ │ │ ├── curses.h │ │ │ ├── curspriv.h │ │ │ ├── demos │ │ │ │ ├── README │ │ │ │ ├── firework.c │ │ │ │ ├── newdemo.c │ │ │ │ ├── ptest.c │ │ │ │ ├── rain.c │ │ │ │ ├── testcurs.c │ │ │ │ ├── tui.c │ │ │ │ ├── tui.h │ │ │ │ ├── tuidemo.c │ │ │ │ ├── worm.c │ │ │ │ └── xmas.c │ │ │ ├── doc │ │ │ │ ├── Makefile │ │ │ │ ├── intro.txt │ │ │ │ ├── manext.c │ │ │ │ ├── sdl.txt │ │ │ │ └── x11.txt │ │ │ ├── dos │ │ │ │ ├── README │ │ │ │ ├── bccdos.lrf │ │ │ │ ├── bccdos.mak │ │ │ │ ├── gccdos.mak │ │ │ │ ├── mscdos.lrf │ │ │ │ ├── mscdos.mak │ │ │ │ ├── pdcclip.c │ │ │ │ ├── pdcdisp.c │ │ │ │ ├── pdcdos.h │ │ │ │ ├── pdcgetsc.c │ │ │ │ ├── pdckbd.c │ │ │ │ ├── pdcscrn.c │ │ │ │ ├── pdcsetsc.c │ │ │ │ ├── pdcutil.c │ │ │ │ ├── wccdos16.mak │ │ │ │ └── wccdos4g.mak │ │ │ ├── exp-base.def │ │ │ ├── exp-wide.def │ │ │ ├── install-sh │ │ │ ├── libobjs.mif │ │ │ ├── makedist.mif │ │ │ ├── os2 │ │ │ │ ├── README │ │ │ │ ├── bccos2.mak │ │ │ │ ├── gccos2.mak │ │ │ │ ├── iccos2.lrf │ │ │ │ ├── iccos2.mak │ │ │ │ ├── pdcclip.c │ │ │ │ ├── pdcdisp.c │ │ │ │ ├── pdcgetsc.c │ │ │ │ ├── pdckbd.c │ │ │ │ ├── pdcos2.h │ │ │ │ ├── pdcscrn.c │ │ │ │ ├── pdcsetsc.c │ │ │ │ ├── pdcutil.c │ │ │ │ └── wccos2.mak │ │ │ ├── panel.h │ │ │ ├── pdcurses │ │ │ │ ├── README │ │ │ │ ├── addch.c │ │ │ │ ├── addchstr.c │ │ │ │ ├── addstr.c │ │ │ │ ├── attr.c │ │ │ │ ├── beep.c │ │ │ │ ├── bkgd.c │ │ │ │ ├── border.c │ │ │ │ ├── clear.c │ │ │ │ ├── color.c │ │ │ │ ├── debug.c │ │ │ │ ├── delch.c │ │ │ │ ├── deleteln.c │ │ │ │ ├── deprec.c │ │ │ │ ├── getch.c │ │ │ │ ├── getstr.c │ │ │ │ ├── getyx.c │ │ │ │ ├── inch.c │ │ │ │ ├── inchstr.c │ │ │ │ ├── initscr.c │ │ │ │ ├── inopts.c │ │ │ │ ├── insch.c │ │ │ │ ├── insstr.c │ │ │ │ ├── instr.c │ │ │ │ ├── kernel.c │ │ │ │ ├── keyname.c │ │ │ │ ├── mouse.c │ │ │ │ ├── move.c │ │ │ │ ├── outopts.c │ │ │ │ ├── overlay.c │ │ │ │ ├── pad.c │ │ │ │ ├── panel.c │ │ │ │ ├── printw.c │ │ │ │ ├── refresh.c │ │ │ │ ├── scanw.c │ │ │ │ ├── scr_dump.c │ │ │ │ ├── scroll.c │ │ │ │ ├── slk.c │ │ │ │ ├── termattr.c │ │ │ │ ├── terminfo.c │ │ │ │ ├── touch.c │ │ │ │ ├── util.c │ │ │ │ └── window.c │ │ │ ├── sdl1 │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.mng │ │ │ │ ├── README │ │ │ │ ├── deffont.h │ │ │ │ ├── deficon.h │ │ │ │ ├── pdcclip.c │ │ │ │ ├── pdcdisp.c │ │ │ │ ├── pdcgetsc.c │ │ │ │ ├── pdckbd.c │ │ │ │ ├── pdcscrn.c │ │ │ │ ├── pdcsdl.h │ │ │ │ ├── pdcsetsc.c │ │ │ │ ├── pdcutil.c │ │ │ │ └── sdltest.c │ │ │ ├── term.h │ │ │ ├── version.mif │ │ │ ├── watcom.mif │ │ │ ├── win32 │ │ │ │ ├── README │ │ │ │ ├── bccwin32.mak │ │ │ │ ├── dmcwin32.mak │ │ │ │ ├── gccwin32.mak │ │ │ │ ├── lccwin32.mak │ │ │ │ ├── mingwin32.mak │ │ │ │ ├── pdcclip.c │ │ │ │ ├── pdcdisp.c │ │ │ │ ├── pdcgetsc.c │ │ │ │ ├── pdckbd.c │ │ │ │ ├── pdcscrn.c │ │ │ │ ├── pdcsetsc.c │ │ │ │ ├── pdcurses.ico │ │ │ │ ├── pdcurses.rc │ │ │ │ ├── pdcutil.c │ │ │ │ ├── pdcwin.h │ │ │ │ ├── vcwin32.mak │ │ │ │ └── wccwin32.mak │ │ │ └── x11 │ │ │ │ ├── Makefile.aix.in │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── ScrollBox.c │ │ │ │ ├── ScrollBox.h │ │ │ │ ├── ScrollBoxP.h │ │ │ │ ├── big_icon.xbm │ │ │ │ ├── compose.h │ │ │ │ ├── little_icon.xbm │ │ │ │ ├── ncurses_cfg.h │ │ │ │ ├── pdcclip.c │ │ │ │ ├── pdcdisp.c │ │ │ │ ├── pdcgetsc.c │ │ │ │ ├── pdckbd.c │ │ │ │ ├── pdcscrn.c │ │ │ │ ├── pdcsetsc.c │ │ │ │ ├── pdcutil.c │ │ │ │ ├── pdcx11.c │ │ │ │ ├── pdcx11.h │ │ │ │ ├── sb.c │ │ │ │ ├── x11.c │ │ │ │ └── xcurses-config.in │ │ ├── colors.c │ │ ├── curses.h │ │ ├── curses.priv.h │ │ ├── form │ │ │ ├── Makefile.in │ │ │ ├── READ.ME │ │ │ ├── f_trace.c │ │ │ ├── fld_arg.c │ │ │ ├── fld_attr.c │ │ │ ├── fld_current.c │ │ │ ├── fld_def.c │ │ │ ├── fld_dup.c │ │ │ ├── fld_ftchoice.c │ │ │ ├── fld_ftlink.c │ │ │ ├── fld_info.c │ │ │ ├── fld_just.c │ │ │ ├── fld_link.c │ │ │ ├── fld_max.c │ │ │ ├── fld_move.c │ │ │ ├── fld_newftyp.c │ │ │ ├── fld_opts.c │ │ │ ├── fld_pad.c │ │ │ ├── fld_page.c │ │ │ ├── fld_stat.c │ │ │ ├── fld_type.c │ │ │ ├── fld_user.c │ │ │ ├── form.h │ │ │ ├── form.priv.h │ │ │ ├── frm_cursor.c │ │ │ ├── frm_data.c │ │ │ ├── frm_def.c │ │ │ ├── frm_driver.c │ │ │ ├── frm_hook.c │ │ │ ├── frm_opts.c │ │ │ ├── frm_page.c │ │ │ ├── frm_post.c │ │ │ ├── frm_req_name.c │ │ │ ├── frm_scale.c │ │ │ ├── frm_sub.c │ │ │ ├── frm_user.c │ │ │ ├── frm_win.c │ │ │ ├── fty_alnum.c │ │ │ ├── fty_alpha.c │ │ │ ├── fty_enum.c │ │ │ ├── fty_generic.c │ │ │ ├── fty_int.c │ │ │ ├── fty_ipv4.c │ │ │ ├── fty_num.c │ │ │ ├── fty_regex.c │ │ │ ├── headers │ │ │ ├── llib-lform │ │ │ ├── llib-lformt │ │ │ ├── llib-lformtw │ │ │ ├── llib-lformw │ │ │ └── modules │ │ ├── keyboard.c │ │ ├── local.h │ │ ├── menu │ │ │ ├── Makefile.in │ │ │ ├── READ.ME │ │ │ ├── eti.h │ │ │ ├── headers │ │ │ ├── llib-lmenu │ │ │ ├── llib-lmenut │ │ │ ├── llib-lmenutw │ │ │ ├── llib-lmenuw │ │ │ ├── m_attribs.c │ │ │ ├── m_cursor.c │ │ │ ├── m_driver.c │ │ │ ├── m_format.c │ │ │ ├── m_global.c │ │ │ ├── m_hook.c │ │ │ ├── m_item_cur.c │ │ │ ├── m_item_nam.c │ │ │ ├── m_item_new.c │ │ │ ├── m_item_opt.c │ │ │ ├── m_item_top.c │ │ │ ├── m_item_use.c │ │ │ ├── m_item_val.c │ │ │ ├── m_item_vis.c │ │ │ ├── m_items.c │ │ │ ├── m_new.c │ │ │ ├── m_opts.c │ │ │ ├── m_pad.c │ │ │ ├── m_pattern.c │ │ │ ├── m_post.c │ │ │ ├── m_req_name.c │ │ │ ├── m_scale.c │ │ │ ├── m_spacing.c │ │ │ ├── m_sub.c │ │ │ ├── m_trace.c │ │ │ ├── m_userptr.c │ │ │ ├── m_win.c │ │ │ ├── menu.h │ │ │ ├── menu.priv.h │ │ │ ├── mf_common.h │ │ │ └── modules │ │ ├── pdcurses-backend │ │ │ ├── config.h │ │ │ ├── lppdc.h │ │ │ ├── nc_alloc.h │ │ │ ├── ncurses_cfg.h │ │ │ ├── pdcdisp.c │ │ │ ├── pdcgetsc.c │ │ │ ├── pdckbd.c │ │ │ ├── pdcscrn.c │ │ │ ├── pdcsetsc.c │ │ │ └── pdcutil.c │ │ └── tinycurses.c │ ├── drivers │ │ ├── Makefile.inc │ │ ├── cbmem_console.c │ │ ├── hid.c │ │ ├── keyboard.c │ │ ├── nvram.c │ │ ├── options.c │ │ ├── pci.c │ │ ├── serial │ │ │ ├── 8250.c │ │ │ ├── bg4cd.c │ │ │ ├── ipq40xx.c │ │ │ ├── ipq806x.c │ │ │ ├── s5p.c │ │ │ └── serial.c │ │ ├── speaker.c │ │ ├── storage │ │ │ ├── Kconfig │ │ │ ├── ahci.c │ │ │ ├── ahci_ata.c │ │ │ ├── ahci_atapi.c │ │ │ ├── ahci_common.c │ │ │ ├── ahci_private.h │ │ │ ├── ata.c │ │ │ ├── atapi.c │ │ │ └── storage.c │ │ ├── timer │ │ │ ├── Kconfig │ │ │ ├── armada38x.c │ │ │ ├── generic.c │ │ │ ├── img_pistachio.c │ │ │ ├── mvmap2315.c │ │ │ └── rdtsc.c │ │ ├── udc │ │ │ ├── chipidea.c │ │ │ ├── chipidea_priv.h │ │ │ ├── dwc2.c │ │ │ ├── dwc2_priv.h │ │ │ └── udc.c │ │ ├── usb │ │ │ ├── Kconfig │ │ │ ├── TODO │ │ │ ├── dwc2.c │ │ │ ├── dwc2.h │ │ │ ├── dwc2_private.h │ │ │ ├── dwc2_rh.c │ │ │ ├── ehci.c │ │ │ ├── ehci.h │ │ │ ├── ehci_private.h │ │ │ ├── ehci_rh.c │ │ │ ├── generic_hub.c │ │ │ ├── generic_hub.h │ │ │ ├── ohci.c │ │ │ ├── ohci.h │ │ │ ├── ohci_private.h │ │ │ ├── ohci_rh.c │ │ │ ├── quirks.c │ │ │ ├── uhci.c │ │ │ ├── uhci.h │ │ │ ├── uhci_private.h │ │ │ ├── uhci_rh.c │ │ │ ├── usb.c │ │ │ ├── usb_dev.c │ │ │ ├── usbhid.c │ │ │ ├── usbhub.c │ │ │ ├── usbinit.c │ │ │ ├── usbmsc.c │ │ │ ├── xhci.c │ │ │ ├── xhci.h │ │ │ ├── xhci_commands.c │ │ │ ├── xhci_debug.c │ │ │ ├── xhci_devconf.c │ │ │ ├── xhci_events.c │ │ │ ├── xhci_private.h │ │ │ └── xhci_rh.c │ │ └── video │ │ │ ├── bitmap.h │ │ │ ├── corebootfb.c │ │ │ ├── font8x16.c │ │ │ ├── font8x16.h │ │ │ ├── geodelx.c │ │ │ ├── graphics.c │ │ │ ├── vga.c │ │ │ └── video.c │ ├── gdb │ │ ├── Makefile.inc │ │ ├── commands.c │ │ ├── stub.c │ │ └── transport.c │ ├── include │ │ ├── archive.h │ │ ├── arm │ │ │ └── arch │ │ │ │ ├── asm.h │ │ │ │ ├── barrier.h │ │ │ │ ├── cache.h │ │ │ │ ├── exception.h │ │ │ │ ├── io.h │ │ │ │ ├── types.h │ │ │ │ └── virtual.h │ │ ├── arm64 │ │ │ └── arch │ │ │ │ ├── asm.h │ │ │ │ ├── barrier.h │ │ │ │ ├── cache.h │ │ │ │ ├── exception.h │ │ │ │ ├── io.h │ │ │ │ ├── lib_helpers.h │ │ │ │ ├── mmu.h │ │ │ │ ├── types.h │ │ │ │ └── virtual.h │ │ ├── arpa │ │ │ └── inet.h │ │ ├── assert.h │ │ ├── cbfs.h │ │ ├── cbfs_core.h │ │ ├── cbfs_ram.h │ │ ├── cbgfx.h │ │ ├── coreboot_tables.h │ │ ├── ctype.h │ │ ├── die.h │ │ ├── endian.h │ │ ├── errno.h │ │ ├── exception.h │ │ ├── fmap_serialized.h │ │ ├── gdb.h │ │ ├── getopt.h │ │ ├── inttypes.h │ │ ├── ipchksum.h │ │ ├── kconfig.h │ │ ├── keycodes.h │ │ ├── libpayload.h │ │ ├── limits.h │ │ ├── lz4.h │ │ ├── lzma.h │ │ ├── malloc.h │ │ ├── mips │ │ │ └── arch │ │ │ │ ├── byteorder.h │ │ │ │ ├── cache.h │ │ │ │ ├── cpu.h │ │ │ │ ├── exception.h │ │ │ │ ├── io.h │ │ │ │ ├── stdint.h │ │ │ │ ├── types.h │ │ │ │ └── virtual.h │ │ ├── multiboot_tables.h │ │ ├── panel.h │ │ ├── pci.h │ │ ├── pci │ │ │ └── pci.h │ │ ├── queue.h │ │ ├── stdarg.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── storage │ │ │ ├── ahci.h │ │ │ ├── ata.h │ │ │ ├── atapi.h │ │ │ └── storage.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── swab.h │ │ ├── sys │ │ │ └── types.h │ │ ├── sysinfo.h │ │ ├── term.h │ │ ├── time.h │ │ ├── udc │ │ │ ├── chipidea.h │ │ │ ├── dwc2_udc.h │ │ │ └── udc.h │ │ ├── unistd.h │ │ ├── usb │ │ │ ├── dwc2_registers.h │ │ │ ├── usb.h │ │ │ ├── usbdisk.h │ │ │ └── usbmsc.h │ │ ├── video_console.h │ │ └── x86 │ │ │ └── arch │ │ │ ├── barrier.h │ │ │ ├── cache.h │ │ │ ├── exception.h │ │ │ ├── io.h │ │ │ ├── msr.h │ │ │ ├── rdtsc.h │ │ │ ├── types.h │ │ │ └── virtual.h │ ├── libc │ │ ├── 64bit_div.c │ │ ├── Makefile.inc │ │ ├── args.c │ │ ├── console.c │ │ ├── coreboot.c │ │ ├── ctype.c │ │ ├── die.c │ │ ├── exec.c │ │ ├── fmap.c │ │ ├── getopt_long.c │ │ ├── hexdump.c │ │ ├── ipchecksum.c │ │ ├── lib.c │ │ ├── libgcc.c │ │ ├── malloc.c │ │ ├── memory.c │ │ ├── printf.c │ │ ├── qsort.c │ │ ├── rand.c │ │ ├── readline.c │ │ ├── string.c │ │ ├── strlcpy.c │ │ ├── sysinfo.c │ │ └── time.c │ ├── libcbfs │ │ ├── Makefile.inc │ │ ├── cbfs.c │ │ ├── cbfs_core.c │ │ └── ram_media.c │ ├── liblz4 │ │ ├── Makefile.inc │ │ ├── lz4.c.inc │ │ └── lz4_wrapper.c │ ├── liblzma │ │ ├── Makefile.inc │ │ ├── lzma.c │ │ ├── lzmadecode.c │ │ └── lzmadecode.h │ ├── libpci │ │ ├── Makefile.inc │ │ └── libpci.c │ ├── sample │ │ ├── Makefile │ │ └── hello.c │ └── tests │ │ ├── Makefile │ │ ├── cbfs-x86-test.c │ │ ├── data │ │ └── cbfs-x86.bin │ │ └── libpayload-config.h └── nvramcui │ ├── Makefile │ ├── nvramcui.c │ └── payload.sh ├── src ├── Kconfig ├── acpi │ ├── Kconfig │ ├── Makefile.inc │ ├── sata.c │ └── sata.h ├── arch │ ├── arm │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── armv4 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.S │ │ │ └── cache.c │ │ ├── armv7 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.S │ │ │ ├── bootblock_m.S │ │ │ ├── cache.c │ │ │ ├── cache_m.c │ │ │ ├── cpu.S │ │ │ ├── exception.c │ │ │ ├── exception_asm.S │ │ │ ├── exception_mr.c │ │ │ ├── mmu.c │ │ │ └── thread.c │ │ ├── asmlib.h │ │ ├── boot.c │ │ ├── clock.c │ │ ├── cpu.c │ │ ├── div0.c │ │ ├── eabi_compat.c │ │ ├── id.S │ │ ├── include │ │ │ ├── arch │ │ │ │ ├── asm.h │ │ │ │ ├── boot │ │ │ │ │ └── boot.h │ │ │ │ ├── byteorder.h │ │ │ │ ├── cbconfig.h │ │ │ │ ├── clock.h │ │ │ │ ├── early_variables.h │ │ │ │ ├── header.ld │ │ │ │ ├── hlt.h │ │ │ │ ├── memlayout.h │ │ │ │ ├── pci_ops.h │ │ │ │ └── stages.h │ │ │ ├── armv4 │ │ │ │ └── arch │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── exception.h │ │ │ │ │ ├── io.h │ │ │ │ │ └── smp │ │ │ │ │ └── spinlock.h │ │ │ ├── armv7.h │ │ │ ├── armv7 │ │ │ │ └── arch │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── exception.h │ │ │ │ │ ├── io.h │ │ │ │ │ └── types.h │ │ │ ├── clocks.h │ │ │ ├── smp │ │ │ │ └── spinlock.h │ │ │ └── stdint.h │ │ ├── libgcc │ │ │ ├── Makefile.inc │ │ │ ├── ashldi3.S │ │ │ ├── lib1funcs.S │ │ │ ├── libgcc.h │ │ │ ├── lshrdi3.S │ │ │ ├── muldi3.S │ │ │ ├── ucmpdi2.S │ │ │ ├── udivmoddi4.c │ │ │ ├── uldivmod.S │ │ │ └── umoddi3.c │ │ ├── memcpy.S │ │ ├── memmove.S │ │ ├── memset.S │ │ ├── stages.c │ │ └── tables.c │ ├── arm64 │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── arm_tf.c │ │ ├── armv8 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.S │ │ │ ├── cache.c │ │ │ ├── cache_helpers.S │ │ │ ├── cpu.S │ │ │ ├── exception.c │ │ │ ├── lib │ │ │ │ ├── Makefile.inc │ │ │ │ ├── cache.c │ │ │ │ ├── clock.c │ │ │ │ ├── pstate.c │ │ │ │ ├── sysctrl.c │ │ │ │ └── tlb.c │ │ │ └── mmu.c │ │ ├── boot.c │ │ ├── div0.c │ │ ├── eabi_compat.c │ │ ├── id.S │ │ ├── include │ │ │ ├── arch │ │ │ │ ├── asm.h │ │ │ │ ├── boot │ │ │ │ │ └── boot.h │ │ │ │ ├── byteorder.h │ │ │ │ ├── cache_helpers.h │ │ │ │ ├── cbconfig.h │ │ │ │ ├── clock.h │ │ │ │ ├── early_variables.h │ │ │ │ ├── header.ld │ │ │ │ ├── hlt.h │ │ │ │ ├── memlayout.h │ │ │ │ ├── mpidr.h │ │ │ │ ├── pci_ops.h │ │ │ │ ├── stages.h │ │ │ │ └── transition.h │ │ │ ├── arm_tf.h │ │ │ ├── arm_tf_temp.h │ │ │ ├── armv8 │ │ │ │ └── arch │ │ │ │ │ ├── barrier.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── exception.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── lib_helpers.h │ │ │ │ │ └── mmu.h │ │ │ ├── clocks.h │ │ │ ├── cpu │ │ │ │ └── cortex_a57.h │ │ │ └── stdint.h │ │ ├── memcpy.S │ │ ├── memmove.S │ │ ├── memset.S │ │ ├── stage_entry.S │ │ ├── tables.c │ │ ├── transition.c │ │ └── transition_asm.S │ ├── mips │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── ashldi3.c │ │ ├── boot.c │ │ ├── bootblock.S │ │ ├── bootblock_simple.c │ │ ├── cache.c │ │ ├── include │ │ │ ├── arch │ │ │ │ ├── bootblock_common.h │ │ │ │ ├── byteorder.h │ │ │ │ ├── cache.h │ │ │ │ ├── cbconfig.h │ │ │ │ ├── cpu.h │ │ │ │ ├── early_variables.h │ │ │ │ ├── exception.h │ │ │ │ ├── header.ld │ │ │ │ ├── hlt.h │ │ │ │ ├── io.h │ │ │ │ ├── memlayout.h │ │ │ │ ├── mmu.h │ │ │ │ ├── pci_ops.h │ │ │ │ ├── stages.h │ │ │ │ └── types.h │ │ │ └── stdint.h │ │ ├── mmu.c │ │ ├── stages.c │ │ └── tables.c │ ├── power8 │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── boot.c │ │ ├── bootblock.S │ │ ├── id.ld │ │ ├── include │ │ │ ├── arch │ │ │ │ ├── byteorder.h │ │ │ │ ├── cbconfig.h │ │ │ │ ├── cpu.h │ │ │ │ ├── early_variables.h │ │ │ │ ├── exception.h │ │ │ │ ├── header.ld │ │ │ │ ├── hlt.h │ │ │ │ ├── io.h │ │ │ │ ├── memlayout.h │ │ │ │ └── stages.h │ │ │ └── stdint.h │ │ ├── misc.c │ │ ├── prologue.inc │ │ ├── rom_media.c │ │ ├── stages.c │ │ └── tables.c │ ├── riscv │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── boot.c │ │ ├── bootblock.S │ │ ├── id.S │ │ ├── id.ld │ │ ├── include │ │ │ ├── arch │ │ │ │ ├── barrier.h │ │ │ │ ├── byteorder.h │ │ │ │ ├── cbconfig.h │ │ │ │ ├── cpu.h │ │ │ │ ├── early_variables.h │ │ │ │ ├── encoding.h │ │ │ │ ├── errno.h │ │ │ │ ├── exception.h │ │ │ │ ├── header.ld │ │ │ │ ├── hlt.h │ │ │ │ ├── io.h │ │ │ │ ├── memlayout.h │ │ │ │ ├── sbi.h │ │ │ │ └── stages.h │ │ │ ├── atomic.h │ │ │ ├── bits.h │ │ │ ├── mcall.h │ │ │ ├── stdint.h │ │ │ └── vm.h │ │ ├── mcall.c │ │ ├── misc.c │ │ ├── payload.S │ │ ├── prologue.inc │ │ ├── sbi.S │ │ ├── stages.c │ │ ├── tables.c │ │ ├── trap_handler.c │ │ ├── trap_util.S │ │ └── virtual_memory.c │ └── x86 │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── acpi.c │ │ ├── acpi │ │ ├── debug.asl │ │ ├── globutil.asl │ │ └── statdef.asl │ │ ├── acpi_device.c │ │ ├── acpi_s3.c │ │ ├── acpigen.c │ │ ├── acpigen_dsm.c │ │ ├── assembly_entry.S │ │ ├── boot.c │ │ ├── bootblock.ld │ │ ├── bootblock_crt0.S │ │ ├── bootblock_normal.c │ │ ├── bootblock_romcc.S │ │ ├── bootblock_simple.c │ │ ├── c_start.S │ │ ├── car.ld │ │ ├── cbfs_and_run.c │ │ ├── cbmem.c │ │ ├── cpu.c │ │ ├── cpu_common.c │ │ ├── crt0_romcc_epilogue.inc │ │ ├── ebda.c │ │ ├── exception.c │ │ ├── exit_car.S │ │ ├── failover.ld │ │ ├── gdt.c │ │ ├── id.S │ │ ├── id.ld │ │ ├── include │ │ ├── arch │ │ │ ├── acpi.h │ │ │ ├── acpi_device.h │ │ │ ├── acpi_ivrs.h │ │ │ ├── acpigen.h │ │ │ ├── acpigen_dsm.h │ │ │ ├── boot │ │ │ │ └── boot.h │ │ │ ├── bootblock_romcc.h │ │ │ ├── byteorder.h │ │ │ ├── cache.h │ │ │ ├── cbconfig.h │ │ │ ├── cbfs.h │ │ │ ├── cpu.h │ │ │ ├── early_variables.h │ │ │ ├── ebda.h │ │ │ ├── exception.h │ │ │ ├── header.ld │ │ │ ├── hlt.h │ │ │ ├── interrupt.h │ │ │ ├── io.h │ │ │ ├── ioapic.h │ │ │ ├── memlayout.h │ │ │ ├── pci_io_cfg.h │ │ │ ├── pci_mmio_cfg.h │ │ │ ├── pci_ops.h │ │ │ ├── pirq_routing.h │ │ │ ├── registers.h │ │ │ ├── rom_segs.h │ │ │ ├── smp │ │ │ │ ├── atomic.h │ │ │ │ ├── mpspec.h │ │ │ │ └── spinlock.h │ │ │ ├── stages.h │ │ │ └── symbols.h │ │ └── stdint.h │ │ ├── ioapic.c │ │ ├── memcpy.c │ │ ├── memlayout.ld │ │ ├── memmove.c │ │ ├── memset.c │ │ ├── mmap_boot.c │ │ ├── mpspec.c │ │ ├── pci_ops_conf1.c │ │ ├── pci_ops_mmconf.c │ │ ├── pirq_routing.c │ │ ├── postcar.c │ │ ├── postcar_loader.c │ │ ├── prologue.inc │ │ ├── rdrand.c │ │ ├── romcc_console.c │ │ ├── smbios.c │ │ ├── stages.c │ │ ├── tables.c │ │ ├── thread.c │ │ ├── thread_switch.S │ │ ├── timestamp.c │ │ ├── verstage.c │ │ ├── wakeup.S │ │ └── walkcbfs.S ├── commonlib │ ├── Makefile.inc │ ├── cbfs.c │ ├── configstring.c │ ├── fsp_relocate.c │ ├── include │ │ └── commonlib │ │ │ ├── cbfs.h │ │ │ ├── cbfs_serialized.h │ │ │ ├── cbmem_id.h │ │ │ ├── compression.h │ │ │ ├── configstring.h │ │ │ ├── coreboot_tables.h │ │ │ ├── endian.h │ │ │ ├── fmap_serialized.h │ │ │ ├── fsp.h │ │ │ ├── helpers.h │ │ │ ├── iobuf.h │ │ │ ├── loglevel.h │ │ │ ├── mem_pool.h │ │ │ ├── region.h │ │ │ ├── rmodule-defs.h │ │ │ ├── stdlib.h │ │ │ └── timestamp_serialized.h │ ├── iobuf.c │ ├── lz4.c.inc │ ├── lz4_wrapper.c │ ├── mem_pool.c │ └── region.c ├── console │ ├── Kconfig │ ├── Makefile.inc │ ├── console.c │ ├── die.c │ ├── early_print.c │ ├── hw-debug_sink.adb │ ├── hw-debug_sink.ads │ ├── init.c │ ├── post.c │ ├── printk.c │ ├── vsprintf.c │ └── vtxprintf.c ├── cpu │ ├── Kconfig │ ├── Makefile.inc │ ├── allwinner │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ └── a10 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.c │ │ │ ├── bootblock_media.c │ │ │ ├── cbmem.c │ │ │ ├── chip.h │ │ │ ├── clock.c │ │ │ ├── clock.h │ │ │ ├── cpu.c │ │ │ ├── dramc.h │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── memmap.h │ │ │ ├── monotonic_timer.c │ │ │ ├── pinmux.c │ │ │ ├── ram_segs.h │ │ │ ├── raminit.c │ │ │ ├── timer.c │ │ │ ├── timer.h │ │ │ ├── twi.c │ │ │ ├── twi.h │ │ │ ├── uart.c │ │ │ ├── uart.h │ │ │ └── uart_console.c │ ├── amd │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── agesa │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── amd_late_init.c │ │ │ ├── cache_as_ram.inc │ │ │ ├── cache_as_ram_legacy.inc │ │ │ ├── family10 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── chip_name.c │ │ │ │ └── model_10_init.c │ │ │ ├── family12 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── chip_name.c │ │ │ │ ├── fixme.c │ │ │ │ ├── model_12_init.c │ │ │ │ └── romstage.c │ │ │ ├── family14 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ │ └── cpu.asl │ │ │ │ ├── chip_name.c │ │ │ │ ├── fixme.c │ │ │ │ ├── model_14_init.c │ │ │ │ └── romstage.c │ │ │ ├── family15 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── chip_name.c │ │ │ │ ├── fixme.c │ │ │ │ ├── model_15_init.c │ │ │ │ └── romstage.c │ │ │ ├── family15rl │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ │ └── cpu.asl │ │ │ │ ├── chip_name.c │ │ │ │ ├── fixme.c │ │ │ │ ├── model_15_init.c │ │ │ │ ├── romstage.c │ │ │ │ └── udelay.c │ │ │ ├── family15tn │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ │ └── cpu.asl │ │ │ │ ├── chip_name.c │ │ │ │ ├── fixme.c │ │ │ │ ├── model_15_init.c │ │ │ │ ├── romstage.c │ │ │ │ └── udelay.c │ │ │ ├── family16kb │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ │ └── cpu.asl │ │ │ │ ├── chip_name.c │ │ │ │ ├── fixme.c │ │ │ │ ├── model_16_init.c │ │ │ │ └── romstage.c │ │ │ ├── heapmanager.c │ │ │ ├── romstage.c │ │ │ ├── s3_mtrr.c │ │ │ ├── s3_resume.c │ │ │ └── s3_resume.h │ │ ├── car │ │ │ ├── cache_as_ram.inc │ │ │ ├── disable_cache_as_ram.c │ │ │ └── post_cache_as_ram.c │ │ ├── dualcore │ │ │ ├── Makefile.inc │ │ │ ├── amd_sibling.c │ │ │ ├── dualcore.c │ │ │ └── dualcore_id.c │ │ ├── family_10h-family_15h │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── defaults.h │ │ │ ├── fidvid.c │ │ │ ├── init_cpus.c │ │ │ ├── init_cpus.h │ │ │ ├── model_10xxx_init.c │ │ │ ├── monotonic_timer.c │ │ │ ├── powernow_acpi.c │ │ │ ├── processor_name.c │ │ │ ├── ram_calc.c │ │ │ ├── ram_calc.h │ │ │ ├── tsc_freq.c │ │ │ └── update_microcode.c │ │ ├── geode_gx2 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── cache_as_ram.inc │ │ │ ├── cpubug.c │ │ │ ├── cpureginit.c │ │ │ ├── geode_gx2_init.c │ │ │ └── syspreinit.c │ │ ├── geode_lx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── cache_as_ram.inc │ │ │ ├── cpubug.c │ │ │ ├── cpureginit.c │ │ │ ├── geode_lx_init.c │ │ │ ├── msrinit.c │ │ │ └── syspreinit.c │ │ ├── microcode │ │ │ ├── Makefile.inc │ │ │ └── microcode.c │ │ ├── model_fxx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── fidvid.c │ │ │ ├── init_cpus.c │ │ │ ├── microcode_blob.c │ │ │ ├── model_fxx_init.c │ │ │ ├── model_fxx_update_microcode.c │ │ │ ├── powernow_acpi.c │ │ │ └── processor_name.c │ │ ├── mtrr │ │ │ ├── Makefile.inc │ │ │ └── amd_mtrr.c │ │ ├── pi │ │ │ ├── 00630F01 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ │ └── cpu.asl │ │ │ │ ├── chip_name.c │ │ │ │ ├── fixme.c │ │ │ │ ├── model_15_init.c │ │ │ │ └── udelay.c │ │ │ ├── 00660F01 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ │ └── cpu.asl │ │ │ │ ├── chip_name.c │ │ │ │ ├── fixme.c │ │ │ │ └── model_15_init.c │ │ │ ├── 00670F00 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ │ └── cpu.asl │ │ │ │ ├── chip_name.c │ │ │ │ ├── fixme.c │ │ │ │ └── model_15_init.c │ │ │ ├── 00730F01 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ │ └── cpu.asl │ │ │ │ ├── chip_name.c │ │ │ │ ├── fixme.c │ │ │ │ └── model_16_init.c │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── amd_late_init.c │ │ │ ├── cache_as_ram.inc │ │ │ ├── heapmanager.c │ │ │ └── spi.c │ │ ├── quadcore │ │ │ ├── Makefile.inc │ │ │ ├── amd_sibling.c │ │ │ ├── quadcore.c │ │ │ └── quadcore_id.c │ │ ├── smm │ │ │ ├── Makefile.inc │ │ │ └── smm_init.c │ │ ├── socket_754 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_939 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_940 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_AM2 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_AM2r2 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_AM3 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_ASB2 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_C32 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_F │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_FM2 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_F_1207 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_G34 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── socket_G34.c │ │ └── socket_S1G1 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ ├── armltd │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ └── cortex-a9 │ │ │ └── Kconfig │ ├── dmp │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── dmp_post_code.h │ │ └── vortex86ex │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── biosdata.S │ │ │ ├── biosdata.ld │ │ │ ├── biosdata_ex.S │ │ │ ├── biosdata_ex.ld │ │ │ └── dmp_kbd_fw_part1.inc │ ├── intel │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── car │ │ │ ├── cache_as_ram.inc │ │ │ ├── cache_as_ram_ht.inc │ │ │ ├── romstage.c │ │ │ └── romstage_legacy.c │ │ ├── common │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ └── cpu.asl │ │ │ ├── common.h │ │ │ └── common_init.c │ │ ├── ep80579 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── ep80579.c │ │ │ └── ep80579_init.c │ │ ├── fit │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── fit.S │ │ │ └── fit.ld │ │ ├── fsp_model_206ax │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ └── cpu.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── finalize.c │ │ │ ├── model_206ax.h │ │ │ └── model_206ax_init.c │ │ ├── fsp_model_406dx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ └── cpu.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── model_406dx.h │ │ │ └── model_406dx_init.c │ │ ├── haswell │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ └── cpu.asl │ │ │ ├── bootblock.c │ │ │ ├── cache_as_ram.inc │ │ │ ├── chip.h │ │ │ ├── finalize.c │ │ │ ├── haswell.h │ │ │ ├── haswell_init.c │ │ │ ├── monotonic_timer.c │ │ │ ├── romstage.c │ │ │ ├── smmrelocate.c │ │ │ ├── stage_cache.c │ │ │ └── tsc_freq.c │ │ ├── hyperthreading │ │ │ ├── Makefile.inc │ │ │ └── intel_sibling.c │ │ ├── microcode │ │ │ ├── Makefile.inc │ │ │ └── microcode.c │ │ ├── model_1067x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ └── model_1067x_init.c │ │ ├── model_106cx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_106cx_init.c │ │ ├── model_2065x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── bootblock.c │ │ │ ├── cache_as_ram.inc │ │ │ ├── chip.h │ │ │ ├── finalize.c │ │ │ ├── model_2065x.h │ │ │ ├── model_2065x_init.c │ │ │ └── tsc_freq.c │ │ ├── model_206ax │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ └── cpu.asl │ │ │ ├── bootblock.c │ │ │ ├── cache_as_ram.inc │ │ │ ├── chip.h │ │ │ ├── finalize.c │ │ │ ├── model_206ax.h │ │ │ └── model_206ax_init.c │ │ ├── model_65x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_65x_init.c │ │ ├── model_67x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_67x_init.c │ │ ├── model_68x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_68x_init.c │ │ ├── model_69x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_69x_init.c │ │ ├── model_6bx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_6bx_init.c │ │ ├── model_6dx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_6dx_init.c │ │ ├── model_6ex │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── cache_as_ram.inc │ │ │ └── model_6ex_init.c │ │ ├── model_6fx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_6fx_init.c │ │ ├── model_6xx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_6xx_init.c │ │ ├── model_f0x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_f0x_init.c │ │ ├── model_f1x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_f1x_init.c │ │ ├── model_f2x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_f2x_init.c │ │ ├── model_f3x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_f3x_init.c │ │ ├── model_f4x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── model_f4x_init.c │ │ ├── slot_1 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── l2_cache.c │ │ │ └── slot_1.c │ │ ├── slot_2 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── slot_2.c │ │ ├── smm │ │ │ └── gen1 │ │ │ │ ├── Makefile.inc │ │ │ │ ├── smi.h │ │ │ │ └── smmrelocate.c │ │ ├── socket_441 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_BGA1284 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_BGA956 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_FCBGA559 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_FC_PGA370 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_LGA1155 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_LGA771 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_LGA775 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_PGA370 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_mFCBGA479 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_mFCPGA478 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_mPGA478 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_mPGA478MN │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_mPGA479M │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_mPGA603 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_mPGA604 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_rPGA988B │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── socket_rPGA989 │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── speedstep │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ └── speedstep.c │ │ ├── thermal_monitoring │ │ │ └── thermal_monitoring.h │ │ └── turbo │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── turbo.c │ ├── qemu-power8 │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ └── qemu.c │ ├── qemu-x86 │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ └── qemu.c │ ├── ti │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ └── am335x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.c │ │ │ ├── bootblock_media.c │ │ │ ├── cbmem.c │ │ │ ├── clock.h │ │ │ ├── dmtimer.c │ │ │ ├── dmtimer.h │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── header.c │ │ │ ├── header.h │ │ │ ├── header.ld │ │ │ ├── memlayout.ld │ │ │ ├── monotonic_timer.c │ │ │ ├── nand.c │ │ │ ├── pinmux.c │ │ │ ├── pinmux.h │ │ │ ├── uart.c │ │ │ └── uart.h │ ├── via │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── c3 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── c3_init.c │ │ ├── c7 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── c7_init.c │ │ ├── car │ │ │ └── cache_as_ram.inc │ │ └── nano │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── microcode_blob.c │ │ │ ├── nano_init.c │ │ │ ├── update_ucode.c │ │ │ └── update_ucode.h │ └── x86 │ │ ├── 16bit │ │ ├── entry16.inc │ │ ├── entry16.ld │ │ ├── reset16.inc │ │ └── reset16.ld │ │ ├── 32bit │ │ └── entry32.inc │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── backup_default_smm.c │ │ ├── cache │ │ ├── Makefile.inc │ │ └── cache.c │ │ ├── car.c │ │ ├── fpu_enable.inc │ │ ├── lapic │ │ ├── Makefile.inc │ │ ├── apic_timer.c │ │ ├── boot_cpu.c │ │ ├── lapic.c │ │ ├── lapic_cpu_init.c │ │ └── secondary.S │ │ ├── mirror_payload.c │ │ ├── mp_init.c │ │ ├── mtrr │ │ ├── Makefile.inc │ │ ├── earlymtrr.c │ │ └── mtrr.c │ │ ├── name │ │ ├── Makefile.inc │ │ └── name.c │ │ ├── pae │ │ ├── Makefile.inc │ │ └── pgtbl.c │ │ ├── sipi_vector.S │ │ ├── smm │ │ ├── Makefile.inc │ │ ├── smihandler.c │ │ ├── smm.ld │ │ ├── smm_module_handler.c │ │ ├── smm_module_loader.c │ │ ├── smm_stub.S │ │ ├── smmhandler.S │ │ └── smmrelocate.S │ │ ├── sse_enable.inc │ │ └── tsc │ │ ├── Makefile.inc │ │ └── delay_tsc.c ├── device │ ├── Kconfig │ ├── Makefile.inc │ ├── azalia_device.c │ ├── cardbus_device.c │ ├── cpu_device.c │ ├── device.c │ ├── device_simple.c │ ├── device_util.c │ ├── dram │ │ ├── Makefile.inc │ │ ├── ddr2.c │ │ └── ddr3.c │ ├── hypertransport.c │ ├── i2c.c │ ├── oprom │ │ ├── Makefile.inc │ │ ├── include │ │ │ ├── io.h │ │ │ └── x86emu │ │ │ │ ├── fpu_regs.h │ │ │ │ ├── regs.h │ │ │ │ ├── types.h │ │ │ │ └── x86emu.h │ │ ├── realmode │ │ │ ├── Makefile.inc │ │ │ ├── x86.c │ │ │ ├── x86.h │ │ │ ├── x86_asm.S │ │ │ └── x86_interrupts.c │ │ ├── x86emu │ │ │ ├── LICENSE │ │ │ ├── Makefile.inc │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── decode.c │ │ │ ├── decode.h │ │ │ ├── fpu.c │ │ │ ├── fpu.h │ │ │ ├── ops.c │ │ │ ├── ops.h │ │ │ ├── ops2.c │ │ │ ├── prim_asm.h │ │ │ ├── prim_ops.c │ │ │ ├── prim_ops.h │ │ │ ├── sys.c │ │ │ └── x86emui.h │ │ └── yabel │ │ │ ├── Makefile.inc │ │ │ ├── biosemu.c │ │ │ ├── biosemu.h │ │ │ ├── compat │ │ │ ├── Makefile.inc │ │ │ ├── functions.c │ │ │ ├── of.h │ │ │ ├── rtas.h │ │ │ └── time.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── device.c │ │ │ ├── device.h │ │ │ ├── interrupt.c │ │ │ ├── interrupt.h │ │ │ ├── io.c │ │ │ ├── io.h │ │ │ ├── mem.c │ │ │ ├── mem.h │ │ │ ├── pmm.c │ │ │ ├── pmm.h │ │ │ └── vbe.c │ ├── pci_class.c │ ├── pci_device.c │ ├── pci_early.c │ ├── pci_ops.c │ ├── pci_rom.c │ ├── pciexp_device.c │ ├── pcix_device.c │ ├── pnp_device.c │ ├── root_device.c │ ├── smbus_ops.c │ └── software_i2c.c ├── drivers │ ├── ams │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ └── as3722rtc.c │ ├── aspeed │ │ ├── ast2050 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── ast2050.c │ │ └── common │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── aspeed_coreboot.h │ │ │ ├── ast_dp501.c │ │ │ ├── ast_dram_tables.h │ │ │ ├── ast_drv.h │ │ │ ├── ast_main.c │ │ │ ├── ast_post.c │ │ │ └── ast_tables.h │ ├── ati │ │ └── ragexl │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── atyfb.h │ │ │ ├── fb.h │ │ │ ├── fbcon.h │ │ │ ├── mach64.h │ │ │ ├── mach64_ct.c │ │ │ └── xlinit.c │ ├── dec │ │ └── 21143 │ │ │ ├── 21143.c │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ ├── elog │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── boot_count.c │ │ ├── elog.c │ │ ├── elog_internal.h │ │ └── gsmi.c │ ├── emulation │ │ └── qemu │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bochs.c │ │ │ ├── cirrus.c │ │ │ └── qemu_debugcon.c │ ├── generic │ │ ├── generic │ │ │ ├── Kconfig │ │ │ └── Makefile.inc │ │ ├── gpio_regulator │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ └── gpio_regulator.c │ │ ├── ioapic │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ └── ioapic.c │ │ └── max98357a │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ └── max98357a.c │ ├── gic │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── gic.c │ │ └── gic.h │ ├── i2c │ │ ├── adm1026 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── adm1026.c │ │ ├── adm1027 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── adm1027.c │ │ ├── adt7463 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── adt7463.c │ │ ├── alps │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── alps.c │ │ │ └── chip.h │ │ ├── at24rf08c │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── at24rf08c.c │ │ │ ├── lenovo.h │ │ │ └── lenovo_serials.c │ │ ├── da7219 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ └── da7219.c │ │ ├── generic │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ └── generic.c │ │ ├── hid │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ └── hid.c │ │ ├── i2cmux │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── i2cmux.c │ │ ├── i2cmux2 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── i2cmux2.c │ │ ├── lm63 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── lm63.c │ │ ├── max98927 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ └── max98927.c │ │ ├── nau8825 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ └── nau8825.c │ │ ├── pcf8523 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── pcf8523.c │ │ │ └── pcf8523.h │ │ ├── rtd2132 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ └── rtd2132.c │ │ ├── tpm │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.c │ │ │ ├── chip.h │ │ │ ├── cr50.c │ │ │ ├── tis.c │ │ │ ├── tis_atmel.c │ │ │ ├── tpm.c │ │ │ └── tpm.h │ │ ├── w83793 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── w83793.c │ │ │ └── w83793.h │ │ ├── w83795 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── w83795.c │ │ │ └── w83795.h │ │ └── ww_ring │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── ww_ring.c │ │ │ ├── ww_ring.h │ │ │ ├── ww_ring_programs.c │ │ │ └── ww_ring_programs.h │ ├── ics │ │ └── 954309 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ └── ics954309.c │ ├── intel │ │ ├── fsp1_0 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── cache_as_ram.inc │ │ │ ├── fastboot_cache.c │ │ │ ├── fsp_util.c │ │ │ ├── fsp_util.h │ │ │ ├── fsp_values.h │ │ │ └── hob.c │ │ ├── fsp1_1 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── after_raminit.S │ │ │ ├── bootblock.c │ │ │ ├── cache_as_ram.inc │ │ │ ├── car.c │ │ │ ├── fsp_gop.c │ │ │ ├── fsp_relocate.c │ │ │ ├── fsp_util.c │ │ │ ├── hob.c │ │ │ ├── include │ │ │ │ └── fsp │ │ │ │ │ ├── api.h │ │ │ │ │ ├── bootblock.h │ │ │ │ │ ├── car.h │ │ │ │ │ ├── gma.h │ │ │ │ │ ├── gop.h │ │ │ │ │ ├── memmap.h │ │ │ │ │ ├── ramstage.h │ │ │ │ │ ├── romstage.h │ │ │ │ │ ├── soc_binding.h │ │ │ │ │ ├── stack.h │ │ │ │ │ ├── uefi_binding.h │ │ │ │ │ └── util.h │ │ │ ├── mma_core.c │ │ │ ├── raminit.c │ │ │ ├── ramstage.c │ │ │ ├── romstage.c │ │ │ ├── stack.c │ │ │ ├── stage_cache.c │ │ │ ├── vbt.c │ │ │ └── verstage.c │ │ ├── fsp2_0 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── debug.c │ │ │ ├── graphics.c │ │ │ ├── hand_off_block.c │ │ │ ├── header_display.c │ │ │ ├── header_util │ │ │ │ ├── fspupdvpd.spatch │ │ │ │ └── fspupdvpd_sanitize.sh │ │ │ ├── hob_display.c │ │ │ ├── hob_verify.c │ │ │ ├── include │ │ │ │ └── fsp │ │ │ │ │ ├── api.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── info_header.h │ │ │ │ │ ├── memmap.h │ │ │ │ │ ├── soc_binding.h │ │ │ │ │ ├── upd.h │ │ │ │ │ └── util.h │ │ │ ├── memory_init.c │ │ │ ├── mma_core.c │ │ │ ├── notify.c │ │ │ ├── silicon_init.c │ │ │ ├── stage_cache.c │ │ │ ├── temp_ram_exit.c │ │ │ ├── upd_display.c │ │ │ └── util.c │ │ ├── gma │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── common.asl │ │ │ │ ├── configure_brightness_levels.asl │ │ │ │ ├── default_brightness_levels.asl │ │ │ │ ├── non-pch.asl │ │ │ │ └── pch.asl │ │ │ ├── display.c │ │ │ ├── drm_dp_helper.c │ │ │ ├── drm_dp_helper.h │ │ │ ├── edid.c │ │ │ ├── edid.h │ │ │ ├── gma.ads │ │ │ ├── hires_fb │ │ │ │ └── gma.adb │ │ │ ├── i915.h │ │ │ ├── i915_reg.h │ │ │ ├── int15.c │ │ │ ├── int15.h │ │ │ ├── intel_bios.h │ │ │ ├── intel_ddi.c │ │ │ ├── intel_dp.c │ │ │ ├── opregion.h │ │ │ ├── text_fb │ │ │ │ └── gma.adb │ │ │ └── vbt.c │ │ ├── i210 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── i210.c │ │ │ └── i210.h │ │ ├── mipi_camera │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── camera.c │ │ │ └── chip.h │ │ └── wifi │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ └── wrdd.asl │ │ │ ├── chip.h │ │ │ └── wifi.c │ ├── ipmi │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── ipmi_kcs.c │ │ └── ipmi_kcs.h │ ├── lenovo │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── hybrid_graphics.c │ │ ├── lenovo.h │ │ └── wacom.c │ ├── maxim │ │ ├── max77686 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── max77686.c │ │ │ └── max77686.h │ │ └── max77802 │ │ │ └── max77802.h │ ├── net │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── ne2k.c │ │ ├── ns8390.h │ │ └── r8168.c │ ├── parade │ │ ├── ps8625 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── ps8625.c │ │ │ └── ps8625.h │ │ └── ps8640 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── ps8640.c │ │ │ └── ps8640.h │ ├── pc80 │ │ ├── pc │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── i8254.c │ │ │ ├── i8259.c │ │ │ ├── isa-dma.c │ │ │ ├── keyboard.c │ │ │ ├── ps2_controller.asl │ │ │ ├── spkmodem.c │ │ │ └── udelay_io.c │ │ ├── rtc │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── mc146818rtc.c │ │ │ └── mc146818rtc_early.c │ │ ├── tpm │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── romstage.c │ │ │ └── tpm.c │ │ └── vga │ │ │ ├── Makefile.inc │ │ │ ├── vga.c │ │ │ ├── vga.h │ │ │ ├── vga_font_8x16.c │ │ │ ├── vga_io.c │ │ │ └── vga_palette.c │ ├── ricoh │ │ └── rce822 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ └── rce822.c │ ├── siemens │ │ └── nc_fpga │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── nc_fpga.c │ │ │ └── nc_fpga.h │ ├── sil │ │ └── 3114 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── sil_sata.c │ ├── spi │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── acpi │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ └── chip.h │ │ ├── adesto.c │ │ ├── amic.c │ │ ├── atmel.c │ │ ├── boot_device_rw_nommap.c │ │ ├── cbfs_spi.c │ │ ├── eon.c │ │ ├── gigadevice.c │ │ ├── macronix.c │ │ ├── spansion.c │ │ ├── spi-generic.c │ │ ├── spi_flash.c │ │ ├── spi_flash_internal.h │ │ ├── spiconsole.c │ │ ├── sst.c │ │ ├── stmicro.c │ │ ├── tpm │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── tis.c │ │ │ ├── tpm.c │ │ │ └── tpm.h │ │ └── winbond.c │ ├── storage │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── bouncebuf.c │ │ ├── bouncebuf.h │ │ ├── mmc.c │ │ ├── mmc.h │ │ ├── pci_sdhci.c │ │ ├── sd.c │ │ ├── sd_mmc.c │ │ ├── sd_mmc.h │ │ ├── sdhci.c │ │ ├── sdhci.h │ │ ├── sdhci_adma.c │ │ ├── sdhci_display.c │ │ ├── storage.c │ │ ├── storage.h │ │ ├── storage_erase.c │ │ └── storage_write.c │ ├── ti │ │ ├── tps65090 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── tps65090.c │ │ │ └── tps65090.h │ │ └── tps65913 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── tps65913rtc.c │ ├── uart │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── oxpcie.c │ │ ├── oxpcie_early.c │ │ ├── pl011.c │ │ ├── uart8250io.c │ │ ├── uart8250mem.c │ │ ├── uart8250reg.h │ │ └── util.c │ ├── usb │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── console.c │ │ ├── ehci.h │ │ ├── ehci_debug.c │ │ ├── ehci_debug.h │ │ ├── gadget.c │ │ ├── pci_ehci.c │ │ └── usb_ch9.h │ ├── xgi │ │ ├── common │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── XGI_main.c │ │ │ ├── XGI_main.h │ │ │ ├── XGIfb.h │ │ │ ├── initdef.h │ │ │ ├── vb_def.h │ │ │ ├── vb_init.c │ │ │ ├── vb_init.h │ │ │ ├── vb_setmode.c │ │ │ ├── vb_setmode.h │ │ │ ├── vb_struct.h │ │ │ ├── vb_table.h │ │ │ ├── vb_util.c │ │ │ ├── vb_util.h │ │ │ ├── vgatypes.h │ │ │ ├── vstruct.h │ │ │ ├── xgi_coreboot.c │ │ │ └── xgi_coreboot.h │ │ └── z9s │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── z9s.c │ └── xpowers │ │ └── axp209 │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── axp209.c │ │ ├── axp209.h │ │ └── chip.h ├── ec │ ├── acpi │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── ec.asl │ │ ├── ec.c │ │ └── ec.h │ ├── compal │ │ └── ene932 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ac.asl │ │ │ ├── battery.asl │ │ │ ├── ec.asl │ │ │ └── superio.asl │ │ │ ├── chip.h │ │ │ ├── documentation.txt │ │ │ ├── ec.c │ │ │ └── ec.h │ ├── ec.h │ ├── google │ │ └── chromeec │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ac.asl │ │ │ ├── als.asl │ │ │ ├── battery.asl │ │ │ ├── cros_ec.asl │ │ │ ├── ec.asl │ │ │ ├── emem.asl │ │ │ ├── keyboard_backlight.asl │ │ │ ├── pd.asl │ │ │ ├── superio.asl │ │ │ └── tbmc.asl │ │ │ ├── chip.h │ │ │ ├── crosec_proto.c │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── ec_commands.h │ │ │ ├── ec_i2c.c │ │ │ ├── ec_lpc.c │ │ │ ├── ec_mec.c │ │ │ ├── ec_message.h │ │ │ ├── ec_spi.c │ │ │ ├── smihandler.c │ │ │ ├── smm.h │ │ │ ├── switches.c │ │ │ ├── vboot_storage.c │ │ │ └── vstore.c │ ├── kontron │ │ └── it8516e │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ec.asl │ │ │ └── pm_channels.asl │ │ │ ├── chip.h │ │ │ ├── ec.c │ │ │ └── ec.h │ ├── lenovo │ │ ├── h8 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ac.asl │ │ │ │ ├── battery.asl │ │ │ │ ├── beep.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── lid.asl │ │ │ │ ├── sleepbutton.asl │ │ │ │ ├── systemstatus.asl │ │ │ │ └── thermal.asl │ │ │ ├── chip.h │ │ │ ├── h8.c │ │ │ ├── h8.h │ │ │ └── smm.c │ │ └── pmh7 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── pmh7.c │ │ │ └── pmh7.h │ ├── purism │ │ └── librem │ │ │ ├── Kconfig │ │ │ └── acpi │ │ │ ├── ac.asl │ │ │ ├── battery.asl │ │ │ └── ec.asl │ ├── quanta │ │ ├── ene_kb3940q │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ac.asl │ │ │ │ ├── battery.asl │ │ │ │ ├── ec.asl │ │ │ │ └── superio.asl │ │ │ ├── chip.h │ │ │ ├── ec.c │ │ │ └── ec.h │ │ └── it8518 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ac.asl │ │ │ ├── battery.asl │ │ │ ├── ec.asl │ │ │ └── superio.asl │ │ │ ├── chip.h │ │ │ ├── ec.c │ │ │ └── ec.h │ ├── roda │ │ └── it8518 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ac.asl │ │ │ ├── battery.asl │ │ │ ├── ec.asl │ │ │ └── lid.asl │ │ │ ├── chip.h │ │ │ └── ec.c │ └── smsc │ │ └── mec1308 │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── acpi │ │ ├── ac.asl │ │ ├── battery.asl │ │ └── ec.asl │ │ ├── chip.h │ │ ├── ec.c │ │ └── ec.h ├── include │ ├── adainit.h │ ├── antirollback.h │ ├── assert.h │ ├── b64_decode.h │ ├── base3.h │ ├── bcd.h │ ├── boardid.h │ ├── boot │ │ ├── coreboot_tables.h │ │ └── tables.h │ ├── boot_device.h │ ├── bootblock_common.h │ ├── bootmem.h │ ├── bootmode.h │ ├── bootstate.h │ ├── cbfs.h │ ├── cbmem.h │ ├── console │ │ ├── cbmem_console.h │ │ ├── console.h │ │ ├── early_print.h │ │ ├── ne2k.h │ │ ├── post_codes.h │ │ ├── qemu_debugcon.h │ │ ├── spi.h │ │ ├── spkmodem.h │ │ ├── streams.h │ │ ├── uart.h │ │ ├── usb.h │ │ └── vtxprintf.h │ ├── cpu │ │ ├── amd │ │ │ ├── amdfam10_sysconf.h │ │ │ ├── amdfam12.h │ │ │ ├── amdfam14.h │ │ │ ├── amdfam15.h │ │ │ ├── amdfam16.h │ │ │ ├── amdk8_sysconf.h │ │ │ ├── car.h │ │ │ ├── common │ │ │ │ └── cbtypes.h │ │ │ ├── gx2def.h │ │ │ ├── lxdef.h │ │ │ ├── microcode.h │ │ │ ├── model_10xxx_rev.h │ │ │ ├── model_fxx_rev.h │ │ │ ├── msr.h │ │ │ ├── mtrr.h │ │ │ ├── multicore.h │ │ │ ├── powernow.h │ │ │ ├── sc520.h │ │ │ └── vr.h │ │ ├── cpu.h │ │ ├── intel │ │ │ ├── hyperthreading.h │ │ │ ├── l2_cache.h │ │ │ ├── microcode.h │ │ │ ├── romstage.h │ │ │ ├── speedstep.h │ │ │ └── turbo.h │ │ └── x86 │ │ │ ├── bist.h │ │ │ ├── cache.h │ │ │ ├── cr.h │ │ │ ├── gdt.h │ │ │ ├── lapic.h │ │ │ ├── lapic_def.h │ │ │ ├── mp.h │ │ │ ├── msr.h │ │ │ ├── mtrr.h │ │ │ ├── name.h │ │ │ ├── pae.h │ │ │ ├── post_code.h │ │ │ ├── smm.h │ │ │ └── tsc.h │ ├── delay.h │ ├── device │ │ ├── azalia.h │ │ ├── azalia_device.h │ │ ├── cardbus.h │ │ ├── device.h │ │ ├── dram │ │ │ ├── ddr2.h │ │ │ └── ddr3.h │ │ ├── drm_dp_helper.h │ │ ├── early_smbus.h │ │ ├── hypertransport.h │ │ ├── hypertransport_def.h │ │ ├── i2c.h │ │ ├── path.h │ │ ├── pci.h │ │ ├── pci_def.h │ │ ├── pci_ehci.h │ │ ├── pci_ids.h │ │ ├── pci_ops.h │ │ ├── pci_rom.h │ │ ├── pciexp.h │ │ ├── pcix.h │ │ ├── pnp.h │ │ ├── pnp_def.h │ │ ├── resource.h │ │ ├── sd_mmc_ctrlr.h │ │ ├── sdhci.h │ │ ├── smbus.h │ │ ├── smbus_def.h │ │ ├── spi.h │ │ └── storage.h │ ├── edid.h │ ├── elog.h │ ├── endian.h │ ├── fallback.h │ ├── fmap.h │ ├── gic.h │ ├── gpio.h │ ├── halt.h │ ├── imd.h │ ├── inttypes.h │ ├── ip_checksum.h │ ├── kconfig.h │ ├── lib.h │ ├── main_decl.h │ ├── memlayout.h │ ├── memory_info.h │ ├── memrange.h │ ├── nhlt.h │ ├── option.h │ ├── pc80 │ │ ├── i8254.h │ │ ├── i8259.h │ │ ├── isa-dma.h │ │ ├── keyboard.h │ │ ├── mc146818rtc.h │ │ ├── vga.h │ │ └── vga_io.h │ ├── program_loading.h │ ├── random.h │ ├── reg_script.h │ ├── region_file.h │ ├── reset.h │ ├── rmodule.h │ ├── romstage_handoff.h │ ├── rtc.h │ ├── rules.h │ ├── sar.h │ ├── sdram_mode.h │ ├── smbios.h │ ├── smp │ │ ├── atomic.h │ │ ├── node.h │ │ └── spinlock.h │ ├── spd.h │ ├── spd_bin.h │ ├── spd_ddr2.h │ ├── spi-generic.h │ ├── spi_flash.h │ ├── stage_cache.h │ ├── stddef.h │ ├── stdlib.h │ ├── string.h │ ├── superio │ │ └── conf_mode.h │ ├── swab.h │ ├── symbols.h │ ├── sys │ │ └── types.h │ ├── thread.h │ ├── timer.h │ ├── timestamp.h │ ├── tpm.h │ ├── tpm_lite │ │ ├── tlcl.h │ │ └── tss_constants.h │ ├── trace.h │ ├── types.h │ ├── vbe.h │ ├── version.h │ ├── watchdog.h │ └── wrdd.h ├── lib │ ├── Makefile.inc │ ├── b64_decode.c │ ├── boot_device.c │ ├── bootblock.c │ ├── bootmem.c │ ├── bootmode.c │ ├── cbfs.c │ ├── cbmem_common.c │ ├── cbmem_console.c │ ├── cbmem_stage_cache.c │ ├── compute_ip_checksum.c │ ├── coreboot_table.c │ ├── debug.c │ ├── delay.c │ ├── edid.c │ ├── ext_stage_cache.c │ ├── fallback_boot.c │ ├── fmap.c │ ├── gcc.c │ ├── gcov-glue.c │ ├── gcov-io.c │ ├── gcov-io.h │ ├── gcov-iov.h │ ├── generic_dump_spd.c │ ├── generic_sdram.c │ ├── gnat │ │ ├── COPYING.RUNTIME │ │ ├── COPYING3 │ │ ├── Makefile.inc │ │ ├── a-unccon.ads │ │ ├── ada.ads │ │ ├── g-souinf.ads │ │ ├── gnat.ads │ │ ├── i-c.adb │ │ ├── i-c.ads │ │ ├── interfac.ads │ │ ├── s-atacco.ads │ │ ├── s-imenne.adb │ │ ├── s-imenne.ads │ │ ├── s-maccod.ads │ │ ├── s-parame.ads │ │ ├── s-stoele.adb │ │ ├── s-stoele.ads │ │ ├── s-unstyp.ads │ │ └── system.ads │ ├── gpio.c │ ├── halt.c │ ├── hardwaremain.c │ ├── hexdump.c │ ├── hexstrtobin.c │ ├── hw-time-timer.adb │ ├── imd.c │ ├── imd_cbmem.c │ ├── jpeg.c │ ├── jpeg.h │ ├── libgcc.c │ ├── libgcov.c │ ├── lzma.c │ ├── lzmadecode.c │ ├── lzmadecode.h │ ├── malloc.c │ ├── memchr.c │ ├── memcmp.c │ ├── memcpy.c │ ├── memmove.c │ ├── memrange.c │ ├── memset.c │ ├── nhlt.c │ ├── primitive_memtest.c │ ├── prog_loaders.c │ ├── prog_ops.c │ ├── program.ld │ ├── ramtest.c │ ├── reg_script.c │ ├── region_file.c │ ├── rmodule.c │ ├── rmodule.ld │ ├── romstage_handoff.c │ ├── romstage_stack.c │ ├── rtc.c │ ├── selfboot.c │ ├── spd_bin.c │ ├── stack.c │ ├── thread.c │ ├── timer.c │ ├── timer_queue.c │ ├── timestamp.c │ ├── tlcl.c │ ├── tlcl_internal.h │ ├── tlcl_structures.h │ ├── tpm2_marshaling.c │ ├── tpm2_marshaling.h │ ├── tpm2_tlcl.c │ ├── tpm2_tlcl_structures.h │ ├── tpm_error_messages.h │ ├── trace.c │ ├── version.c │ └── wrdd.c ├── mainboard │ ├── Kconfig │ ├── a-trend │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── atc-6220 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ └── atc-6240 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── aaeon │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── pfm-540i_revb │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── abit │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── be6-ii_v2_0 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── adi │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── rcc-dff │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ec.asl │ │ │ ├── mainboard.asl │ │ │ ├── platform.asl │ │ │ ├── superio.asl │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── config_seabios │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.h │ │ │ ├── irq_tables.c │ │ │ ├── irqroute.c │ │ │ ├── irqroute.h │ │ │ ├── romstage.c │ │ │ └── thermal.h │ ├── adlink │ │ ├── CM2-GF │ │ │ └── board_info.txt │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── cExpress-GFR │ │ │ └── board_info.txt │ ├── advansus │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── a785e-i │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ ├── cpstate.asl │ │ │ ├── routing.asl │ │ │ ├── sata.asl │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ ├── amd │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── bettong │ │ │ ├── BiosCallOuts.c │ │ │ ├── BiosCallOuts.h │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── README │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── carrizo_fch.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sleep.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fchec.c │ │ │ ├── fchec.h │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── bimini_fam10 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── cpstate.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── db-ft3b-lc │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── Memphis_MEM4G16D3EABG.spd.hex │ │ │ ├── OemCustomize.c │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── si.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── db800 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── dbm690t │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── dinar │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ └── sata.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ ├── rd890_cfg.c │ │ │ ├── rd890_cfg.h │ │ │ ├── romstage.c │ │ │ ├── sb700_cfg.c │ │ │ └── sb700_cfg.h │ │ ├── f2950 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── gardenia │ │ │ ├── BiosCallOuts.c │ │ │ ├── BiosCallOuts.h │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── carrizo_fch.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sleep.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fchec.c │ │ │ ├── fchec.h │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── inagua │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── PlatformGnbPcieComplex.h │ │ │ ├── acpi │ │ │ │ ├── gpe.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── broadcom.c │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ └── romstage.c │ │ ├── lamar │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── si.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── mahogany │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── mahogany_fam10 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── cpstate.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── norwich │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── olivehill │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── si.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── olivehillplus │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── si.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── parmer │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── si.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── persimmon │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── PlatformGnbPcieComplex.h │ │ │ ├── acpi │ │ │ │ ├── gpe.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ └── romstage.c │ │ ├── pistachio │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── rumba │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ │ ├── samba │ │ │ └── board_info.txt │ │ ├── serengeti_cheetah │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── amd8111.asl │ │ │ │ ├── amd8111_isa.asl │ │ │ │ ├── amd8111_pic.asl │ │ │ │ ├── amd8131.asl │ │ │ │ ├── amd8131_2.asl │ │ │ │ ├── amd8132_2.asl │ │ │ │ ├── amd8151.asl │ │ │ │ ├── pci0_hc.asl │ │ │ │ ├── pci2_hc.asl │ │ │ │ ├── pci3_hc.asl │ │ │ │ ├── pci4_hc.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mainboard.h │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── readme_acpi.txt │ │ │ ├── resourcemap.c │ │ │ ├── romstage.c │ │ │ ├── ssdt2.asl │ │ │ ├── ssdt3.asl │ │ │ └── ssdt4.asl │ │ ├── serengeti_cheetah_fam10 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── amd8111.asl │ │ │ │ ├── amd8111_isa.asl │ │ │ │ ├── amd8111_pic.asl │ │ │ │ ├── amd8131_2.asl │ │ │ │ ├── amd8132.asl │ │ │ │ ├── amd8132_2.asl │ │ │ │ ├── amd8151.asl │ │ │ │ ├── htx_no_ioapic.asl │ │ │ │ ├── pci0_hc.asl │ │ │ │ ├── pci2_hc.asl │ │ │ │ ├── pci3_hc.asl │ │ │ │ ├── pci4_hc.asl │ │ │ │ ├── pci5_hc.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mainboard.h │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ ├── romstage.c │ │ │ ├── ssdt2.asl │ │ │ ├── ssdt3.asl │ │ │ ├── ssdt4.asl │ │ │ └── ssdt5.asl │ │ ├── south_station │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── PlatformGnbPcieComplex.h │ │ │ ├── acpi │ │ │ │ ├── gpe.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ └── romstage.c │ │ ├── thatcher │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── cpstate.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── si.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── tilapia_fam10 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── cpstate.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── torpedo │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── Oem.h │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── PlatformGnbPcieComplex.h │ │ │ ├── acpi │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ ├── pmio.h │ │ │ └── romstage.c │ │ └── union_station │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── PlatformGnbPcieComplex.h │ │ │ ├── acpi │ │ │ ├── gpe.asl │ │ │ ├── ide.asl │ │ │ ├── mainboard.asl │ │ │ ├── routing.asl │ │ │ ├── sata.asl │ │ │ ├── sleep.asl │ │ │ ├── superio.asl │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ └── romstage.c │ ├── aopen │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── dxplplusu │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ ├── e7505_pri.asl │ │ │ ├── e7505_sec.asl │ │ │ ├── i82801db.asl │ │ │ ├── p64h2.asl │ │ │ ├── power.asl │ │ │ ├── scsi.asl │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── bus.h │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── apple │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── macbook21 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── i945_pci_irqs.asl │ │ │ │ ├── ich7_pci_irqs.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── romstage.c │ │ │ └── smihandler.c │ │ └── macbookair4_2 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ec.asl │ │ │ ├── platform.asl │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── early_southbridge.c │ │ │ ├── gnvs.c │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ └── spd.bin │ ├── artecgroup │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── dbe61 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ └── spd_table.h │ ├── asrock │ │ ├── 939a785gmh │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── e350m1 │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── PlatformGnbPcieComplex.h │ │ │ ├── acpi │ │ │ │ ├── gpe.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ └── romstage.c │ │ └── imb-a180 │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ ├── AmdImc.asl │ │ │ ├── gpe.asl │ │ │ ├── ide.asl │ │ │ ├── mainboard.asl │ │ │ ├── routing.asl │ │ │ ├── sata.asl │ │ │ ├── si.asl │ │ │ ├── sleep.asl │ │ │ ├── superio.asl │ │ │ ├── thermal.asl │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ ├── asus │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── a8n_e │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── a8n_sli │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ └── board_info.txt │ │ ├── a8v-e_deluxe │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── a8v-e_se │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── dsbf │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── f2a85-m │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── cpstate.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── si.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree_f2a85-m.cb │ │ │ ├── devicetree_f2a85-m_le.cb │ │ │ ├── devicetree_f2a85-m_pro.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── k8v-x │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── kcma-d8 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ └── pm_ctrl.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ ├── romstage.c │ │ │ └── spd_notes.txt │ │ ├── kfsn4-dre │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ └── pm_ctrl.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ ├── romstage.c │ │ │ └── spd_notes.txt │ │ ├── kfsn4-dre_k8 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ └── pm_ctrl.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ ├── romstage.c │ │ │ └── spd_notes.txt │ │ ├── kgpe-d16 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ └── pm_ctrl.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ ├── romstage.c │ │ │ └── spd_notes.txt │ │ ├── m2n-e │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── fanctl.c │ │ │ ├── get_bus_conf.c │ │ │ ├── hda_verb.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── m2v-mx_se │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ └── romstage.c │ │ ├── m2v │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── m4a78-em │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── cpstate.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── m4a785-m │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── cpstate.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── m4a785t-m │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── cpstate.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── m5a88-v │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── cpstate.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── mew-am │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── mew-vm │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── p2b-d │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── p2b-ds │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── p2b-f │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── p2b-ls │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── p2b │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── p3b-f │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ └── p5gc-mx │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ec.asl │ │ │ ├── i945_pci_irqs.asl │ │ │ ├── ich7_pci_irqs.asl │ │ │ ├── mainboard.asl │ │ │ ├── superio.asl │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ └── romstage.c │ ├── avalue │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── eax-785e │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ ├── cpstate.asl │ │ │ ├── routing.asl │ │ │ ├── sata.asl │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ ├── azza │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── pt-6ibd │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── bachmann │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── ot200 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ ├── bap │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── ode_e20XX │ │ │ ├── BAP_Q7_1066.spd.hex │ │ │ ├── BAP_Q7_800.spd.hex │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── si.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ └── ode_e21XX │ │ │ ├── BAP_Q7_1066.spd.hex │ │ │ ├── BAP_Q7_1333.spd.hex │ │ │ ├── BAP_Q7_800.spd.hex │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── acpi │ │ │ ├── AmdImc.asl │ │ │ ├── gpe.asl │ │ │ ├── ide.asl │ │ │ ├── mainboard.asl │ │ │ ├── routing.asl │ │ │ ├── si.asl │ │ │ ├── sleep.asl │ │ │ ├── superio.asl │ │ │ ├── thermal.asl │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ ├── bcom │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── winnetp680 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── bifferos │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── bifferboard │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ └── romstage.c │ ├── biostar │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── am1ml │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── flag0.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── si.asl │ │ │ │ ├── sio.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ └── m6tba │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── broadcom │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── blast │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ ├── compaq │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── deskpro_en_sff_p600 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── cubietech │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── cubieboard │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── devicetree.cb │ │ │ ├── memlayout.ld │ │ │ └── romstage.c │ ├── digitallogic │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── msm800sev │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── dmp │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── vortex86ex │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── ecs │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── p6iwp-fe │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── elmex │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── pcm205400 │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── PlatformGnbPcieComplex.h │ │ │ ├── acpi │ │ │ │ ├── gpe.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ └── romstage.c │ │ └── pcm205401 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ └── board_info.txt │ ├── emulation │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── qemu-armv7 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── cbmem.c │ │ │ ├── devicetree.cb │ │ │ ├── media.c │ │ │ ├── memlayout.ld │ │ │ ├── mmio.c │ │ │ ├── romstage.c │ │ │ └── timer.c │ │ ├── qemu-i440fx │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi.h │ │ │ ├── acpi │ │ │ │ ├── cpu-hotplug.asl │ │ │ │ ├── dbug.asl │ │ │ │ ├── hpet.asl │ │ │ │ ├── isa.asl │ │ │ │ └── pci-crs.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cache_as_ram.inc │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fw_cfg.c │ │ │ ├── fw_cfg.h │ │ │ ├── fw_cfg_if.h │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── memory.c │ │ │ ├── northbridge.c │ │ │ └── romstage.c │ │ ├── qemu-power8 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── cbmem.c │ │ │ ├── devicetree.cb │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── romstage.c │ │ │ └── uart.c │ │ ├── qemu-q35 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ │ ├── qemu-riscv │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── rom_media.c │ │ │ ├── romstage.c │ │ │ └── uart.c │ │ └── spike-riscv │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── rom_media.c │ │ │ ├── romstage.c │ │ │ └── uart.c │ ├── esd │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── atom15 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ec.asl │ │ │ ├── mainboard.asl │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.c │ │ │ ├── irqroute.c │ │ │ ├── irqroute.h │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ ├── getac │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── p470 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── battery.asl │ │ │ ├── ec.asl │ │ │ ├── gpe.asl │ │ │ ├── i945_pci_irqs.asl │ │ │ ├── ich7_pci_irqs.asl │ │ │ ├── mainboard.asl │ │ │ ├── platform.asl │ │ │ ├── superio.asl │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec_oem.c │ │ │ ├── ec_oem.h │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mainboard.h │ │ │ ├── mptable.c │ │ │ ├── romstage.c │ │ │ └── smihandler.c │ ├── gigabyte │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── ga-6bxc │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── ga-6bxe │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── ga-945gcm-s2l │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── i945_pci_irqs.asl │ │ │ │ ├── ich7_pci_irqs.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── romstage.c │ │ │ └── variants │ │ │ │ ├── ga-945gcm-s2c │ │ │ │ └── board_info.txt │ │ │ │ └── ga-945gcm-s2l │ │ │ │ └── board_info.txt │ │ ├── ga-b75m-d3h │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── video.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ └── thermal.h │ │ ├── ga-b75m-d3v │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── video.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ └── thermal.h │ │ ├── ga-g41m-es2l │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── ich7_pci_irqs.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ └── x4x_pci_irqs.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ └── romstage.c │ │ ├── ga_2761gxdk │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── m57sli │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fanctl.c │ │ │ ├── get_bus_conf.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── ma785gm │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── cpstate.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── ma785gmt │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── cpstate.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ └── ma78gm │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ ├── cpstate.asl │ │ │ ├── ide.asl │ │ │ ├── routing.asl │ │ │ ├── sata.asl │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ ├── gizmosphere │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── gizmo │ │ │ ├── BiosCallOuts.c │ │ │ ├── Elpida_EDJ2116DEBG.spd.hex │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── PlatformGnbPcieComplex.h │ │ │ ├── acpi │ │ │ │ ├── gpe.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ └── romstage.c │ │ └── gizmo2 │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── Micron_MT41J128M16JT.spd.hex │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ ├── AmdImc.asl │ │ │ ├── gpe.asl │ │ │ ├── ide.asl │ │ │ ├── mainboard.asl │ │ │ ├── routing.asl │ │ │ ├── sata.asl │ │ │ ├── si.asl │ │ │ ├── sleep.asl │ │ │ ├── superio.asl │ │ │ ├── thermal.asl │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ ├── google │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── auron │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── superio.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── video.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── fadt.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ ├── variant.h │ │ │ └── variants │ │ │ │ ├── auron_paine │ │ │ │ ├── devicetree.cb │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── ec.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hda_verb.h │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ ├── spd.h │ │ │ │ │ │ └── thermal.h │ │ │ │ ├── pei_data.c │ │ │ │ ├── spd │ │ │ │ │ ├── Hynix_HMT425S6AFR6A.spd.hex │ │ │ │ │ ├── Hynix_HMT425S6CFR6A_H5TC4G63CFR.spd.hex │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── Micron_4KTF25664HZ.spd.hex │ │ │ │ │ ├── empty.spd.hex │ │ │ │ │ └── spd.c │ │ │ │ └── variant.c │ │ │ │ ├── auron_yuna │ │ │ │ ├── devicetree.cb │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── ec.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hda_verb.h │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ ├── spd.h │ │ │ │ │ │ └── thermal.h │ │ │ │ ├── pei_data.c │ │ │ │ ├── spd │ │ │ │ │ ├── Hynix_HMT425S6AFR6A.spd.hex │ │ │ │ │ ├── Hynix_HMT425S6CFR6A_H5TC4G63CFR.spd.hex │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── Micron_4KTF25664HZ.spd.hex │ │ │ │ │ ├── empty.spd.hex │ │ │ │ │ └── spd.c │ │ │ │ └── variant.c │ │ │ │ ├── gandof │ │ │ │ ├── devicetree.cb │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── ec.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hda_verb.h │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ ├── spd.h │ │ │ │ │ │ └── thermal.h │ │ │ │ ├── pei_data.c │ │ │ │ ├── spd │ │ │ │ │ ├── Hynix_HMT425S6AFR6A.spd.hex │ │ │ │ │ ├── Hynix_HMT425S6CFR6A_H5TC4G63CFR.spd.hex │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── Micron_4KTF25664HZ.spd.hex │ │ │ │ │ ├── Samsung_M471B5674EB0-YK0.spd.hex │ │ │ │ │ ├── empty.spd.hex │ │ │ │ │ └── spd.c │ │ │ │ └── variant.c │ │ │ │ ├── lulu │ │ │ │ ├── devicetree.cb │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── ec.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hda_verb.h │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ ├── spd.h │ │ │ │ │ │ └── thermal.h │ │ │ │ ├── pei_data.c │ │ │ │ ├── spd │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── empty.spd.hex │ │ │ │ │ ├── hynix_2GiB_dimm_H5TC4G63AFR-PBA.spd.hex │ │ │ │ │ ├── hynix_4GiB_dimm_H5TC8G63CMR-PBA.spd.hex │ │ │ │ │ ├── micron_2GiB_dimm_MT41K256M16HA-125.spd.hex │ │ │ │ │ ├── micron_4GiB_dimm_MT41K512M16TNA-125.spd.hex │ │ │ │ │ ├── samsung_2GiB_dimm_K4B4G1646E-BYK0.spd.hex │ │ │ │ │ ├── samsung_2GiB_dimm_K4B4G1646Q-HYK0.spd.hex │ │ │ │ │ ├── samsung_4GiB_dimm_K4B8G1646Q-MYK0.spd.hex │ │ │ │ │ └── spd.c │ │ │ │ └── variant.c │ │ │ │ └── samus │ │ │ │ ├── Makefile.inc │ │ │ │ ├── board_version.c │ │ │ │ ├── devicetree.cb │ │ │ │ ├── include │ │ │ │ └── variant │ │ │ │ │ ├── acpi │ │ │ │ │ ├── ec.asl │ │ │ │ │ └── mainboard.asl │ │ │ │ │ ├── board_version.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── hda_verb.h │ │ │ │ │ ├── onboard.h │ │ │ │ │ ├── spd.h │ │ │ │ │ └── thermal.h │ │ │ │ ├── pei_data.c │ │ │ │ ├── spd │ │ │ │ ├── Makefile.inc │ │ │ │ ├── elpida_16.spd.hex │ │ │ │ ├── elpida_4.spd.hex │ │ │ │ ├── elpida_8.spd.hex │ │ │ │ ├── empty.spd.hex │ │ │ │ ├── hynix_16.spd.hex │ │ │ │ ├── hynix_4.spd.hex │ │ │ │ ├── hynix_8.spd.hex │ │ │ │ ├── samsung_4.spd.hex │ │ │ │ ├── samsung_8.spd.hex │ │ │ │ └── spd.c │ │ │ │ └── variant.c │ │ ├── beltino │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── haswell_pci_irqs.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── lan.c │ │ │ ├── mainboard.c │ │ │ ├── onboard.h │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── variants │ │ │ │ ├── mccloud │ │ │ │ ├── hda_verb.c │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── thermal.h │ │ │ │ └── led.c │ │ │ │ ├── monroe │ │ │ │ ├── hda_verb.c │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── thermal.h │ │ │ │ └── led.c │ │ │ │ ├── panther │ │ │ │ ├── hda_verb.c │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── thermal.h │ │ │ │ └── led.c │ │ │ │ ├── tricky │ │ │ │ ├── hda_verb.c │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── thermal.h │ │ │ │ └── led.c │ │ │ │ └── zako │ │ │ │ ├── hda_verb.c │ │ │ │ ├── include │ │ │ │ └── variant │ │ │ │ │ ├── gpio.h │ │ │ │ │ └── thermal.h │ │ │ │ └── led.c │ │ ├── butterfly │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── sandybridge_pci_irqs.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── mainboard_smi.c │ │ │ ├── onboard.h │ │ │ ├── romstage.c │ │ │ └── thermal.h │ │ ├── chell │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dptf.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock_mainboard.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── gpio.h │ │ │ ├── mainboard.c │ │ │ ├── pei_data.c │ │ │ ├── ramstage.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── spd │ │ │ │ ├── Makefile.inc │ │ │ │ ├── empty.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNN8GTMLAR.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNNBJTMLAR.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNNCLTMLAR.spd.hex │ │ │ │ ├── samsung_dimm_K4E6E304EB-EGCF.spd.hex │ │ │ │ ├── samsung_dimm_K4E6E304EE-EGCF.spd.hex │ │ │ │ ├── samsung_dimm_K4E8E304EE-EGCF.spd.hex │ │ │ │ ├── spd.c │ │ │ │ └── spd.h │ │ ├── cosmos │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── reset.c │ │ │ └── romstage.c │ │ ├── cyan │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dptf.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── com_init.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── fadt.c │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── gpio_pre_evt.c │ │ │ ├── irqroute.c │ │ │ ├── irqroute.h │ │ │ ├── mainboard.c │ │ │ ├── onboard.h │ │ │ ├── ramstage.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ ├── spd │ │ │ │ ├── Makefile.inc │ │ │ │ ├── hynix_2GiB_dimm_H5TC4G63AFR-PBA.spd.hex │ │ │ │ ├── hynix_2GiB_dimm_HMT425S6CFR6A_H5TC4G63CFR.spd.hex │ │ │ │ ├── samsung_2GiB_dimm_K4B4G1646Q-HYK0.spd.hex │ │ │ │ └── spd.c │ │ │ └── w25q64.c │ │ ├── daisy │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── exynos5250.h │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── memory.c │ │ │ ├── romstage.c │ │ │ └── wakeup.c │ │ ├── eve │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dptf.asl │ │ │ │ ├── ec.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── gpio.h │ │ │ ├── mainboard.c │ │ │ ├── ramstage.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── spd │ │ │ │ ├── Makefile.inc │ │ │ │ ├── empty.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNN8GTALAR.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNNBJTALAR.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNNCLTMLAR.spd.hex │ │ │ │ ├── samsung_dimm_K4E6E304EB.spd.hex │ │ │ │ ├── samsung_dimm_K4E8E324EB.spd.hex │ │ │ │ ├── samsung_dimm_K4EBE304EB.spd.hex │ │ │ │ ├── spd.c │ │ │ │ └── spd.h │ │ ├── fizz │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dptf.asl │ │ │ │ ├── ec.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── gpio.h │ │ │ ├── mainboard.c │ │ │ ├── ramstage.c │ │ │ ├── romstage.c │ │ │ └── smihandler.c │ │ ├── foster │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── bct │ │ │ │ ├── Makefile.inc │ │ │ │ ├── cfg2inc.sh │ │ │ │ ├── emmc.cfg │ │ │ │ ├── jtag.cfg │ │ │ │ ├── odmdata.cfg │ │ │ │ ├── sdram-samsung-3GB-204.cfg │ │ │ │ ├── sdram-samsung-3GB-204.inc │ │ │ │ ├── sdram-unused.inc │ │ │ │ └── spi.cfg │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── ec_dummy.c │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── pmic.c │ │ │ ├── pmic.h │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ └── sdram_configs.c │ │ ├── gale │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── blsp.c │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── cdp.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── mmu.c │ │ │ ├── mmu.h │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ └── verstage.c │ │ ├── glados │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dptf.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock_mainboard.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── gpio.h │ │ │ ├── mainboard.c │ │ │ ├── pei_data.c │ │ │ ├── ramstage.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── spd │ │ │ │ ├── Makefile.inc │ │ │ │ ├── empty.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNN8JTBLAR.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNNBLTALAR.spd.hex │ │ │ │ ├── samsung_dimm_K4E6E304EE-EGCF.spd.hex │ │ │ │ ├── spd.c │ │ │ │ └── spd.h │ │ ├── gru │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board.h │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── devicetree.scarlet.cb │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── pwm_regulator.c │ │ │ ├── pwm_regulator.h │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ ├── sdram_configs.c │ │ │ ├── sdram_params_800 │ │ │ │ ├── Makefile.inc │ │ │ │ ├── sdram-lpddr3-micron-2GB.c │ │ │ │ ├── sdram-lpddr3-micron-4GB.c │ │ │ │ ├── sdram-lpddr3-samsung-2GB-24EB.c │ │ │ │ └── sdram-lpddr3-samsung-4GB-04EB.c │ │ │ └── sdram_params_933 │ │ │ │ ├── Makefile.inc │ │ │ │ ├── sdram-lpddr3-hynix-4GB.c │ │ │ │ ├── sdram-lpddr3-micron-2GB.c │ │ │ │ ├── sdram-lpddr3-micron-4GB.c │ │ │ │ ├── sdram-lpddr3-samsung-2GB-24EB.c │ │ │ │ └── sdram-lpddr3-samsung-4GB-04EB.c │ │ ├── jecht │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── hda_verb.c │ │ │ ├── lan.c │ │ │ ├── led.c │ │ │ ├── mainboard.c │ │ │ ├── onboard.h │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ ├── spd │ │ │ │ ├── Makefile.inc │ │ │ │ ├── spd.c │ │ │ │ └── spd.h │ │ │ └── variants │ │ │ │ ├── guado │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ └── thermal.asl │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── thermal.h │ │ │ │ └── pei_data.c │ │ │ │ ├── jecht │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ └── thermal.asl │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── thermal.h │ │ │ │ └── pei_data.c │ │ │ │ ├── rikku │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ └── thermal.asl │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── thermal.h │ │ │ │ └── pei_data.c │ │ │ │ └── tidus │ │ │ │ ├── include │ │ │ │ └── variant │ │ │ │ │ ├── acpi │ │ │ │ │ └── thermal.asl │ │ │ │ │ ├── gpio.h │ │ │ │ │ └── thermal.h │ │ │ │ └── pei_data.c │ │ ├── lars │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dptf.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock_mainboard.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── gpio.h │ │ │ ├── mainboard.c │ │ │ ├── pei_data.c │ │ │ ├── ramstage.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── spd │ │ │ │ ├── Makefile.inc │ │ │ │ ├── empty.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNN8JTBLAR-NUD-1G-1866.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNNBLTBLAR-NUD-2G-1866.spd.hex │ │ │ │ ├── samsung_dimm_K4E6E304EB-EGCF-2G-1866.spd.hex │ │ │ │ ├── samsung_dimm_K4E8E324EB-EGCF-1G-1866.spd.hex │ │ │ │ ├── spd.c │ │ │ │ └── spd.h │ │ ├── link │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── ivybridge_pci_irqs.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── sandybridge_pci_irqs.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── elpida_4Gb_1600_x16.spd.hex │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── i915.c │ │ │ ├── i915io.c │ │ │ ├── i915io.h │ │ │ ├── intel_dp.c │ │ │ ├── mainboard.c │ │ │ ├── mainboard_smi.c │ │ │ ├── micron_4Gb_1600_1.35v_x16.spd.hex │ │ │ ├── onboard.h │ │ │ ├── romstage.c │ │ │ ├── samsung_4Gb_1600_1.35v_x16.spd.hex │ │ │ └── thermal.h │ │ ├── nyan │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── bct │ │ │ │ ├── Makefile.inc │ │ │ │ ├── cfg2inc.sh │ │ │ │ ├── emmc.cfg │ │ │ │ ├── odmdata.cfg │ │ │ │ ├── sdram-hynix-2GB-792.inc │ │ │ │ ├── sdram-hynix-2GB-924.inc │ │ │ │ ├── sdram-hynix-4GB-300.inc │ │ │ │ ├── sdram-hynix-4GB-792.inc │ │ │ │ ├── sdram-unused.inc │ │ │ │ └── spi.cfg │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── early_configs.c │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── pmic.c │ │ │ ├── pmic.h │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ ├── sdram_configs.c │ │ │ └── sdram_configs.h │ │ ├── nyan_big │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── bct │ │ │ │ ├── Makefile.inc │ │ │ │ ├── emmc.cfg │ │ │ │ ├── odmdata.cfg │ │ │ │ ├── sdram-hynix-2GB-204.inc │ │ │ │ ├── sdram-hynix-2GB-792.inc │ │ │ │ ├── sdram-hynix-2GB-924.inc │ │ │ │ ├── sdram-hynix-4GB-204.inc │ │ │ │ ├── sdram-hynix-4GB-792.inc │ │ │ │ ├── sdram-kingston-2GB-792.inc │ │ │ │ ├── sdram-unused.inc │ │ │ │ └── spi.cfg │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── early_configs.c │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── pmic.c │ │ │ ├── pmic.h │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ ├── sdram_configs.c │ │ │ └── sdram_configs.h │ │ ├── nyan_blaze │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── bct │ │ │ │ ├── Makefile.inc │ │ │ │ ├── emmc.cfg │ │ │ │ ├── odmdata.cfg │ │ │ │ ├── sdram-hynix-2GB-204.inc │ │ │ │ ├── sdram-hynix-2GB-792.inc │ │ │ │ ├── sdram-hynix-2GB-924.inc │ │ │ │ ├── sdram-hynix-4GB-204.inc │ │ │ │ ├── sdram-hynix-4GB-792.inc │ │ │ │ ├── sdram-hynix-C-2GB-792.inc │ │ │ │ ├── sdram-micron-2GB-792.inc │ │ │ │ ├── sdram-micron-4GB-792.inc │ │ │ │ ├── sdram-samsung-2GB-204.inc │ │ │ │ ├── sdram-samsung-2GB-792.inc │ │ │ │ ├── sdram-samsung-4GB-204.inc │ │ │ │ ├── sdram-samsung-4GB-792.inc │ │ │ │ ├── sdram-unused.inc │ │ │ │ └── spi.cfg │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── early_configs.c │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── pmic.c │ │ │ ├── pmic.h │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ ├── sdram_configs.c │ │ │ └── sdram_configs.h │ │ ├── oak │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── gpio.h │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── romstage.c │ │ │ ├── sdram_configs.c │ │ │ ├── sdram_inf │ │ │ │ ├── sdram-lpddr3-H9CCNNN8GTMLAR-2GB.inc │ │ │ │ ├── sdram-lpddr3-H9CCNNNBJTALAR-4GB.inc │ │ │ │ ├── sdram-lpddr3-H9CCNNNBLTBLAR-4GB.inc │ │ │ │ ├── sdram-lpddr3-K4E6E304EB-4GB.inc │ │ │ │ ├── sdram-lpddr3-K4E6E304EE-4GB.inc │ │ │ │ ├── sdram-lpddr3-K4E8E304EE-2GB.inc │ │ │ │ ├── sdram-lpddr3-K4E8E324EB-2GB.inc │ │ │ │ ├── sdram-lpddr3-MT52L256M32D1PF-2GB.inc │ │ │ │ ├── sdram-lpddr3-MT52L512M32D2PF-4GB.inc │ │ │ │ └── sdram-unused.inc │ │ │ └── tpm_tis.c │ │ ├── parrot │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── ivybridge_pci_irqs.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── sandybridge_pci_irqs.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── onboard.h │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── thermal.h │ │ ├── peach_pit │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── memory.c │ │ │ ├── romstage.c │ │ │ └── wakeup.c │ │ ├── poppy │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── mainboard.c │ │ │ ├── ramstage.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ ├── spd │ │ │ │ ├── Makefile.inc │ │ │ │ ├── empty.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNNBKTALBR-NUD.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNNCPTALBR-NUD.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNNFAGMLLR-NUD.spd.hex │ │ │ │ ├── micron_dimm_MT52L1G64D8QC-107.spd.hex │ │ │ │ ├── micron_dimm_MT52L256M64D2PP-107.spd.hex │ │ │ │ ├── micron_dimm_MT52L512M64D4PQ-107.spd.hex │ │ │ │ ├── samsung_dimm_K3QF3F30BM-AGCF.spd.hex │ │ │ │ └── samsung_dimm_K3QF4F40BM-AGCF.spd.hex │ │ │ └── variants │ │ │ │ ├── baseboard │ │ │ │ ├── Makefile.inc │ │ │ │ ├── boardid.c │ │ │ │ ├── devicetree.cb │ │ │ │ ├── gpio.c │ │ │ │ ├── include │ │ │ │ │ └── baseboard │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ └── dptf.asl │ │ │ │ │ │ ├── ec.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── variants.h │ │ │ │ ├── memory.c │ │ │ │ └── nhlt.c │ │ │ │ ├── poppy │ │ │ │ ├── Makefile.inc │ │ │ │ └── include │ │ │ │ │ └── variant │ │ │ │ │ ├── acpi │ │ │ │ │ └── dptf.asl │ │ │ │ │ ├── ec.h │ │ │ │ │ └── gpio.h │ │ │ │ └── soraka │ │ │ │ ├── Makefile.inc │ │ │ │ └── include │ │ │ │ └── variant │ │ │ │ ├── acpi │ │ │ │ └── dptf.asl │ │ │ │ ├── ec.h │ │ │ │ └── gpio.h │ │ ├── purin │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ └── reset.c │ │ ├── rambi │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dptf.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── superio.asl │ │ │ │ ├── touchscreen_atmel.asl │ │ │ │ ├── touchscreen_elan.asl │ │ │ │ ├── touchscreen_wdt.asl │ │ │ │ ├── trackpad_atmel.asl │ │ │ │ └── trackpad_elan.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── fadt.c │ │ │ ├── irqroute.c │ │ │ ├── irqroute.h │ │ │ ├── mainboard.c │ │ │ ├── mainboard_smi.c │ │ │ ├── romstage.c │ │ │ ├── spd │ │ │ │ ├── HT_micron_HTTC4G63CFR-PBA_x16_4Gb.spd.hex │ │ │ │ ├── Hynix_HMT425S6CFR6A_H5TC4G63CFR.spd.hex │ │ │ │ ├── Samsung_2Gib_K4B4G1646Q-HYK0.spd.hex │ │ │ │ ├── Samsung_2Gib_M471B5674QH0.spd.hex │ │ │ │ ├── elpida_2GiB_dimm_EDJ4216EFBG-GNL-F.spd.hex │ │ │ │ ├── empty.spd.hex │ │ │ │ ├── hynix_1GiB_dimm_H5TC2G63FFR-PBA.spd.hex │ │ │ │ ├── hynix_2GiB_dimm_H5TC4G63AFR-PBA.spd.hex │ │ │ │ ├── hynix_2GiB_dimm_H5TC4G63CFR-PBA.spd.hex │ │ │ │ ├── hynix_2GiB_dimm_H5TC4G63MFR-PBA.spd.hex │ │ │ │ ├── micron_1GiB_dimm_MT41K128M16JT-125.spd.hex │ │ │ │ ├── micron_2GiB_dimm_MT41K256M16HA-125.spd.hex │ │ │ │ ├── micron_2GiB_dimm_MT41K256M16HA-125a.spd.hex │ │ │ │ ├── micron_2GiB_dimm_MT41K256M16TW-107.spd.hex │ │ │ │ ├── samsung_1GiB_dimm_K4B2G1646Q-BYK0.spd.hex │ │ │ │ ├── samsung_2GiB_dimm_K4B4G1646E-BYK0.spd.hex │ │ │ │ └── samsung_2GiB_dimm_K4B4G1646Q-HYK0.spd.hex │ │ │ ├── variants │ │ │ │ ├── banjo │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ └── variant.h │ │ │ │ ├── candy │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ └── variant.h │ │ │ │ ├── clapper │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ └── variant.h │ │ │ │ ├── enguarde │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ └── variant.h │ │ │ │ ├── glimmer │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ └── variant.h │ │ │ │ ├── gnawty │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ └── variant.h │ │ │ │ ├── heli │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ └── variant.h │ │ │ │ ├── kip │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ └── variant.h │ │ │ │ ├── ninja │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ │ └── variant.h │ │ │ │ │ └── lan.c │ │ │ │ ├── orco │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ └── variant.h │ │ │ │ ├── quawks │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ └── variant.h │ │ │ │ ├── rambi │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ └── variant.h │ │ │ │ ├── squawks │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ └── variant.h │ │ │ │ ├── sumo │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ │ └── variant.h │ │ │ │ │ └── lan.c │ │ │ │ ├── swanky │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ ├── dptf.asl │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ ├── onboard.h │ │ │ │ │ │ └── variant.h │ │ │ │ └── winky │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ ├── devicetree.cb │ │ │ │ │ ├── gpio.c │ │ │ │ │ └── include │ │ │ │ │ └── variant │ │ │ │ │ ├── acpi │ │ │ │ │ ├── dptf.asl │ │ │ │ │ └── mainboard.asl │ │ │ │ │ ├── onboard.h │ │ │ │ │ └── variant.h │ │ │ └── w25q64.c │ │ ├── reef │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── variants │ │ │ │ ├── baseboard │ │ │ │ ├── Makefile.inc │ │ │ │ ├── boardid.c │ │ │ │ ├── devicetree.cb │ │ │ │ ├── gpio.c │ │ │ │ ├── include │ │ │ │ │ └── baseboard │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ └── dptf.asl │ │ │ │ │ │ ├── ec.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── variants.h │ │ │ │ ├── memory.c │ │ │ │ └── nhlt.c │ │ │ │ ├── nasher │ │ │ │ └── include │ │ │ │ │ └── variant │ │ │ │ │ ├── acpi │ │ │ │ │ └── dptf.asl │ │ │ │ │ ├── ec.h │ │ │ │ │ └── gpio.h │ │ │ │ ├── pyro │ │ │ │ ├── Makefile.inc │ │ │ │ ├── devicetree.cb │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ └── dptf.asl │ │ │ │ │ │ ├── ec.h │ │ │ │ │ │ └── gpio.h │ │ │ │ └── memory.c │ │ │ │ ├── reef │ │ │ │ └── include │ │ │ │ │ └── variant │ │ │ │ │ ├── acpi │ │ │ │ │ └── dptf.asl │ │ │ │ │ ├── ec.h │ │ │ │ │ └── gpio.h │ │ │ │ ├── sand │ │ │ │ ├── devicetree.cb │ │ │ │ └── include │ │ │ │ │ └── variant │ │ │ │ │ ├── acpi │ │ │ │ │ └── dptf.asl │ │ │ │ │ ├── ec.h │ │ │ │ │ └── gpio.h │ │ │ │ └── snappy │ │ │ │ ├── devicetree.cb │ │ │ │ └── include │ │ │ │ └── variant │ │ │ │ ├── acpi │ │ │ │ └── dptf.asl │ │ │ │ ├── ec.h │ │ │ │ └── gpio.h │ │ ├── rotor │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board.h │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── dram_params.c │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ └── reset.c │ │ ├── slippy │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── haswell_pci_irqs.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── fadt.c │ │ │ ├── gma-mainboard.ads │ │ │ ├── mainboard.c │ │ │ ├── onboard.h │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ ├── thermal.h │ │ │ ├── variant.h │ │ │ └── variants │ │ │ │ ├── falco │ │ │ │ ├── Makefile.inc │ │ │ │ ├── devicetree.cb │ │ │ │ ├── hda_verb.c │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ └── gpio.h │ │ │ │ ├── romstage.c │ │ │ │ └── spd │ │ │ │ │ ├── Elpida_EDJ4216EFBG.spd.hex │ │ │ │ │ ├── Hynix_HMT425S6AFR6A.spd.hex │ │ │ │ │ ├── Micron_4KTF25664HZ.spd.hex │ │ │ │ │ └── Samsung_M471B5674QH0.spd.hex │ │ │ │ ├── leon │ │ │ │ ├── Makefile.inc │ │ │ │ ├── devicetree.cb │ │ │ │ ├── hda_verb.c │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ └── gpio.h │ │ │ │ ├── romstage.c │ │ │ │ └── spd │ │ │ │ │ ├── Hynix_HMT425S6AFR6A.spd.hex │ │ │ │ │ ├── Micron_4KTF25664HZ.spd.hex │ │ │ │ │ └── Samsung_K4B4G1646Q.spd.hex │ │ │ │ ├── peppy │ │ │ │ ├── Makefile.inc │ │ │ │ ├── devicetree.cb │ │ │ │ ├── hda_verb.c │ │ │ │ ├── include │ │ │ │ │ └── variant │ │ │ │ │ │ ├── acpi │ │ │ │ │ │ └── mainboard.asl │ │ │ │ │ │ └── gpio.h │ │ │ │ ├── romstage.c │ │ │ │ └── spd │ │ │ │ │ ├── Elpida_EDJ4216EFBG.spd.hex │ │ │ │ │ ├── Hynix_HMT425S6AFR6A.spd.hex │ │ │ │ │ └── Micron_4KTF25664HZ.spd.hex │ │ │ │ └── wolf │ │ │ │ ├── Makefile.inc │ │ │ │ ├── devicetree.cb │ │ │ │ ├── hda_verb.c │ │ │ │ ├── include │ │ │ │ └── variant │ │ │ │ │ ├── acpi │ │ │ │ │ └── mainboard.asl │ │ │ │ │ └── gpio.h │ │ │ │ ├── romstage.c │ │ │ │ └── spd │ │ │ │ ├── Hynix_HMT425S6AFR6A.spd.hex │ │ │ │ ├── Micron_4KTF25664HZ.spd.hex │ │ │ │ └── Samsung_K4B4G1646B.spd.hex │ │ ├── smaug │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── bct │ │ │ │ ├── Makefile.inc │ │ │ │ ├── cfg2inc.sh │ │ │ │ ├── emmc.cfg │ │ │ │ ├── jtag.cfg │ │ │ │ ├── odmdata.cfg │ │ │ │ ├── sdram-samsung-204.cfg │ │ │ │ ├── sdram-samsung-3GB-204.inc │ │ │ │ ├── sdram-samsung-4GB-204.inc │ │ │ │ ├── sdram-unused.inc │ │ │ │ └── spi.cfg │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── gpio.h │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── pmic.c │ │ │ ├── pmic.h │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ └── sdram_configs.c │ │ ├── storm │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── cdp.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── gsbi.c │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── mmu.c │ │ │ ├── mmu.h │ │ │ ├── reset.c │ │ │ └── romstage.c │ │ ├── stout │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── sandybridge_pci_irqs.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── mainboard_smi.c │ │ │ ├── onboard.h │ │ │ ├── romstage.c │ │ │ └── thermal.h │ │ ├── urara │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ └── urara_boardid.h │ │ ├── veyron │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board.h │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ ├── sdram_configs.c │ │ │ └── sdram_inf │ │ │ │ ├── sdram-ddr3-hynix-2GB.inc │ │ │ │ ├── sdram-ddr3-hynix-4GB.inc │ │ │ │ ├── sdram-ddr3-nanya-2GB.inc │ │ │ │ ├── sdram-ddr3-samsung-2GB.inc │ │ │ │ ├── sdram-ddr3-samsung-4GB.inc │ │ │ │ ├── sdram-lpddr3-elpida-2GB.inc │ │ │ │ ├── sdram-lpddr3-elpida-4GB.inc │ │ │ │ ├── sdram-lpddr3-hynix-2GB-2ranks.inc │ │ │ │ ├── sdram-lpddr3-hynix-2GB-BK.inc │ │ │ │ ├── sdram-lpddr3-hynix-2GB.inc │ │ │ │ ├── sdram-lpddr3-hynix-4GB.inc │ │ │ │ ├── sdram-lpddr3-micron-2GB-D2.inc │ │ │ │ ├── sdram-lpddr3-samsung-2GB-24EB.inc │ │ │ │ ├── sdram-lpddr3-samsung-2GB.inc │ │ │ │ ├── sdram-lpddr3-samsung-4GB-04EB.inc │ │ │ │ ├── sdram-lpddr3-samsung-4GB.inc │ │ │ │ └── sdram-unused.inc │ │ ├── veyron_mickey │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board.h │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ ├── sdram_configs.c │ │ │ └── sdram_inf │ │ │ │ ├── sdram-ddr3-hynix-2GB.inc │ │ │ │ ├── sdram-ddr3-hynix-4GB.inc │ │ │ │ ├── sdram-ddr3-nanya-2GB.inc │ │ │ │ ├── sdram-ddr3-samsung-2GB.inc │ │ │ │ ├── sdram-ddr3-samsung-4GB.inc │ │ │ │ ├── sdram-lpddr3-elpida-2GB.inc │ │ │ │ ├── sdram-lpddr3-elpida-4GB.inc │ │ │ │ ├── sdram-lpddr3-hynix-2GB-2ranks.inc │ │ │ │ ├── sdram-lpddr3-hynix-2GB-BK.inc │ │ │ │ ├── sdram-lpddr3-hynix-2GB.inc │ │ │ │ ├── sdram-lpddr3-hynix-4GB.inc │ │ │ │ ├── sdram-lpddr3-micron-2GB-D2.inc │ │ │ │ ├── sdram-lpddr3-samsung-2GB-24EB.inc │ │ │ │ ├── sdram-lpddr3-samsung-2GB.inc │ │ │ │ ├── sdram-lpddr3-samsung-4GB-04EB.inc │ │ │ │ ├── sdram-lpddr3-samsung-4GB.inc │ │ │ │ └── sdram-unused.inc │ │ └── veyron_rialto │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board.h │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── devicetree.cb │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ ├── sdram_configs.c │ │ │ └── sdram_inf │ │ │ ├── sdram-lpddr3-K4E6E304EB-2GB-1CH.inc │ │ │ ├── sdram-lpddr3-K4E8E304EE-1GB.inc │ │ │ └── sdram-unused.inc │ ├── hp │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── abm │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── si.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── dl145_g1 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── amd8111.asl │ │ │ │ ├── amd8111_isa.asl │ │ │ │ ├── amd8111_pic.asl │ │ │ │ ├── amd8131.asl │ │ │ │ └── pci0_hc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── dl145_g3 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── dl165_g6_fam10 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── e_vectra_p2706t │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ └── pavilion_m6_1035dx │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ ├── AmdImc.asl │ │ │ ├── ec.asl │ │ │ ├── gpe.asl │ │ │ ├── mainboard.asl │ │ │ ├── routing.asl │ │ │ ├── sata.asl │ │ │ ├── si.asl │ │ │ ├── sleep.asl │ │ │ ├── superio.asl │ │ │ ├── thermal.asl │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mainboard.h │ │ │ ├── mainboard_smi.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ ├── ibase │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── mb899 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ec.asl │ │ │ ├── i945_pci_irqs.asl │ │ │ ├── ich7_pci_irqs.asl │ │ │ ├── platform.asl │ │ │ ├── superio.asl │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── romstage.c │ │ │ ├── superio_hwm.c │ │ │ └── superio_hwm.h │ ├── iei │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── kino-780am2-fam10 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── cpstate.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── pcisa-lx-800-r10 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── pm-lx-800-r11 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ └── pm-lx2-800-r10 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ ├── intel │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── apollolake_rvp │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ └── romstage.c │ │ ├── bakersport_fsp │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ └── board_info.txt │ │ ├── baskingridge │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── haswell_pci_irqs.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.h │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── mainboard_smi.c │ │ │ ├── romstage.c │ │ │ └── thermal.h │ │ ├── bayleybay_fsp │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.c │ │ │ ├── irqroute.c │ │ │ ├── irqroute.h │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ └── thermal.h │ │ ├── camelbackmountain_fsp │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── mainboard.asl │ │ │ │ └── platform.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── irqroute.c │ │ │ ├── irqroute.h │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ │ ├── cougar_canyon2 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── hostbridge_pci_irqs.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.h │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── mainboard_smi.c │ │ │ ├── romstage.c │ │ │ └── thermal.h │ │ ├── d510mo │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── ich7_pci_irqs.asl │ │ │ │ ├── pineview_pci_irqs.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ │ ├── d810e2cb │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── gpio.c │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── d945gclf │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── i945_pci_irqs.asl │ │ │ │ ├── ich7_pci_irqs.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── eagleheights │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── debug.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── ioapic.h │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── emeraldlake2 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── ivybridge_pci_irqs.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── thermal.h │ │ ├── galileo │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gen1.h │ │ │ ├── gen2.h │ │ │ ├── gpio.c │ │ │ ├── mainboard.c │ │ │ ├── reg_access.c │ │ │ ├── reg_access.h │ │ │ ├── romstage.c │ │ │ ├── vboot.c │ │ │ └── vboot.fmd │ │ ├── kblrvp │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dptf.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_id.c │ │ │ ├── board_id.h │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── ramstage.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ ├── spd │ │ │ │ ├── Makefile.inc │ │ │ │ ├── empty.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNNBJTMLAR.spd.hex │ │ │ │ ├── rvp3.spd.hex │ │ │ │ ├── spd.h │ │ │ │ └── spd_util.c │ │ │ └── variants │ │ │ │ ├── rvp3 │ │ │ │ ├── devicetree.cb │ │ │ │ └── include │ │ │ │ │ └── variant │ │ │ │ │ ├── gpio.h │ │ │ │ │ └── hda_verb.h │ │ │ │ └── rvp7 │ │ │ │ ├── devicetree.cb │ │ │ │ └── include │ │ │ │ └── variant │ │ │ │ ├── gpio.h │ │ │ │ └── hda_verb.h │ │ ├── kunimitsu │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dptf.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── bootblock_mainboard.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── gpio.h │ │ │ ├── mainboard.c │ │ │ ├── pei_data.c │ │ │ ├── ramstage.c │ │ │ ├── romstage.c │ │ │ ├── romstage_fsp20.c │ │ │ ├── smihandler.c │ │ │ └── spd │ │ │ │ ├── Makefile.inc │ │ │ │ ├── empty.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNN8JTALAR-NUD-1G-1866.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNN8JTBLAR-NUD-1G-1866.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNNBLTALAR-NUD-2G-1866.spd.hex │ │ │ │ ├── hynix_dimm_H9CCNNNBLTBLAR-NUD-2G-1866.spd.hex │ │ │ │ ├── mic_dimm_EDF8132A3MA-JD-F-1G-1866.spd.hex │ │ │ │ ├── samsung_dimm_K4E6E304EE-EGCF-2G-1866.spd.hex │ │ │ │ ├── samsung_dimm_K4E8E304EE-EGCE.spd.hex │ │ │ │ ├── samsung_dimm_K4E8E304EE-EGCF-1G-1866.spd.hex │ │ │ │ ├── spd.c │ │ │ │ ├── spd.h │ │ │ │ └── spd_util.c │ │ ├── leafhill │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── brd_gpio.h │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── leafhill.16384.fmd │ │ │ ├── leafhill.8192.fmd │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ │ ├── littleplains │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── config_seabios │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.h │ │ │ ├── irq_tables.c │ │ │ ├── irqroute.c │ │ │ ├── irqroute.h │ │ │ ├── romstage.c │ │ │ └── thermal.h │ │ ├── minnow3 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── mainboard.c │ │ │ ├── minnow3.fmd │ │ │ └── romstage.c │ │ ├── minnowmax │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.c │ │ │ ├── irqroute.c │ │ │ ├── irqroute.h │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ │ ├── mohonpeak │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── config_seabios │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.h │ │ │ ├── irq_tables.c │ │ │ ├── irqroute.c │ │ │ ├── irqroute.h │ │ │ ├── romstage.c │ │ │ └── thermal.h │ │ ├── mtarvon │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── stargo2 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── hostbridge_pci_irqs.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.h │ │ │ ├── mainboard.c │ │ │ ├── mainboard_smi.c │ │ │ ├── romstage.c │ │ │ └── thermal.h │ │ ├── strago │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dptf.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── boardid.c │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── com_init.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── fadt.c │ │ │ ├── gpio.c │ │ │ ├── irqroute.c │ │ │ ├── irqroute.h │ │ │ ├── mainboard.c │ │ │ ├── onboard.h │ │ │ ├── ramstage.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── w25q64.c │ │ ├── truxton │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ └── wtm2 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ec.asl │ │ │ ├── mainboard.asl │ │ │ ├── platform.asl │ │ │ ├── superio.asl │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.h │ │ │ ├── graphics.c │ │ │ ├── hda_verb.c │ │ │ ├── i915.c │ │ │ ├── intel_dp.c │ │ │ ├── mainboard.c │ │ │ ├── pei_data.c │ │ │ ├── romstage.c │ │ │ └── thermal.h │ ├── iwave │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── iWRainbowG6 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── cpu.asl │ │ │ ├── ec.asl │ │ │ ├── northbridge_pci_irqs.asl │ │ │ ├── platform.asl │ │ │ ├── sleepstates.asl │ │ │ ├── southbridge_pci_irqs.asl │ │ │ ├── superio.asl │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ ├── iwill │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── dk8_htx │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── amd8111.asl │ │ │ ├── amd8111_isa.asl │ │ │ ├── amd8111_pic.asl │ │ │ ├── amd8131.asl │ │ │ ├── amd8131_2.asl │ │ │ ├── amd8132_2.asl │ │ │ ├── amd8151.asl │ │ │ ├── htx_no_ioapic.asl │ │ │ ├── pci0_hc.asl │ │ │ ├── pci2_hc.asl │ │ │ ├── pci3_hc.asl │ │ │ ├── pci4_hc.asl │ │ │ ├── pci5_hc.asl │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mainboard.h │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ ├── romstage.c │ │ │ ├── ssdt2.asl │ │ │ ├── ssdt3.asl │ │ │ ├── ssdt4.asl │ │ │ └── ssdt5.asl │ ├── jetway │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── j7f2 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── j7f4k1g2e │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ └── board_info.txt │ │ ├── j7f4k1g5d │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ └── board_info.txt │ │ ├── nf81-t56n-lf │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── PlatformGnbPcieComplex.h │ │ │ ├── acpi │ │ │ │ ├── gpe.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ └── romstage.c │ │ └── pa78vm5 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ ├── cpstate.asl │ │ │ ├── ide.asl │ │ │ ├── routing.asl │ │ │ ├── sata.asl │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ ├── kontron │ │ ├── 986lcd-m │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── i945_pci_irqs.asl │ │ │ │ ├── ich7_pci_irqs.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── kt690 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ └── ktqm77 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ec.asl │ │ │ ├── mainboard.asl │ │ │ ├── platform.asl │ │ │ ├── superio.asl │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gma-mainboard.ads │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ └── thermal.h │ ├── lanner │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── em8510 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── lenovo │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── g505s │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── si.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ ├── thermal.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mainboard.h │ │ │ ├── mainboard_smi.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── l520 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── thermal.h │ │ ├── r400 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ └── board_info.txt │ │ ├── s230u │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── spd │ │ │ │ ├── elpida_2gb.spd.hex │ │ │ │ ├── elpida_4gb.spd.hex │ │ │ │ ├── elpida_8gb.spd.hex │ │ │ │ ├── hynix_2gb.spd.hex │ │ │ │ ├── hynix_4gb.spd.hex │ │ │ │ ├── samsung_2gb.spd.hex │ │ │ │ └── samsung_4gb.spd.hex │ │ ├── t400 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dock.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── gm45_pci_irqs.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── graphics.asl │ │ │ │ ├── ich9_pci_irqs.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── devicetree.cb │ │ │ ├── dock.c │ │ │ ├── dock.h │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.h │ │ │ ├── hda_verb.c │ │ │ ├── hybrid_graphics.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── t420 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gma-mainboard.ads │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── thermal.h │ │ ├── t420s │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── thermal.h │ │ ├── t430s │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── thermal.h │ │ ├── t500 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ └── board_info.txt │ │ ├── t520 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── thermal.h │ │ ├── t530 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── thermal.h │ │ ├── t60 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dock.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── i945_pci_irqs.asl │ │ │ │ ├── ich7_pci_irqs.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ └── video.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dock.c │ │ │ ├── dock.h │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── romstage.c │ │ │ ├── smi.h │ │ │ └── smihandler.c │ │ ├── x1_carbon_gen1 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gma-mainboard.ads │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ ├── spd │ │ │ │ ├── Makefile.inc │ │ │ │ └── elpida.hex │ │ │ └── thermal.h │ │ ├── x200 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dock.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── gm45_pci_irqs.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── ich9_pci_irqs.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── devicetree.cb │ │ │ ├── dock.c │ │ │ ├── dock.h │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.h │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── x201 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── dock.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dock.c │ │ │ ├── dock.h │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smi.h │ │ │ └── smihandler.c │ │ ├── x220 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── thermal.h │ │ ├── x230 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── platform.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gma-mainboard.ads │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── thermal.h │ │ └── x60 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── dock.asl │ │ │ ├── ec.asl │ │ │ ├── gpe.asl │ │ │ ├── i945_pci_irqs.asl │ │ │ ├── ich7_pci_irqs.asl │ │ │ ├── mainboard.asl │ │ │ ├── platform.asl │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dock.c │ │ │ ├── dock.h │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── romstage.c │ │ │ ├── smi.h │ │ │ └── smihandler.c │ ├── linutop │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── linutop1 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ └── board_info.txt │ ├── lippert │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── frontrunner-af │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── PlatformGnbPcieComplex.h │ │ │ ├── acpi │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── superio.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ └── romstage.c │ │ ├── frontrunner │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── hurricane-lx │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ │ ├── literunner-lx │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ │ ├── roadrunner-lx │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ │ ├── spacerunner-lx │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ │ └── toucan-af │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── PlatformGnbPcieComplex.h │ │ │ ├── acpi │ │ │ ├── routing.asl │ │ │ ├── sata.asl │ │ │ ├── superio.asl │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ └── romstage.c │ ├── lowrisc │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── nexys4ddr │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── mainboard.c │ │ │ ├── memlayout.ld │ │ │ ├── rom_media.c │ │ │ ├── romstage.c │ │ │ └── uart.c │ ├── mitac │ │ ├── 6513wu │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── Kconfig │ │ └── Kconfig.name │ ├── msi │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── ms6119 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── ms6147 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── ms6156 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── ms6178 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── ms7135 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── ms7260 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── ms7721 │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ │ ├── AmdImc.asl │ │ │ │ ├── cpstate.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── si.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── ms9185 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── ms9282 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ └── ms9652_fam10 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ ├── nec │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── powermate2000 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── nokia │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── ip530 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── nvidia │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── l1_2pvv │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ ├── packardbell │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── ms2290 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ac.asl │ │ │ ├── battery.asl │ │ │ ├── ec.asl │ │ │ ├── gpe.asl │ │ │ ├── platform.asl │ │ │ ├── superio.asl │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ └── smihandler.c │ ├── pcengines │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── alix1c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── alix2c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ └── board_info.txt │ │ ├── alix2d │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── alix6 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ └── board_info.txt │ │ ├── apu1 │ │ │ ├── BiosCallOuts.c │ │ │ ├── HYNIX-H5TQ2G83CFR.spd.hex │ │ │ ├── HYNIX-H5TQ4G83MFR.spd.hex │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── PlatformGnbPcieComplex.h │ │ │ ├── acpi │ │ │ │ ├── buttons.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── gpio.asl │ │ │ │ ├── leds.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleep.asl │ │ │ │ ├── superio.asl │ │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio_ftns.c │ │ │ ├── gpio_ftns.h │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ └── romstage.c │ │ └── apu2 │ │ │ ├── BiosCallOuts.c │ │ │ ├── HYNIX-2G-1333.spd.hex │ │ │ ├── HYNIX-4G-1333-ECC.spd.hex │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── acpi │ │ │ ├── AmdImc.asl │ │ │ ├── gpe.asl │ │ │ ├── mainboard.asl │ │ │ ├── routing.asl │ │ │ ├── si.asl │ │ │ ├── sleep.asl │ │ │ └── usb_oc.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio_ftns.c │ │ │ ├── gpio_ftns.h │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ ├── purism │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── librem13 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ec.asl │ │ │ ├── mainboard.asl │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.h │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── pei_data.c │ │ │ └── romstage.c │ ├── rca │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── rm4100 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── gpio.c │ │ │ ├── irq_tables.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── spd_table.h │ ├── roda │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── rk886ex │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── battery.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── i945_pci_irqs.asl │ │ │ │ ├── ich7_pci_irqs.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── m3885.c │ │ │ ├── m3885.h │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ ├── rk9 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── battery.asl │ │ │ │ ├── ec.asl │ │ │ │ ├── gm45_pci_irqs.asl │ │ │ │ ├── gpe.asl │ │ │ │ ├── ich9_pci_irqs.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── cstates.c │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── ti_pci7xx1.c │ │ └── rv11 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── alsd.asl │ │ │ ├── ec.asl │ │ │ ├── mainboard.asl │ │ │ ├── platform.asl │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── romstage.c │ │ │ └── variants │ │ │ ├── rv11 │ │ │ ├── devicetree.cb │ │ │ ├── gma-mainboard.ads │ │ │ ├── include │ │ │ │ ├── acpi │ │ │ │ │ ├── brightness_levels.asl │ │ │ │ │ └── superio.asl │ │ │ │ └── variant │ │ │ │ │ ├── hda_verb.h │ │ │ │ │ └── thermal.h │ │ │ └── romstage.c │ │ │ └── rw11 │ │ │ ├── devicetree.cb │ │ │ ├── gma-mainboard.ads │ │ │ ├── include │ │ │ ├── acpi │ │ │ │ ├── brightness_levels.asl │ │ │ │ └── superio.asl │ │ │ └── variant │ │ │ │ ├── hda_verb.h │ │ │ │ └── thermal.h │ │ │ └── romstage.c │ ├── samsung │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── lumpy │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── sandybridge_pci_irqs.asl │ │ │ │ ├── superio.asl │ │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── ec.c │ │ │ ├── ec.h │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── onboard.h │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ ├── spd.hex │ │ │ └── thermal.h │ │ └── stumpy │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ec.asl │ │ │ ├── mainboard.asl │ │ │ ├── platform.asl │ │ │ ├── sandybridge_pci_irqs.asl │ │ │ ├── superio.asl │ │ │ └── thermal.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── chromeos.c │ │ │ ├── chromeos.fmd │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── thermal.h │ ├── sapphire │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── pureplatinumh61 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── ec.asl │ │ │ ├── platform.asl │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gma-mainboard.ads │ │ │ ├── gpio.c │ │ │ ├── hda_verb.c │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ ├── siemens │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── mc_apl1 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── brd_gpio.h │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── gpio.c │ │ │ ├── mainboard.c │ │ │ ├── mc_apl1.fmd │ │ │ ├── ptn3460.c │ │ │ ├── ptn3460.h │ │ │ └── romstage.c │ │ ├── mc_bdx1 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── mainboard.asl │ │ │ │ └── platform.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── irqroute.c │ │ │ ├── irqroute.h │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ │ ├── mc_tcu3 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ec.asl │ │ │ │ ├── mainboard.asl │ │ │ │ └── superio.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── gpio.c │ │ │ ├── hwinfo.hex │ │ │ ├── hwinfo10.hex │ │ │ ├── hwinfo12.hex │ │ │ ├── hwinfo15.hex │ │ │ ├── hwinfo19.hex │ │ │ ├── irqroute.c │ │ │ ├── irqroute.h │ │ │ ├── lcd_panel.c │ │ │ ├── lcd_panel.h │ │ │ ├── mainboard.c │ │ │ ├── ptn3460.c │ │ │ ├── ptn3460.h │ │ │ ├── romstage.c │ │ │ └── thermal.h │ │ └── sitemp_g1p1 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ ├── debug.asl │ │ │ ├── event.asl │ │ │ ├── globutil.asl │ │ │ ├── ide.asl │ │ │ ├── platform.asl │ │ │ ├── routing.asl │ │ │ ├── sata.asl │ │ │ ├── statdef.asl │ │ │ ├── thermal.asl │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.default │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── get_bus_conf.c │ │ │ ├── int15_func.c │ │ │ ├── int15_func.h │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mainboard.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ ├── soyo │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── sy-6ba-plus-iii │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── sunw │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── ultra40 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ └── ultra40m2 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ ├── supermicro │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── h8dme │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── h8dmr │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── h8dmr_fam10 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── README │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── hda_verb.c │ │ │ ├── irq_tables.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── h8qgi │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ ├── rd890_cfg.c │ │ │ ├── rd890_cfg.h │ │ │ ├── romstage.c │ │ │ ├── sb700_cfg.c │ │ │ └── sb700_cfg.h │ │ ├── h8qme_fam10 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── h8scm │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ │ ├── cpstate.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ ├── rd890_cfg.c │ │ │ ├── rd890_cfg.h │ │ │ ├── romstage.c │ │ │ ├── sb700_cfg.c │ │ │ └── sb700_cfg.h │ │ ├── h8scm_fam10 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ │ ├── cpstate.asl │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ └── x7db8 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── technexion │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── tim5690 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ide.asl │ │ │ │ ├── routing.asl │ │ │ │ ├── sata.asl │ │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ ├── romstage.c │ │ │ ├── speaker.c │ │ │ ├── speaker.h │ │ │ ├── tn_post_code.c │ │ │ ├── tn_post_code.h │ │ │ ├── vgabios.c │ │ │ └── vgabios.h │ │ └── tim8690 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ ├── ide.asl │ │ │ ├── routing.asl │ │ │ ├── sata.asl │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ ├── thomson │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── ip1000 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── gpio.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── romstage.c │ │ │ ├── smihandler.c │ │ │ └── spd_table.h │ ├── ti │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── beaglebone │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── board_info.txt │ │ │ ├── bootblock.c │ │ │ ├── devicetree.cb │ │ │ ├── leds.c │ │ │ ├── leds.h │ │ │ ├── memlayout.ld │ │ │ └── romstage.c │ ├── traverse │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── geos │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ ├── turbo │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── sentinel │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── devicetree.cb │ │ │ ├── mainboard.c │ │ │ └── memlayout.ld │ ├── tyan │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── s1846 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ └── romstage.c │ │ ├── s2912 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ ├── s2912_fam10 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mb_sysconf.h │ │ │ ├── mptable.c │ │ │ ├── resourcemap.c │ │ │ └── romstage.c │ │ └── s8226 │ │ │ ├── BiosCallOuts.c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── Makefile.inc │ │ │ ├── OemCustomize.c │ │ │ ├── OptionsIds.h │ │ │ ├── acpi │ │ │ ├── routing.asl │ │ │ ├── sata.asl │ │ │ └── usb.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── buildOpts.c │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ ├── platform_cfg.h │ │ │ ├── rd890_cfg.c │ │ │ ├── rd890_cfg.h │ │ │ ├── romstage.c │ │ │ ├── sb700_cfg.c │ │ │ └── sb700_cfg.h │ ├── via │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── epia-cn │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ │ ├── epia-m700 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── driving_clk_phase_data.c │ │ │ ├── fadt.c │ │ │ ├── get_dsdt.sh │ │ │ ├── irq_tables.c │ │ │ ├── romstage.c │ │ │ ├── wakeup.c │ │ │ └── wakeup.h │ │ ├── epia-m850 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ └── romstage.c │ │ ├── pc2500e │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ └── vt8454c │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi │ │ │ ├── irq-p2p-bridge.asl │ │ │ └── irq.asl │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── fadt.c │ │ │ ├── irq_tables.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ ├── winent │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── mb6047 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── acpi_tables.c │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── dsdt.asl │ │ │ ├── get_bus_conf.c │ │ │ ├── irq_tables.c │ │ │ ├── mainboard.c │ │ │ ├── mptable.c │ │ │ └── romstage.c │ │ └── pl6064 │ │ │ ├── Kconfig │ │ │ ├── Kconfig.name │ │ │ ├── board_info.txt │ │ │ ├── cmos.layout │ │ │ ├── devicetree.cb │ │ │ ├── irq_tables.c │ │ │ └── romstage.c │ └── wyse │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ └── s50 │ │ ├── Kconfig │ │ ├── Kconfig.name │ │ ├── board_info.txt │ │ ├── cmos.layout │ │ ├── devicetree.cb │ │ ├── irq_tables.c │ │ └── romstage.c ├── northbridge │ ├── amd │ │ ├── agesa │ │ │ ├── BiosCallOuts.h │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── agesa_helper.h │ │ │ ├── agesawrapper.c │ │ │ ├── agesawrapper.h │ │ │ ├── common │ │ │ │ ├── Makefile.inc │ │ │ │ ├── common.c │ │ │ │ └── common.h │ │ │ ├── def_callouts.c │ │ │ ├── dimmSpd.h │ │ │ ├── eventlog.c │ │ │ ├── family10 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── amdfam10.h │ │ │ │ ├── northbridge.c │ │ │ │ └── reset_test.h │ │ │ ├── family12 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── amdfam12_conf.c │ │ │ │ ├── dimmSpd.c │ │ │ │ └── northbridge.c │ │ │ ├── family14 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ │ └── northbridge.asl │ │ │ │ ├── amdfam14_conf.c │ │ │ │ ├── chip.h │ │ │ │ ├── dimmSpd.c │ │ │ │ ├── northbridge.c │ │ │ │ └── pci_devs.h │ │ │ ├── family15 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── chip.h │ │ │ │ ├── dimmSpd.c │ │ │ │ └── northbridge.c │ │ │ ├── family15rl │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ │ └── northbridge.asl │ │ │ │ ├── chip.h │ │ │ │ ├── dimmSpd.c │ │ │ │ ├── iommu.c │ │ │ │ └── northbridge.c │ │ │ ├── family15tn │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ │ └── northbridge.asl │ │ │ │ ├── chip.h │ │ │ │ ├── dimmSpd.c │ │ │ │ ├── iommu.c │ │ │ │ ├── northbridge.c │ │ │ │ └── pci_devs.h │ │ │ ├── family16kb │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ │ └── northbridge.asl │ │ │ │ ├── chip.h │ │ │ │ ├── dimmSpd.c │ │ │ │ ├── northbridge.c │ │ │ │ └── pci_devs.h │ │ │ ├── oem_s3.c │ │ │ └── state_machine.h │ │ ├── amdfam10 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── amdfam10.h │ │ │ ├── amdfam10_util.asl │ │ │ ├── amdfam10_util.c │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── early_ht.c │ │ │ ├── early_ht.h │ │ │ ├── get_pci1234.c │ │ │ ├── ht_config.c │ │ │ ├── ht_config.h │ │ │ ├── inline_helper.c │ │ │ ├── link_control.c │ │ │ ├── misc_control.c │ │ │ ├── nb_control.c │ │ │ ├── northbridge.c │ │ │ ├── northbridge.h │ │ │ ├── nums.h │ │ │ ├── pci.c │ │ │ ├── pci.h │ │ │ ├── raminit.h │ │ │ ├── raminit_amdmct.c │ │ │ ├── raminit_sysinfo_in_ram.c │ │ │ ├── reset_test.c │ │ │ ├── resourcemap.c │ │ │ ├── setup_resource_map.c │ │ │ ├── thermal_mixin.asl │ │ │ └── util.c │ │ ├── amdht │ │ │ ├── AsPsDefs.h │ │ │ ├── AsPsNb.c │ │ │ ├── AsPsNb.h │ │ │ ├── Makefile.inc │ │ │ ├── comlib.c │ │ │ ├── comlib.h │ │ │ ├── h3ffeat.h │ │ │ ├── h3finit.c │ │ │ ├── h3finit.h │ │ │ ├── h3gtopo.h │ │ │ ├── h3ncmn.c │ │ │ ├── h3ncmn.h │ │ │ ├── ht_wrapper.c │ │ │ ├── ht_wrapper.h │ │ │ └── porting.h │ │ ├── amdk8 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi.h │ │ │ ├── amdk8.h │ │ │ ├── bootblock.c │ │ │ ├── coherent_ht.c │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── early_ht.c │ │ │ ├── exit_from_self.c │ │ │ ├── f.h │ │ │ ├── f_pci.c │ │ │ ├── get_sblk_pci1234.c │ │ │ ├── incoherent_ht.c │ │ │ ├── misc_control.c │ │ │ ├── northbridge.c │ │ │ ├── northbridge.h │ │ │ ├── pre_f.h │ │ │ ├── raminit.c │ │ │ ├── raminit.h │ │ │ ├── raminit_f.c │ │ │ ├── raminit_f_dqs.c │ │ │ ├── raminit_test.c │ │ │ ├── reset_test.c │ │ │ ├── resourcemap.c │ │ │ ├── setup_resource_map.c │ │ │ ├── thermal_mixin.asl │ │ │ ├── util.asl │ │ │ └── util.c │ │ ├── amdmct │ │ │ ├── amddefs.h │ │ │ ├── mct │ │ │ │ ├── Makefile.inc │ │ │ │ ├── mct.h │ │ │ │ ├── mct_d.c │ │ │ │ ├── mct_d.h │ │ │ │ ├── mct_d_gcc.c │ │ │ │ ├── mct_d_gcc.h │ │ │ │ ├── mctardk3.c │ │ │ │ ├── mctardk4.c │ │ │ │ ├── mctchi_d.c │ │ │ │ ├── mctcsi_d.c │ │ │ │ ├── mctdqs_d.c │ │ │ │ ├── mctecc_d.c │ │ │ │ ├── mctgr.c │ │ │ │ ├── mcthdi.c │ │ │ │ ├── mctmtr_d.c │ │ │ │ ├── mctndi_d.c │ │ │ │ ├── mctpro_d.c │ │ │ │ ├── mctsrc.c │ │ │ │ ├── mctsrc1p.c │ │ │ │ ├── mctsrc2p.c │ │ │ │ └── mcttmrl.c │ │ │ ├── mct_ddr3 │ │ │ │ ├── Makefile.inc │ │ │ │ ├── mct_d.c │ │ │ │ ├── mct_d.h │ │ │ │ ├── mct_d_gcc.c │ │ │ │ ├── mct_d_gcc.h │ │ │ │ ├── mctardk5.c │ │ │ │ ├── mctardk6.c │ │ │ │ ├── mctchi_d.c │ │ │ │ ├── mctcsi_d.c │ │ │ │ ├── mctdqs_d.c │ │ │ │ ├── mctecc_d.c │ │ │ │ ├── mcthdi.c │ │ │ │ ├── mcthwl.c │ │ │ │ ├── mctmtr_d.c │ │ │ │ ├── mctndi_d.c │ │ │ │ ├── mctprob.c │ │ │ │ ├── mctproc.c │ │ │ │ ├── mctprod.c │ │ │ │ ├── mctrci.c │ │ │ │ ├── mctsdi.c │ │ │ │ ├── mctsrc.c │ │ │ │ ├── mctsrc1p.c │ │ │ │ ├── mctsrc2p.c │ │ │ │ ├── mcttmrl.c │ │ │ │ ├── mctwl.c │ │ │ │ ├── mhwlc_d.c │ │ │ │ ├── modtrd.c │ │ │ │ ├── modtrdim.c │ │ │ │ ├── mport_d.c │ │ │ │ ├── mutilc_d.c │ │ │ │ ├── mwlc_d.h │ │ │ │ ├── s3utils.c │ │ │ │ └── s3utils.h │ │ │ └── wrappers │ │ │ │ ├── Makefile.inc │ │ │ │ ├── mcti.h │ │ │ │ └── mcti_d.c │ │ ├── cimx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── rd890 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── NbPlatform.h │ │ │ │ ├── amd.h │ │ │ │ ├── chip.h │ │ │ │ ├── early.c │ │ │ │ ├── late.c │ │ │ │ └── nb_cimx.h │ │ ├── gx2 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── grphinit.c │ │ │ ├── northbridge.c │ │ │ ├── northbridge.h │ │ │ ├── northbridgeinit.c │ │ │ ├── pll_reset.c │ │ │ ├── raminit.c │ │ │ └── raminit.h │ │ ├── lx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── grphinit.c │ │ │ ├── northbridge.c │ │ │ ├── northbridge.h │ │ │ ├── northbridgeinit.c │ │ │ ├── pll_reset.c │ │ │ ├── raminit.c │ │ │ └── raminit.h │ │ └── pi │ │ │ ├── 00630F01 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ └── northbridge.asl │ │ │ ├── chip.h │ │ │ ├── dimmSpd.c │ │ │ ├── iommu.c │ │ │ ├── northbridge.c │ │ │ ├── northbridge.h │ │ │ └── pci_devs.h │ │ │ ├── 00660F01 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ └── northbridge.asl │ │ │ ├── chip.h │ │ │ ├── dimmSpd.c │ │ │ ├── northbridge.c │ │ │ └── northbridge.h │ │ │ ├── 00670F00 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ └── northbridge.asl │ │ │ ├── chip.h │ │ │ ├── dimmSpd.c │ │ │ ├── northbridge.c │ │ │ └── northbridge.h │ │ │ ├── 00730F01 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ └── northbridge.asl │ │ │ ├── chip.h │ │ │ ├── dimmSpd.c │ │ │ ├── northbridge.c │ │ │ ├── northbridge.h │ │ │ └── pci_devs.h │ │ │ ├── BiosCallOuts.h │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── agesawrapper.c │ │ │ ├── agesawrapper.h │ │ │ ├── agesawrapper_call.h │ │ │ ├── def_callouts.c │ │ │ └── dimmSpd.h │ ├── intel │ │ ├── common │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── mrc_cache.c │ │ │ └── mrc_cache.h │ │ ├── e7505 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── debug.c │ │ │ ├── debug.h │ │ │ ├── e7505.h │ │ │ ├── northbridge.c │ │ │ ├── raminit.c │ │ │ └── raminit.h │ │ ├── fsp_rangeley │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── hostbridge.asl │ │ │ │ └── rangeley.asl │ │ │ ├── chip.h │ │ │ ├── fsp │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── chipset_fsp_util.c │ │ │ │ └── chipset_fsp_util.h │ │ │ ├── northbridge.c │ │ │ ├── northbridge.h │ │ │ ├── port_access.c │ │ │ ├── raminit.c │ │ │ └── udelay.c │ │ ├── fsp_sandybridge │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── hostbridge.asl │ │ │ │ └── sandybridge.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_init.c │ │ │ ├── finalize.c │ │ │ ├── fsp │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── chipset_fsp_util.c │ │ │ │ └── chipset_fsp_util.h │ │ │ ├── gma.c │ │ │ ├── northbridge.c │ │ │ ├── northbridge.h │ │ │ ├── northbridge_pci_devs.h │ │ │ ├── ram_calc.c │ │ │ ├── raminit.c │ │ │ ├── raminit.h │ │ │ ├── report_platform.c │ │ │ └── udelay.c │ │ ├── gm45 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── gm45.asl │ │ │ │ ├── hostbridge.asl │ │ │ │ └── peg.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_init.c │ │ │ ├── early_reset.c │ │ │ ├── gm45.h │ │ │ ├── gma.c │ │ │ ├── igd.c │ │ │ ├── iommu.c │ │ │ ├── northbridge.c │ │ │ ├── pcie.c │ │ │ ├── pm.c │ │ │ ├── ram_calc.c │ │ │ ├── raminit.c │ │ │ ├── raminit_rcomp_calibration.c │ │ │ ├── raminit_read_write_training.c │ │ │ ├── raminit_receive_enable_calibration.c │ │ │ └── thermal.c │ │ ├── haswell │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── haswell.asl │ │ │ │ └── hostbridge.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_init.c │ │ │ ├── finalize.c │ │ │ ├── gma.c │ │ │ ├── haswell.h │ │ │ ├── minihd.c │ │ │ ├── northbridge.c │ │ │ ├── pei_data.h │ │ │ ├── ram_calc.c │ │ │ ├── raminit.c │ │ │ ├── raminit.h │ │ │ └── report_platform.c │ │ ├── i3100 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── ep80579.h │ │ │ ├── i3100.h │ │ │ ├── memory_initialized.c │ │ │ ├── northbridge.c │ │ │ ├── pciexp_porta.c │ │ │ ├── pciexp_porta_ep80579.c │ │ │ ├── raminit.c │ │ │ ├── raminit.h │ │ │ ├── raminit_ep80579.c │ │ │ ├── raminit_ep80579.h │ │ │ └── reset_test.c │ │ ├── i440bx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ └── sb_pci0_crs.asl │ │ │ ├── debug.c │ │ │ ├── i440bx.h │ │ │ ├── northbridge.c │ │ │ ├── northbridge.h │ │ │ ├── raminit.c │ │ │ └── raminit.h │ │ ├── i5000 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.c │ │ │ ├── halt_second_bsp.S │ │ │ ├── northbridge.c │ │ │ ├── raminit.c │ │ │ └── raminit.h │ │ ├── i82810 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── debug.c │ │ │ ├── i82810.h │ │ │ ├── northbridge.c │ │ │ ├── northbridge.h │ │ │ ├── raminit.c │ │ │ └── raminit.h │ │ ├── i82830 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── i82830.h │ │ │ ├── memory_initialized.c │ │ │ ├── northbridge.c │ │ │ ├── raminit.c │ │ │ ├── raminit.h │ │ │ ├── smihandler.c │ │ │ └── vga.c │ │ ├── i855 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── debug.c │ │ │ ├── i855.h │ │ │ ├── northbridge.c │ │ │ ├── raminit.c │ │ │ ├── raminit.h │ │ │ └── reset_test.c │ │ ├── i945 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── hostbridge.asl │ │ │ │ ├── i945.asl │ │ │ │ ├── igd.asl │ │ │ │ └── peg.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── debug.c │ │ │ ├── early_init.c │ │ │ ├── errata.c │ │ │ ├── gma.c │ │ │ ├── i945.h │ │ │ ├── northbridge.c │ │ │ ├── ram_calc.c │ │ │ ├── raminit.c │ │ │ ├── raminit.h │ │ │ ├── rcven.c │ │ │ └── udelay.c │ │ ├── nehalem │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── hostbridge.asl │ │ │ │ └── nehalem.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_init.c │ │ │ ├── finalize.c │ │ │ ├── gma.c │ │ │ ├── nehalem.h │ │ │ ├── northbridge.c │ │ │ ├── ram_calc.c │ │ │ ├── raminit.c │ │ │ ├── raminit.h │ │ │ ├── raminit_tables.c │ │ │ └── smi.c │ │ ├── pineview │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── hostbridge.asl │ │ │ │ ├── peg.asl │ │ │ │ └── pineview.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_init.c │ │ │ ├── gma.c │ │ │ ├── iomap.h │ │ │ ├── northbridge.c │ │ │ ├── pineview.h │ │ │ ├── ram_calc.c │ │ │ ├── raminit.c │ │ │ └── raminit.h │ │ ├── sandybridge │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── hostbridge.asl │ │ │ │ └── sandybridge.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_init.c │ │ │ ├── finalize.c │ │ │ ├── gma.c │ │ │ ├── gma.h │ │ │ ├── gma_ivybridge_lvds.c │ │ │ ├── gma_sandybridge_lvds.c │ │ │ ├── iommu.c │ │ │ ├── northbridge.c │ │ │ ├── pei_data.h │ │ │ ├── ram_calc.c │ │ │ ├── raminit.c │ │ │ ├── raminit.h │ │ │ ├── raminit_common.c │ │ │ ├── raminit_common.h │ │ │ ├── raminit_ivy.c │ │ │ ├── raminit_mrc.c │ │ │ ├── raminit_native.h │ │ │ ├── raminit_patterns.h │ │ │ ├── raminit_sandy.c │ │ │ ├── report_platform.c │ │ │ ├── romstage.c │ │ │ ├── sandybridge.h │ │ │ └── udelay.c │ │ └── x4x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ ├── hostbridge.asl │ │ │ ├── peg.asl │ │ │ └── x4x.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_init.c │ │ │ ├── gma.c │ │ │ ├── iomap.h │ │ │ ├── northbridge.c │ │ │ ├── ram_calc.c │ │ │ ├── raminit.c │ │ │ ├── raminit_ddr2.c │ │ │ └── x4x.h │ └── via │ │ ├── cn700 │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── acpi │ │ │ └── hostbridge.asl │ │ ├── agp.c │ │ ├── cn700.h │ │ ├── northbridge.c │ │ ├── northbridge.h │ │ ├── raminit.c │ │ ├── raminit.h │ │ └── vga.c │ │ ├── cx700 │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── agp.c │ │ ├── early_serial.c │ │ ├── early_smbus.c │ │ ├── lpc.c │ │ ├── northbridge.c │ │ ├── raminit.c │ │ ├── raminit.h │ │ ├── registers.h │ │ ├── reset.c │ │ ├── sata.c │ │ ├── usb.c │ │ └── vga.c │ │ ├── vx800 │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── clk_ctrl.c │ │ ├── detection.c │ │ ├── dev_init.c │ │ ├── dqs_search.c │ │ ├── dram_init.c │ │ ├── dram_init.h │ │ ├── dram_util.c │ │ ├── dram_util.h │ │ ├── drdy_bl.c │ │ ├── driving_clk_phase_data.h │ │ ├── driving_setting.c │ │ ├── early_serial.c │ │ ├── early_smbus.c │ │ ├── final_setting.c │ │ ├── freq_setting.c │ │ ├── ide.c │ │ ├── lpc.c │ │ ├── northbridge.c │ │ ├── pci_rawops.h │ │ ├── raminit.c │ │ ├── raminit.h │ │ ├── rank_map.c │ │ ├── romstrap.S │ │ ├── romstrap.ld │ │ ├── timing_setting.c │ │ ├── translator_ddr2_init.c │ │ ├── uma_ram_setting.c │ │ ├── vga.c │ │ └── vx800.h │ │ └── vx900 │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── chip.h │ │ ├── chrome9hd.c │ │ ├── early_host_bus_ctl.c │ │ ├── early_smbus.c │ │ ├── early_vx900.c │ │ ├── early_vx900.h │ │ ├── lpc.c │ │ ├── northbridge.c │ │ ├── pci_util.c │ │ ├── pcie.c │ │ ├── raminit.h │ │ ├── raminit_ddr3.c │ │ ├── romstrap.S │ │ ├── romstrap.ld │ │ ├── sata.c │ │ ├── traf_ctrl.c │ │ └── vx900.h ├── soc │ ├── broadcom │ │ └── cygnus │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.c │ │ │ ├── cbmem.c │ │ │ ├── ddr_init.c │ │ │ ├── ddr_init_table.c │ │ │ ├── gpio.c │ │ │ ├── hw_init.c │ │ │ ├── i2c.c │ │ │ ├── include │ │ │ └── soc │ │ │ │ ├── addressmap.h │ │ │ │ ├── config.h │ │ │ │ ├── cygnus.h │ │ │ │ ├── cygnus_types.h │ │ │ │ ├── ddr_bist.h │ │ │ │ ├── gpio.h │ │ │ │ ├── halapis │ │ │ │ └── ddr_regs.h │ │ │ │ ├── hw_init.h │ │ │ │ ├── i2c.h │ │ │ │ ├── memlayout.ld │ │ │ │ ├── ns16550.h │ │ │ │ ├── reg_utils.h │ │ │ │ ├── sdram.h │ │ │ │ ├── shmoo_and28 │ │ │ │ ├── phy_and28_e2.h │ │ │ │ ├── phy_reg_access.h │ │ │ │ ├── shmoo_and28.h │ │ │ │ └── ydc_ddr_bist.h │ │ │ │ └── tz.h │ │ │ ├── iomux.c │ │ │ ├── ns16550.c │ │ │ ├── phy_reg_access.c │ │ │ ├── romstage.c │ │ │ ├── sdram.c │ │ │ ├── shmoo_and28.c │ │ │ ├── soc.c │ │ │ ├── spi.c │ │ │ ├── timer.c │ │ │ ├── tz.c │ │ │ ├── usb.c │ │ │ └── ydc_ddr_bist.c │ ├── dmp │ │ └── vortex86ex │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── audio.c │ │ │ ├── chip.h │ │ │ ├── hard_reset.c │ │ │ ├── ide_sd_sata.c │ │ │ ├── northbridge.c │ │ │ ├── northbridge.h │ │ │ ├── raminit.c │ │ │ ├── southbridge.c │ │ │ ├── southbridge.h │ │ │ └── xgi_oprom.c │ ├── imgtec │ │ └── pistachio │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.c │ │ │ ├── cbmem.c │ │ │ ├── clocks.c │ │ │ ├── ddr2_init.c │ │ │ ├── ddr3_init.c │ │ │ ├── include │ │ │ └── soc │ │ │ │ ├── clocks.h │ │ │ │ ├── cpu.h │ │ │ │ ├── ddr_init.h │ │ │ │ ├── ddr_private_reg.h │ │ │ │ ├── gpio.h │ │ │ │ ├── memlayout.ld │ │ │ │ └── spi.h │ │ │ ├── monotonic_timer.c │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ ├── soc.c │ │ │ ├── spi.c │ │ │ └── uart.c │ ├── intel │ │ ├── apollolake │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── cpu.asl │ │ │ │ ├── dptf.asl │ │ │ │ ├── globalnvs.asl │ │ │ │ ├── gpio.asl │ │ │ │ ├── gpiolib.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── lpss.asl │ │ │ │ ├── northbridge.asl │ │ │ │ ├── pch_hda.asl │ │ │ │ ├── pci_irqs.asl │ │ │ │ ├── pcie.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── pmc_ipc.asl │ │ │ │ ├── scs.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── soc_int.asl │ │ │ │ ├── southbridge.asl │ │ │ │ └── xhci.asl │ │ │ ├── bootblock │ │ │ │ ├── bootblock.c │ │ │ │ └── cache_as_ram_fsp.S │ │ │ ├── car.c │ │ │ ├── chip.c │ │ │ ├── chip.h │ │ │ ├── cpu.c │ │ │ ├── cse.c │ │ │ ├── dsp.c │ │ │ ├── elog.c │ │ │ ├── exit_car_fsp.S │ │ │ ├── flash_ctrlr.c │ │ │ ├── gpio.c │ │ │ ├── graphics.c │ │ │ ├── heci.c │ │ │ ├── i2c.c │ │ │ ├── i2c_early.c │ │ │ ├── include │ │ │ │ ├── FspUpd.h │ │ │ │ └── soc │ │ │ │ │ ├── acpi.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── flash_ctrlr.h │ │ │ │ │ ├── gpe.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── gpio_defs.h │ │ │ │ │ ├── heci.h │ │ │ │ │ ├── i2c.h │ │ │ │ │ ├── iomap.h │ │ │ │ │ ├── itss.h │ │ │ │ │ ├── lpc.h │ │ │ │ │ ├── meminit.h │ │ │ │ │ ├── mmap_boot.h │ │ │ │ │ ├── nhlt.h │ │ │ │ │ ├── nvs.h │ │ │ │ │ ├── p2sb.h │ │ │ │ │ ├── pci_devs.h │ │ │ │ │ ├── pci_ids.h │ │ │ │ │ ├── pcr_ids.h │ │ │ │ │ ├── pm.h │ │ │ │ │ ├── romstage.h │ │ │ │ │ ├── smm.h │ │ │ │ │ ├── systemagent.h │ │ │ │ │ ├── uart.h │ │ │ │ │ └── usb.h │ │ │ ├── lpc.c │ │ │ ├── lpc_lib.c │ │ │ ├── meminit.c │ │ │ ├── memmap.c │ │ │ ├── mmap_boot.c │ │ │ ├── nhlt.c │ │ │ ├── northbridge.c │ │ │ ├── p2sb.c │ │ │ ├── pmc.c │ │ │ ├── pmutil.c │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ ├── sd.c │ │ │ ├── smi.c │ │ │ ├── smihandler.c │ │ │ ├── spi.c │ │ │ ├── sram.c │ │ │ ├── tsc_freq.c │ │ │ ├── uart.c │ │ │ ├── uart_early.c │ │ │ ├── xdci.c │ │ │ └── xhci.c │ │ ├── baytrail │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── cpu.asl │ │ │ │ ├── device_nvs.asl │ │ │ │ ├── dptf │ │ │ │ │ ├── charger.asl │ │ │ │ │ ├── cpu.asl │ │ │ │ │ ├── dptf.asl │ │ │ │ │ └── thermal.asl │ │ │ │ ├── globalnvs.asl │ │ │ │ ├── gpio.asl │ │ │ │ ├── irq_helper.h │ │ │ │ ├── irqlinks.asl │ │ │ │ ├── irqroute.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── lpe.asl │ │ │ │ ├── lpss.asl │ │ │ │ ├── pcie.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── scc.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── southcluster.asl │ │ │ │ └── xhci.asl │ │ │ ├── bootblock │ │ │ │ ├── bootblock.c │ │ │ │ └── timestamp.inc │ │ │ ├── chip.c │ │ │ ├── chip.h │ │ │ ├── cpu.c │ │ │ ├── dptf.c │ │ │ ├── ehci.c │ │ │ ├── elog.c │ │ │ ├── emmc.c │ │ │ ├── gfx.c │ │ │ ├── gpio.c │ │ │ ├── hda.c │ │ │ ├── include │ │ │ │ └── soc │ │ │ │ │ ├── acpi.h │ │ │ │ │ ├── device_nvs.h │ │ │ │ │ ├── efi_wrapper.h │ │ │ │ │ ├── ehci.h │ │ │ │ │ ├── gfx.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── iomap.h │ │ │ │ │ ├── iosf.h │ │ │ │ │ ├── irq.h │ │ │ │ │ ├── lpc.h │ │ │ │ │ ├── mrc_wrapper.h │ │ │ │ │ ├── msr.h │ │ │ │ │ ├── nvs.h │ │ │ │ │ ├── pattrs.h │ │ │ │ │ ├── pci_devs.h │ │ │ │ │ ├── pcie.h │ │ │ │ │ ├── pmc.h │ │ │ │ │ ├── ramstage.h │ │ │ │ │ ├── reset.h │ │ │ │ │ ├── romstage.h │ │ │ │ │ ├── sata.h │ │ │ │ │ ├── smm.h │ │ │ │ │ ├── spi.h │ │ │ │ │ └── xhci.h │ │ │ ├── iosf.c │ │ │ ├── lpe.c │ │ │ ├── lpss.c │ │ │ ├── memmap.c │ │ │ ├── northcluster.c │ │ │ ├── pcie.c │ │ │ ├── perf_power.c │ │ │ ├── placeholders.c │ │ │ ├── pmutil.c │ │ │ ├── ramstage.c │ │ │ ├── refcode.c │ │ │ ├── reset.c │ │ │ ├── romstage │ │ │ │ ├── Makefile.inc │ │ │ │ ├── cache_as_ram.inc │ │ │ │ ├── early_spi.c │ │ │ │ ├── gfx.c │ │ │ │ ├── pmc.c │ │ │ │ ├── raminit.c │ │ │ │ ├── romstage.c │ │ │ │ └── uart.c │ │ │ ├── sata.c │ │ │ ├── scc.c │ │ │ ├── sd.c │ │ │ ├── smihandler.c │ │ │ ├── smm.c │ │ │ ├── southcluster.c │ │ │ ├── spi.c │ │ │ ├── stage_cache.c │ │ │ ├── tsc_freq.c │ │ │ └── xhci.c │ │ ├── braswell │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── cpu.asl │ │ │ │ ├── device_nvs.asl │ │ │ │ ├── dptf │ │ │ │ │ ├── charger.asl │ │ │ │ │ ├── cpu.asl │ │ │ │ │ ├── dptf.asl │ │ │ │ │ ├── thermal.asl │ │ │ │ │ ├── wifi.asl │ │ │ │ │ └── wwan.asl │ │ │ │ ├── globalnvs.asl │ │ │ │ ├── gpio.asl │ │ │ │ ├── irq_helper.h │ │ │ │ ├── irqlinks.asl │ │ │ │ ├── irqroute.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── lpe.asl │ │ │ │ ├── lpss.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── scc.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── southcluster.asl │ │ │ │ └── xhci.asl │ │ │ ├── bootblock │ │ │ │ ├── bootblock.c │ │ │ │ └── timestamp.inc │ │ │ ├── chip.c │ │ │ ├── chip.h │ │ │ ├── cpu.c │ │ │ ├── elog.c │ │ │ ├── emmc.c │ │ │ ├── gfx.c │ │ │ ├── gpio.c │ │ │ ├── gpio_support.c │ │ │ ├── hda.c │ │ │ ├── include │ │ │ │ └── soc │ │ │ │ │ ├── acpi.h │ │ │ │ │ ├── device_nvs.h │ │ │ │ │ ├── ehci.h │ │ │ │ │ ├── gfx.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── gpio_defs.h │ │ │ │ │ ├── hda.h │ │ │ │ │ ├── iomap.h │ │ │ │ │ ├── iosf.h │ │ │ │ │ ├── irq.h │ │ │ │ │ ├── lpc.h │ │ │ │ │ ├── msr.h │ │ │ │ │ ├── nvs.h │ │ │ │ │ ├── pattrs.h │ │ │ │ │ ├── pci_devs.h │ │ │ │ │ ├── pcie.h │ │ │ │ │ ├── pei_data.h │ │ │ │ │ ├── pei_wrapper.h │ │ │ │ │ ├── pm.h │ │ │ │ │ ├── ramstage.h │ │ │ │ │ ├── romstage.h │ │ │ │ │ ├── sata.h │ │ │ │ │ ├── smm.h │ │ │ │ │ ├── spi.h │ │ │ │ │ └── xhci.h │ │ │ ├── iosf.c │ │ │ ├── lpc_init.c │ │ │ ├── lpe.c │ │ │ ├── lpss.c │ │ │ ├── memmap.c │ │ │ ├── northcluster.c │ │ │ ├── pcie.c │ │ │ ├── placeholders.c │ │ │ ├── pmutil.c │ │ │ ├── ramstage.c │ │ │ ├── romstage │ │ │ │ ├── Makefile.inc │ │ │ │ ├── early_spi.c │ │ │ │ ├── pmc.c │ │ │ │ └── romstage.c │ │ │ ├── sata.c │ │ │ ├── scc.c │ │ │ ├── sd.c │ │ │ ├── smihandler.c │ │ │ ├── smm.c │ │ │ ├── southcluster.c │ │ │ ├── spi.c │ │ │ ├── spi_loading.c │ │ │ ├── tsc_freq.c │ │ │ └── xhci.c │ │ ├── broadwell │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── adsp.asl │ │ │ │ ├── cpu.asl │ │ │ │ ├── ctdp.asl │ │ │ │ ├── device_nvs.asl │ │ │ │ ├── ehci.asl │ │ │ │ ├── globalnvs.asl │ │ │ │ ├── gpio.asl │ │ │ │ ├── hda.asl │ │ │ │ ├── irqlinks.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── pch.asl │ │ │ │ ├── pci_irqs.asl │ │ │ │ ├── pcie.asl │ │ │ │ ├── pcie_port.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── serialio.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── smbus.asl │ │ │ │ ├── systemagent.asl │ │ │ │ └── xhci.asl │ │ │ ├── adsp.c │ │ │ ├── bootblock │ │ │ │ ├── cpu.c │ │ │ │ ├── pch.c │ │ │ │ ├── systemagent.c │ │ │ │ └── timestamp.inc │ │ │ ├── chip.c │ │ │ ├── chip.h │ │ │ ├── cpu.c │ │ │ ├── cpu_info.c │ │ │ ├── ehci.c │ │ │ ├── elog.c │ │ │ ├── finalize.c │ │ │ ├── gpio.c │ │ │ ├── hda.c │ │ │ ├── igd.c │ │ │ ├── include │ │ │ │ └── soc │ │ │ │ │ ├── acpi.h │ │ │ │ │ ├── adsp.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── device_nvs.h │ │ │ │ │ ├── ehci.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── igd.h │ │ │ │ │ ├── iobp.h │ │ │ │ │ ├── iomap.h │ │ │ │ │ ├── lpc.h │ │ │ │ │ ├── me.h │ │ │ │ │ ├── msr.h │ │ │ │ │ ├── nvs.h │ │ │ │ │ ├── pch.h │ │ │ │ │ ├── pci_devs.h │ │ │ │ │ ├── pei_data.h │ │ │ │ │ ├── pei_wrapper.h │ │ │ │ │ ├── pm.h │ │ │ │ │ ├── ramstage.h │ │ │ │ │ ├── rcba.h │ │ │ │ │ ├── reset.h │ │ │ │ │ ├── romstage.h │ │ │ │ │ ├── sata.h │ │ │ │ │ ├── serialio.h │ │ │ │ │ ├── smbus.h │ │ │ │ │ ├── smm.h │ │ │ │ │ ├── spi.h │ │ │ │ │ ├── systemagent.h │ │ │ │ │ └── xhci.h │ │ │ ├── iobp.c │ │ │ ├── lpc.c │ │ │ ├── me.c │ │ │ ├── me_status.c │ │ │ ├── memmap.c │ │ │ ├── minihd.c │ │ │ ├── monotonic_timer.c │ │ │ ├── pch.c │ │ │ ├── pcie.c │ │ │ ├── pei_data.c │ │ │ ├── pmutil.c │ │ │ ├── ramstage.c │ │ │ ├── refcode.c │ │ │ ├── reset.c │ │ │ ├── romstage │ │ │ │ ├── Makefile.inc │ │ │ │ ├── cache_as_ram.inc │ │ │ │ ├── cpu.c │ │ │ │ ├── pch.c │ │ │ │ ├── power_state.c │ │ │ │ ├── raminit.c │ │ │ │ ├── report_platform.c │ │ │ │ ├── romstage.c │ │ │ │ ├── smbus.c │ │ │ │ ├── spi.c │ │ │ │ ├── stack.c │ │ │ │ ├── systemagent.c │ │ │ │ └── uart.c │ │ │ ├── sata.c │ │ │ ├── serialio.c │ │ │ ├── smbus.c │ │ │ ├── smbus_common.c │ │ │ ├── smi.c │ │ │ ├── smihandler.c │ │ │ ├── smmrelocate.c │ │ │ ├── spi.c │ │ │ ├── stage_cache.c │ │ │ ├── systemagent.c │ │ │ ├── tsc_freq.c │ │ │ ├── usb_debug.c │ │ │ └── xhci.c │ │ ├── common │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.h │ │ │ ├── acpi │ │ │ │ ├── acpi.c │ │ │ │ ├── acpi_debug.asl │ │ │ │ ├── acpi_wake_source.asl │ │ │ │ ├── dptf │ │ │ │ │ ├── charger.asl │ │ │ │ │ ├── cpu.asl │ │ │ │ │ ├── dptf.asl │ │ │ │ │ ├── fan.asl │ │ │ │ │ └── thermal.asl │ │ │ │ ├── pci_osc.asl │ │ │ │ ├── platform.asl │ │ │ │ └── wifi.asl │ │ │ ├── acpi_wake_source.c │ │ │ ├── block │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── cpu │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── car │ │ │ │ │ │ ├── cache_as_ram.S │ │ │ │ │ │ └── exit_car.S │ │ │ │ ├── cse │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── cse.c │ │ │ │ ├── gspi │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── gspi.c │ │ │ │ ├── include │ │ │ │ │ └── intelblocks │ │ │ │ │ │ ├── cse.h │ │ │ │ │ │ ├── gspi.h │ │ │ │ │ │ ├── itss.h │ │ │ │ │ │ ├── lpss.h │ │ │ │ │ │ ├── msr.h │ │ │ │ │ │ ├── pcr.h │ │ │ │ │ │ ├── rtc.h │ │ │ │ │ │ ├── systemagent.h │ │ │ │ │ │ ├── uart.h │ │ │ │ │ │ └── xhci.h │ │ │ │ ├── itss │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── itss.c │ │ │ │ ├── lpss │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── lpss.c │ │ │ │ ├── pcr │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── pcr.c │ │ │ │ ├── rtc │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── rtc.c │ │ │ │ ├── systemagent │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── systemagent.c │ │ │ │ ├── uart │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── uart.c │ │ │ │ └── xhci │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile.inc │ │ │ │ │ └── xhci.c │ │ │ ├── hda_verb.c │ │ │ ├── hda_verb.h │ │ │ ├── lpss_i2c.c │ │ │ ├── lpss_i2c.h │ │ │ ├── mma.c │ │ │ ├── mma.h │ │ │ ├── mrc_cache.c │ │ │ ├── mrc_cache.h │ │ │ ├── nhlt.c │ │ │ ├── nvm.c │ │ │ ├── nvm.h │ │ │ ├── opregion.c │ │ │ ├── opregion.h │ │ │ ├── reset.c │ │ │ ├── smbios.c │ │ │ ├── smbios.h │ │ │ ├── smi.h │ │ │ ├── smihandler.c │ │ │ ├── spi_flash.c │ │ │ ├── spi_flash.h │ │ │ ├── tpm_tis.c │ │ │ ├── util.c │ │ │ ├── util.h │ │ │ ├── vbt.c │ │ │ └── vbt.h │ │ ├── fsp_baytrail │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── cpu.asl │ │ │ │ ├── device_nvs.asl │ │ │ │ ├── globalnvs.asl │ │ │ │ ├── gpio.asl │ │ │ │ ├── irq_helper.h │ │ │ │ ├── irqlinks.asl │ │ │ │ ├── irqroute.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── lpe.asl │ │ │ │ ├── lpss.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── scc.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── southcluster.asl │ │ │ │ ├── usb.asl │ │ │ │ └── xhci.asl │ │ │ ├── bootblock │ │ │ │ └── bootblock.c │ │ │ ├── chip.c │ │ │ ├── chip.h │ │ │ ├── cpu.c │ │ │ ├── fsp │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── chipset_fsp_util.c │ │ │ │ └── chipset_fsp_util.h │ │ │ ├── gfx.c │ │ │ ├── gpio.c │ │ │ ├── i2c.c │ │ │ ├── include │ │ │ │ └── soc │ │ │ │ │ ├── acpi.h │ │ │ │ │ ├── baytrail.h │ │ │ │ │ ├── device_nvs.h │ │ │ │ │ ├── ehci.h │ │ │ │ │ ├── gfx.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── i2c.h │ │ │ │ │ ├── iomap.h │ │ │ │ │ ├── iosf.h │ │ │ │ │ ├── irq.h │ │ │ │ │ ├── lpc.h │ │ │ │ │ ├── msr.h │ │ │ │ │ ├── nvm.h │ │ │ │ │ ├── nvs.h │ │ │ │ │ ├── pattrs.h │ │ │ │ │ ├── pci_devs.h │ │ │ │ │ ├── pcie.h │ │ │ │ │ ├── pmc.h │ │ │ │ │ ├── ramstage.h │ │ │ │ │ ├── reset.h │ │ │ │ │ ├── romstage.h │ │ │ │ │ ├── smm.h │ │ │ │ │ ├── spi.h │ │ │ │ │ └── xhci.h │ │ │ ├── iosf.c │ │ │ ├── lpe.c │ │ │ ├── lpss.c │ │ │ ├── memmap.c │ │ │ ├── northcluster.c │ │ │ ├── nvm.c │ │ │ ├── placeholders.c │ │ │ ├── pmutil.c │ │ │ ├── ramstage.c │ │ │ ├── reset.c │ │ │ ├── romstage │ │ │ │ ├── Makefile.inc │ │ │ │ ├── pmc.c │ │ │ │ ├── report_platform.c │ │ │ │ ├── romstage.c │ │ │ │ └── uart.c │ │ │ ├── smihandler.c │ │ │ ├── smm.c │ │ │ ├── southcluster.c │ │ │ ├── spi.c │ │ │ └── tsc_freq.c │ │ ├── fsp_broadwell_de │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── irq_helper.h │ │ │ │ ├── irqlinks.asl │ │ │ │ ├── irqroute.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── pcie1.asl │ │ │ │ └── southcluster.asl │ │ │ ├── bootblock │ │ │ │ └── bootblock.c │ │ │ ├── chip.c │ │ │ ├── chip.h │ │ │ ├── cpu.c │ │ │ ├── fsp │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── chipset_fsp_util.c │ │ │ │ └── chipset_fsp_util.h │ │ │ ├── include │ │ │ │ └── soc │ │ │ │ │ ├── acpi.h │ │ │ │ │ ├── broadwell_de.h │ │ │ │ │ ├── iomap.h │ │ │ │ │ ├── irq.h │ │ │ │ │ ├── lpc.h │ │ │ │ │ ├── msr.h │ │ │ │ │ ├── pattrs.h │ │ │ │ │ ├── pci_devs.h │ │ │ │ │ ├── ramstage.h │ │ │ │ │ ├── reset.h │ │ │ │ │ ├── romstage.h │ │ │ │ │ ├── smbus.h │ │ │ │ │ └── smm.h │ │ │ ├── memmap.c │ │ │ ├── northcluster.c │ │ │ ├── pmutil.c │ │ │ ├── ramstage.c │ │ │ ├── reset.c │ │ │ ├── romstage │ │ │ │ ├── Makefile.inc │ │ │ │ └── romstage.c │ │ │ ├── smbus.c │ │ │ ├── smbus_common.c │ │ │ ├── smi.c │ │ │ ├── smihandler.c │ │ │ ├── smmrelocate.c │ │ │ ├── southcluster.c │ │ │ └── spi.c │ │ ├── quark │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── bootblock │ │ │ │ ├── bootblock.c │ │ │ │ └── esram_init.S │ │ │ ├── chip.c │ │ │ ├── chip.h │ │ │ ├── ehci.c │ │ │ ├── fsp1_1.c │ │ │ ├── fsp2_0.c │ │ │ ├── gpio_i2c.c │ │ │ ├── i2c.c │ │ │ ├── include │ │ │ │ └── soc │ │ │ │ │ ├── IntelQNCConfig.h │ │ │ │ │ ├── Ioh.h │ │ │ │ │ ├── QuarkNcSocId.h │ │ │ │ │ ├── acpi.h │ │ │ │ │ ├── car.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── i2c.h │ │ │ │ │ ├── iomap.h │ │ │ │ │ ├── pci_devs.h │ │ │ │ │ ├── pei_wrapper.h │ │ │ │ │ ├── pm.h │ │ │ │ │ ├── ramstage.h │ │ │ │ │ ├── reg_access.h │ │ │ │ │ ├── romstage.h │ │ │ │ │ └── sd.h │ │ │ ├── lpc.c │ │ │ ├── memmap.c │ │ │ ├── northcluster.c │ │ │ ├── reg_access.c │ │ │ ├── reset.c │ │ │ ├── romstage │ │ │ │ ├── Makefile.inc │ │ │ │ ├── car.c │ │ │ │ ├── car_stage_entry.S │ │ │ │ ├── debug.c │ │ │ │ ├── fsp1_1.c │ │ │ │ ├── fsp2_0.c │ │ │ │ ├── mtrr.c │ │ │ │ ├── pcie.c │ │ │ │ ├── report_platform.c │ │ │ │ └── romstage.c │ │ │ ├── tsc_freq.c │ │ │ ├── uart.c │ │ │ └── uart_common.c │ │ ├── sch │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── ac97.asl │ │ │ │ ├── audio.asl │ │ │ │ ├── globalnvs.asl │ │ │ │ ├── hostbridge.asl │ │ │ │ ├── igd.asl │ │ │ │ ├── irqlinks.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── pata.asl │ │ │ │ ├── pci.asl │ │ │ │ ├── pcie.asl │ │ │ │ ├── peg.asl │ │ │ │ ├── sch.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── smbus.asl │ │ │ │ └── usb.asl │ │ │ ├── audio.c │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_init.c │ │ │ ├── early_smbus.c │ │ │ ├── gma.c │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── mmc.c │ │ │ ├── northbridge.c │ │ │ ├── nvs.h │ │ │ ├── pcie.c │ │ │ ├── port_access.c │ │ │ ├── raminit.c │ │ │ ├── raminit.h │ │ │ ├── reset.c │ │ │ ├── sch.h │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── smi.c │ │ │ ├── smihandler.c │ │ │ ├── south.c │ │ │ ├── usb.c │ │ │ ├── usb_client.c │ │ │ └── usb_ehci.c │ │ └── skylake │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ ├── cpu.asl │ │ │ ├── dptf │ │ │ │ ├── charger.asl │ │ │ │ ├── cpu.asl │ │ │ │ ├── dptf.asl │ │ │ │ ├── fan.asl │ │ │ │ └── thermal.asl │ │ │ ├── globalnvs.asl │ │ │ ├── gpio.asl │ │ │ ├── ipu.asl │ │ │ ├── irqlinks.asl │ │ │ ├── lpc.asl │ │ │ ├── pch.asl │ │ │ ├── pch_hda.asl │ │ │ ├── pci_irqs.asl │ │ │ ├── pcie.asl │ │ │ ├── pcr.asl │ │ │ ├── platform.asl │ │ │ ├── pmc.asl │ │ │ ├── scs.asl │ │ │ ├── serialio.asl │ │ │ ├── sleepstates.asl │ │ │ ├── smbus.asl │ │ │ ├── systemagent.asl │ │ │ └── xhci.asl │ │ │ ├── bootblock │ │ │ ├── bootblock.c │ │ │ ├── cpu.c │ │ │ ├── i2c.c │ │ │ ├── pch.c │ │ │ ├── report_platform.c │ │ │ ├── smbus.c │ │ │ ├── timestamp.inc │ │ │ └── uart.c │ │ │ ├── chip.c │ │ │ ├── chip.h │ │ │ ├── chip_fsp20.c │ │ │ ├── cpu.c │ │ │ ├── cpu_info.c │ │ │ ├── dsp.c │ │ │ ├── early_smbus.c │ │ │ ├── elog.c │ │ │ ├── finalize.c │ │ │ ├── flash_controller.c │ │ │ ├── gpio.c │ │ │ ├── gspi.c │ │ │ ├── i2c.c │ │ │ ├── igd.c │ │ │ ├── include │ │ │ ├── fsp11 │ │ │ │ └── soc │ │ │ │ │ ├── ramstage.h │ │ │ │ │ └── romstage.h │ │ │ ├── fsp20 │ │ │ │ └── soc │ │ │ │ │ ├── ramstage.h │ │ │ │ │ └── romstage.h │ │ │ └── soc │ │ │ │ ├── acpi.h │ │ │ │ ├── bootblock.h │ │ │ │ ├── cpu.h │ │ │ │ ├── device_nvs.h │ │ │ │ ├── flash_controller.h │ │ │ │ ├── gpe.h │ │ │ │ ├── gpio.h │ │ │ │ ├── gpio_defs.h │ │ │ │ ├── gpio_pch_h_defs.h │ │ │ │ ├── gpio_soc_defs.h │ │ │ │ ├── interrupt.h │ │ │ │ ├── iomap.h │ │ │ │ ├── irq.h │ │ │ │ ├── itss.h │ │ │ │ ├── lpc.h │ │ │ │ ├── me.h │ │ │ │ ├── msr.h │ │ │ │ ├── nhlt.h │ │ │ │ ├── nvs.h │ │ │ │ ├── p2sb.h │ │ │ │ ├── pch.h │ │ │ │ ├── pci_devs.h │ │ │ │ ├── pcr_ids.h │ │ │ │ ├── pei_data.h │ │ │ │ ├── pei_wrapper.h │ │ │ │ ├── pm.h │ │ │ │ ├── pmc.h │ │ │ │ ├── serialio.h │ │ │ │ ├── smbus.h │ │ │ │ ├── smm.h │ │ │ │ ├── spi.h │ │ │ │ ├── systemagent.h │ │ │ │ ├── usb.h │ │ │ │ └── vr_config.h │ │ │ ├── irq.c │ │ │ ├── lpc.c │ │ │ ├── me.c │ │ │ ├── memmap.c │ │ │ ├── monotonic_timer.c │ │ │ ├── nhlt │ │ │ ├── Makefile.inc │ │ │ ├── dmic.c │ │ │ ├── max98357.c │ │ │ ├── max98927.c │ │ │ ├── nau88l25.c │ │ │ ├── rt5514.c │ │ │ ├── rt5663.c │ │ │ └── ssm4567.c │ │ │ ├── opregion.c │ │ │ ├── pch.c │ │ │ ├── pcie.c │ │ │ ├── pei_data.c │ │ │ ├── pmc.c │ │ │ ├── pmutil.c │ │ │ ├── reset.c │ │ │ ├── romstage │ │ │ ├── Makefile.inc │ │ │ ├── car_stage.S │ │ │ ├── pmc.c │ │ │ ├── power_state.c │ │ │ ├── romstage.c │ │ │ ├── romstage_fsp20.c │ │ │ ├── spi.c │ │ │ └── systemagent.c │ │ │ ├── sata.c │ │ │ ├── sd.c │ │ │ ├── sgx.c │ │ │ ├── smbus.c │ │ │ ├── smbus_common.c │ │ │ ├── smi.c │ │ │ ├── smihandler.c │ │ │ ├── smmrelocate.c │ │ │ ├── spi.c │ │ │ ├── systemagent.c │ │ │ ├── tsc_freq.c │ │ │ ├── uart.c │ │ │ ├── uart_debug.c │ │ │ └── vr_config.c │ ├── lowrisc │ │ └── lowrisc │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── cbmem.c │ ├── marvell │ │ ├── armada38x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.c │ │ │ ├── bootblock_asm.S │ │ │ ├── cbmem.c │ │ │ ├── clock.c │ │ │ ├── gpio.c │ │ │ ├── i2c.c │ │ │ ├── include │ │ │ │ └── soc │ │ │ │ │ ├── clock.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── i2c.h │ │ │ │ │ ├── memlayout.ld │ │ │ │ │ └── soc_services.h │ │ │ ├── monotonic_timer.c │ │ │ ├── soc.c │ │ │ ├── spi.c │ │ │ └── uart.c │ │ ├── bg4cd │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.c │ │ │ ├── bootblock_asm.S │ │ │ ├── cbmem.c │ │ │ ├── i2c.c │ │ │ ├── include │ │ │ │ └── soc │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── i2c.h │ │ │ │ │ ├── memlayout.ld │ │ │ │ │ └── sdram.h │ │ │ ├── monotonic_timer.c │ │ │ ├── romstage.S │ │ │ ├── sdram.c │ │ │ └── spi.c │ │ └── mvmap2315 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── a2bus.c │ │ │ ├── apmu.c │ │ │ ├── bdb.c │ │ │ ├── bootblock.c │ │ │ ├── cbmem.c │ │ │ ├── clock.c │ │ │ ├── digest.c │ │ │ ├── fiq.S │ │ │ ├── flash.c │ │ │ ├── gic.c │ │ │ ├── gpio.c │ │ │ ├── include │ │ │ └── soc │ │ │ │ ├── a2bus.h │ │ │ │ ├── addressmap.h │ │ │ │ ├── apmu.h │ │ │ │ ├── bdb.h │ │ │ │ ├── clock.h │ │ │ │ ├── digest.h │ │ │ │ ├── flash.h │ │ │ │ ├── gic.h │ │ │ │ ├── gpio.h │ │ │ │ ├── load_validate.h │ │ │ │ ├── mcu.h │ │ │ │ ├── memlayout.ld │ │ │ │ ├── mmu_operations.h │ │ │ │ ├── nvm.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── pmic.h │ │ │ │ ├── reset.h │ │ │ │ ├── sdram.h │ │ │ │ ├── timer.h │ │ │ │ ├── uart.h │ │ │ │ └── wdt.h │ │ │ ├── load_validate.c │ │ │ ├── mcu.c │ │ │ ├── media.c │ │ │ ├── mmu_operations.c │ │ │ ├── nvm.c │ │ │ ├── pinmux.c │ │ │ ├── pmic.c │ │ │ ├── ramstage_entry.S │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ ├── romstage_entry.S │ │ │ ├── sdram.c │ │ │ ├── soc.c │ │ │ ├── timer.c │ │ │ ├── uart.c │ │ │ └── wdt.c │ ├── mediatek │ │ └── mt8173 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bl31_plat_params.c │ │ │ ├── bootblock.c │ │ │ ├── cbmem.c │ │ │ ├── da9212.c │ │ │ ├── ddp.c │ │ │ ├── dramc_pi_basic_api.c │ │ │ ├── dramc_pi_calibration_api.c │ │ │ ├── dsi.c │ │ │ ├── emi.c │ │ │ ├── flash_controller.c │ │ │ ├── gpio.c │ │ │ ├── gpio_init.c │ │ │ ├── i2c.c │ │ │ ├── include │ │ │ └── soc │ │ │ │ ├── addressmap.h │ │ │ │ ├── da9212.h │ │ │ │ ├── ddp.h │ │ │ │ ├── dramc_common.h │ │ │ │ ├── dramc_pi_api.h │ │ │ │ ├── dramc_register.h │ │ │ │ ├── dsi.h │ │ │ │ ├── emi.h │ │ │ │ ├── flash_controller.h │ │ │ │ ├── gpio.h │ │ │ │ ├── i2c.h │ │ │ │ ├── infracfg.h │ │ │ │ ├── mcucfg.h │ │ │ │ ├── memlayout.ld │ │ │ │ ├── mipi.h │ │ │ │ ├── mmu_operations.h │ │ │ │ ├── mt6311.h │ │ │ │ ├── mt6391.h │ │ │ │ ├── mtcmos.h │ │ │ │ ├── pericfg.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── pll.h │ │ │ │ ├── pmic_wrap.h │ │ │ │ ├── rtc.h │ │ │ │ ├── spi.h │ │ │ │ ├── spm.h │ │ │ │ ├── timer.h │ │ │ │ ├── usb.h │ │ │ │ └── wdt.h │ │ │ ├── memory.c │ │ │ ├── mmu_operations.c │ │ │ ├── mt6311.c │ │ │ ├── mt6391.c │ │ │ ├── mtcmos.c │ │ │ ├── pll.c │ │ │ ├── pmic_wrap.c │ │ │ ├── rtc.c │ │ │ ├── soc.c │ │ │ ├── spi.c │ │ │ ├── timer.c │ │ │ ├── uart.c │ │ │ ├── usb.c │ │ │ └── wdt.c │ ├── nvidia │ │ ├── tegra │ │ │ ├── apbmisc.c │ │ │ ├── apbmisc.h │ │ │ ├── dc.h │ │ │ ├── displayport.h │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── i2c.c │ │ │ ├── i2c.h │ │ │ ├── pingroup.c │ │ │ ├── pingroup.h │ │ │ ├── pinmux.c │ │ │ ├── pinmux.h │ │ │ ├── pwm.h │ │ │ ├── software_i2c.c │ │ │ ├── types.h │ │ │ ├── usb.c │ │ │ └── usb.h │ │ ├── tegra124 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.c │ │ │ ├── bootblock_asm.S │ │ │ ├── cache.c │ │ │ ├── cbmem.c │ │ │ ├── chip.h │ │ │ ├── clock.c │ │ │ ├── display.c │ │ │ ├── dma.c │ │ │ ├── dp.c │ │ │ ├── i2c.c │ │ │ ├── include │ │ │ │ └── soc │ │ │ │ │ ├── addressmap.h │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── clk_rst.h │ │ │ │ │ ├── clock.h │ │ │ │ │ ├── display.h │ │ │ │ │ ├── dma.h │ │ │ │ │ ├── early_configs.h │ │ │ │ │ ├── emc.h │ │ │ │ │ ├── flow.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── maincpu.h │ │ │ │ │ ├── mc.h │ │ │ │ │ ├── memlayout.ld │ │ │ │ │ ├── pingroup.h │ │ │ │ │ ├── pinmux.h │ │ │ │ │ ├── pmc.h │ │ │ │ │ ├── power.h │ │ │ │ │ ├── sdram.h │ │ │ │ │ ├── sdram_param.h │ │ │ │ │ ├── sor.h │ │ │ │ │ ├── spi.h │ │ │ │ │ └── sysctr.h │ │ │ ├── lp0 │ │ │ │ ├── Makefile │ │ │ │ ├── tegra_lp0_resume.c │ │ │ │ └── tegra_lp0_resume.ld │ │ │ ├── maincpu.S │ │ │ ├── monotonic_timer.c │ │ │ ├── power.c │ │ │ ├── sdram.c │ │ │ ├── sdram_lp0.c │ │ │ ├── soc.c │ │ │ ├── sor.c │ │ │ ├── spi.c │ │ │ ├── uart.c │ │ │ └── verstage.c │ │ └── tegra210 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── addressmap.c │ │ │ ├── ape.c │ │ │ ├── arm_tf.c │ │ │ ├── bootblock.c │ │ │ ├── bootblock_asm.S │ │ │ ├── cbmem.c │ │ │ ├── ccplex.c │ │ │ ├── chip.h │ │ │ ├── clock.c │ │ │ ├── cpu.c │ │ │ ├── dc.c │ │ │ ├── dma.c │ │ │ ├── dp.c │ │ │ ├── dsi.c │ │ │ ├── flow_ctrl.c │ │ │ ├── funitcfg.c │ │ │ ├── gic.c │ │ │ ├── i2c.c │ │ │ ├── i2c6.c │ │ │ ├── include │ │ │ └── soc │ │ │ │ ├── addressmap.h │ │ │ │ ├── ccplex.h │ │ │ │ ├── clk_rst.h │ │ │ │ ├── clock.h │ │ │ │ ├── clst_clk.h │ │ │ │ ├── cpu.h │ │ │ │ ├── display.h │ │ │ │ ├── dma.h │ │ │ │ ├── emc.h │ │ │ │ ├── flow.h │ │ │ │ ├── flow_ctrl.h │ │ │ │ ├── funitcfg.h │ │ │ │ ├── gpio.h │ │ │ │ ├── id.h │ │ │ │ ├── maincpu.h │ │ │ │ ├── mc.h │ │ │ │ ├── memlayout.ld │ │ │ │ ├── mipi-phy.h │ │ │ │ ├── mipi_display.h │ │ │ │ ├── mipi_dsi.h │ │ │ │ ├── mmu_operations.h │ │ │ │ ├── mtc.h │ │ │ │ ├── padconfig.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── pmc.h │ │ │ │ ├── power.h │ │ │ │ ├── romstage.h │ │ │ │ ├── sdram.h │ │ │ │ ├── sdram_configs.h │ │ │ │ ├── sdram_param.h │ │ │ │ ├── secure_boot.h │ │ │ │ ├── sor.h │ │ │ │ ├── spi.h │ │ │ │ ├── sysctr.h │ │ │ │ ├── tegra_dsi.h │ │ │ │ └── verstage.h │ │ │ ├── jdi_25x18_display │ │ │ ├── panel-jdi-lpm102a188a.c │ │ │ └── panel-jdi-lpm102a188a.h │ │ │ ├── lp0 │ │ │ ├── Makefile │ │ │ ├── tegra_lp0_resume.c │ │ │ └── tegra_lp0_resume.ld │ │ │ ├── mipi-phy.c │ │ │ ├── mipi.c │ │ │ ├── mipi_dsi.c │ │ │ ├── mmu_operations.c │ │ │ ├── monotonic_timer.c │ │ │ ├── mtc.c │ │ │ ├── padconfig.c │ │ │ ├── power.c │ │ │ ├── ram_code.c │ │ │ ├── ramstage.c │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ ├── romstage_asm.S │ │ │ ├── sdram.c │ │ │ ├── sdram_lp0.c │ │ │ ├── soc.c │ │ │ ├── sor.c │ │ │ ├── spi.c │ │ │ ├── stack.S │ │ │ ├── stage_entry.S │ │ │ └── uart.c │ ├── qualcomm │ │ ├── ipq40xx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── blobs_init.c │ │ │ ├── blsp.c │ │ │ ├── cbmem.c │ │ │ ├── clock.c │ │ │ ├── gpio.c │ │ │ ├── i2c.c │ │ │ ├── include │ │ │ │ └── soc │ │ │ │ │ ├── blsp.h │ │ │ │ │ ├── cdp.h │ │ │ │ │ ├── clock.h │ │ │ │ │ ├── ebi2.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── iomap.h │ │ │ │ │ ├── ipq_timer.h │ │ │ │ │ ├── ipq_uart.h │ │ │ │ │ ├── lcc-reg.h │ │ │ │ │ ├── memlayout.ld │ │ │ │ │ ├── qup.h │ │ │ │ │ ├── soc_services.h │ │ │ │ │ ├── spi.h │ │ │ │ │ ├── usb.h │ │ │ │ │ ├── usbl_if.h │ │ │ │ │ └── verstage.h │ │ │ ├── lcc.c │ │ │ ├── mbn_header.h │ │ │ ├── qup.c │ │ │ ├── soc.c │ │ │ ├── spi.c │ │ │ ├── timer.c │ │ │ ├── tz_wrapper.S │ │ │ ├── uart.c │ │ │ └── usb.c │ │ └── ipq806x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── blobs_init.c │ │ │ ├── cbmem.c │ │ │ ├── clock.c │ │ │ ├── gpio.c │ │ │ ├── gsbi.c │ │ │ ├── i2c.c │ │ │ ├── include │ │ │ └── soc │ │ │ │ ├── cdp.h │ │ │ │ ├── clock.h │ │ │ │ ├── ebi2.h │ │ │ │ ├── gpio.h │ │ │ │ ├── gsbi.h │ │ │ │ ├── iomap.h │ │ │ │ ├── ipq_timer.h │ │ │ │ ├── ipq_uart.h │ │ │ │ ├── lcc-reg.h │ │ │ │ ├── memlayout.ld │ │ │ │ ├── qup.h │ │ │ │ ├── soc_services.h │ │ │ │ ├── spi.h │ │ │ │ ├── usb.h │ │ │ │ └── usbl_if.h │ │ │ ├── lcc.c │ │ │ ├── mbn_header.h │ │ │ ├── qup.c │ │ │ ├── soc.c │ │ │ ├── spi.c │ │ │ ├── timer.c │ │ │ ├── tz_wrapper.S │ │ │ ├── uart.c │ │ │ └── usb.c │ ├── rdc │ │ └── r8610 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.c │ │ │ ├── northbridge.c │ │ │ └── r8610.c │ ├── rockchip │ │ ├── common │ │ │ ├── cbmem.c │ │ │ ├── edp.c │ │ │ ├── gpio.c │ │ │ ├── i2c.c │ │ │ ├── include │ │ │ │ └── soc │ │ │ │ │ ├── edp.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── i2c.h │ │ │ │ │ ├── pwm.h │ │ │ │ │ ├── rk808.h │ │ │ │ │ ├── soc.h │ │ │ │ │ ├── spi.h │ │ │ │ │ └── vop.h │ │ │ ├── pwm.c │ │ │ ├── rk808.c │ │ │ ├── spi.c │ │ │ ├── uart.c │ │ │ └── vop.c │ │ ├── rk3288 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── clock.c │ │ │ ├── crypto.c │ │ │ ├── display.c │ │ │ ├── gpio.c │ │ │ ├── hdmi.c │ │ │ ├── include │ │ │ │ └── soc │ │ │ │ │ ├── addressmap.h │ │ │ │ │ ├── clock.h │ │ │ │ │ ├── display.h │ │ │ │ │ ├── grf.h │ │ │ │ │ ├── hdmi.h │ │ │ │ │ ├── memlayout.ld │ │ │ │ │ ├── pmu.h │ │ │ │ │ ├── sdram.h │ │ │ │ │ ├── timer.h │ │ │ │ │ └── tsadc.h │ │ │ ├── sdram.c │ │ │ ├── soc.c │ │ │ ├── software_i2c.c │ │ │ ├── timer.c │ │ │ └── tsadc.c │ │ └── rk3399 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bl31_plat_params.c │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── clock.c │ │ │ ├── display.c │ │ │ ├── gpio.c │ │ │ ├── include │ │ │ └── soc │ │ │ │ ├── addressmap.h │ │ │ │ ├── bl31_plat_params.h │ │ │ │ ├── clock.h │ │ │ │ ├── display.h │ │ │ │ ├── grf.h │ │ │ │ ├── memlayout.ld │ │ │ │ ├── mmu_operations.h │ │ │ │ ├── saradc.h │ │ │ │ ├── sdram.h │ │ │ │ ├── timer.h │ │ │ │ ├── tsadc.h │ │ │ │ └── usb.h │ │ │ ├── mmu_operations.c │ │ │ ├── saradc.c │ │ │ ├── sdram.c │ │ │ ├── soc.c │ │ │ ├── timer.c │ │ │ ├── tsadc.c │ │ │ └── usb.c │ ├── samsung │ │ ├── exynos5250 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── alternate_cbfs.c │ │ │ ├── bootblock.c │ │ │ ├── cbmem.c │ │ │ ├── chip.h │ │ │ ├── clock.c │ │ │ ├── clock_init.c │ │ │ ├── cpu.c │ │ │ ├── dmc_common.c │ │ │ ├── dmc_init_ddr3.c │ │ │ ├── dp-reg.c │ │ │ ├── fb.c │ │ │ ├── gpio.c │ │ │ ├── i2c.c │ │ │ ├── include │ │ │ │ └── soc │ │ │ │ │ ├── alternate_cbfs.h │ │ │ │ │ ├── clk.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── dmc.h │ │ │ │ │ ├── dp-core.h │ │ │ │ │ ├── dp.h │ │ │ │ │ ├── dsim.h │ │ │ │ │ ├── fimd.h │ │ │ │ │ ├── gpio.h │ │ │ │ │ ├── i2c.h │ │ │ │ │ ├── i2s-regs.h │ │ │ │ │ ├── memlayout.ld │ │ │ │ │ ├── periph.h │ │ │ │ │ ├── pinmux.h │ │ │ │ │ ├── power.h │ │ │ │ │ ├── setup.h │ │ │ │ │ ├── spi.h │ │ │ │ │ ├── sysreg.h │ │ │ │ │ ├── tmu.h │ │ │ │ │ ├── trustzone.h │ │ │ │ │ ├── uart.h │ │ │ │ │ ├── usb.h │ │ │ │ │ └── wakeup.h │ │ │ ├── pinmux.c │ │ │ ├── power.c │ │ │ ├── spi.c │ │ │ ├── timer.c │ │ │ ├── tmu.c │ │ │ ├── trustzone.c │ │ │ ├── uart.c │ │ │ ├── usb.c │ │ │ └── wakeup.c │ │ └── exynos5420 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── alternate_cbfs.c │ │ │ ├── bootblock.c │ │ │ ├── cbmem.c │ │ │ ├── chip.h │ │ │ ├── clock.c │ │ │ ├── clock_init.c │ │ │ ├── cpu.c │ │ │ ├── dmc_common.c │ │ │ ├── dmc_init_ddr3.c │ │ │ ├── dp.c │ │ │ ├── dp_lowlevel.c │ │ │ ├── fimd.c │ │ │ ├── gpio.c │ │ │ ├── i2c.c │ │ │ ├── include │ │ │ └── soc │ │ │ │ ├── alternate_cbfs.h │ │ │ │ ├── clk.h │ │ │ │ ├── cpu.h │ │ │ │ ├── dmc.h │ │ │ │ ├── dp.h │ │ │ │ ├── dsim.h │ │ │ │ ├── fimd.h │ │ │ │ ├── gpio.h │ │ │ │ ├── i2c.h │ │ │ │ ├── i2s-regs.h │ │ │ │ ├── memlayout.ld │ │ │ │ ├── periph.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── power.h │ │ │ │ ├── setup.h │ │ │ │ ├── spi.h │ │ │ │ ├── sysreg.h │ │ │ │ ├── tmu.h │ │ │ │ ├── trustzone.h │ │ │ │ ├── uart.h │ │ │ │ ├── usb.h │ │ │ │ └── wakeup.h │ │ │ ├── pinmux.c │ │ │ ├── power.c │ │ │ ├── smp.c │ │ │ ├── spi.c │ │ │ ├── timer.c │ │ │ ├── tmu.c │ │ │ ├── trustzone.c │ │ │ ├── uart.c │ │ │ ├── usb.c │ │ │ └── wakeup.c │ ├── turbo │ │ └── trav │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── alternate_cbfs.c │ │ │ ├── arm_tf.c │ │ │ ├── asm_macros.S │ │ │ ├── boot_control.c │ │ │ ├── bootblock.c │ │ │ ├── bootblock_asm.S │ │ │ ├── cache_helpers.S │ │ │ ├── cbmem.c │ │ │ ├── clock.c │ │ │ ├── clock_init.c │ │ │ ├── cpu.c │ │ │ ├── dmc_lpddr4phy_init.c │ │ │ ├── dmc_pie.c │ │ │ ├── gpio.c │ │ │ ├── gpt.c │ │ │ ├── include │ │ │ └── soc │ │ │ │ ├── MBOX.h │ │ │ │ ├── alternate_cbfs.h │ │ │ │ ├── boot_control.h │ │ │ │ ├── clock.h │ │ │ │ ├── clock_init.h │ │ │ │ ├── common_definition.h │ │ │ │ ├── cpu.h │ │ │ │ ├── dmc_lpddr4phy_init.h │ │ │ │ ├── dmc_train_fw_dmem_1d_bin.h │ │ │ │ ├── dmc_train_fw_dmem_2d_bin.h │ │ │ │ ├── dmc_train_fw_imem_1d_bin.h │ │ │ │ ├── dmc_train_fw_imem_2d_bin.h │ │ │ │ ├── gic.h │ │ │ │ ├── gpio.h │ │ │ │ ├── gpt.h │ │ │ │ ├── mailbox_A72_SCS_interface.h │ │ │ │ ├── mailbox_A72_SMS_interface.h │ │ │ │ ├── mmu_operations.h │ │ │ │ ├── netspeed.h │ │ │ │ ├── netspeed_c.h │ │ │ │ ├── periph.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── power.h │ │ │ │ ├── scs_helpers.h │ │ │ │ ├── sms_helpers.h │ │ │ │ ├── timer.h │ │ │ │ ├── trav_cache_helper.h │ │ │ │ ├── trustzone.h │ │ │ │ ├── uart.h │ │ │ │ ├── ufs.h │ │ │ │ ├── ufs_hci.h │ │ │ │ ├── ufs_mphy.h │ │ │ │ ├── ufs_scsi.h │ │ │ │ ├── ufs_trav_reg.h │ │ │ │ ├── ufs_unipro.h │ │ │ │ └── wdt.h │ │ │ ├── memlayout.ld │ │ │ ├── mmu.c │ │ │ ├── netspeed.S │ │ │ ├── netspeed_c.c │ │ │ ├── pinmux.c │ │ │ ├── power.c │ │ │ ├── scs_helpers_v2.c │ │ │ ├── sms_helpers.c │ │ │ ├── timer.c │ │ │ ├── trustzone.c │ │ │ ├── uart.c │ │ │ ├── ufs.c │ │ │ ├── ufs_api.c │ │ │ ├── ufs_cmd.c │ │ │ ├── ufs_mphy.c │ │ │ └── wdt.c │ └── ucb │ │ └── riscv │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ └── cbmem.c ├── southbridge │ ├── amd │ │ ├── agesa │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── hudson │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ ├── audio.asl │ │ │ │ ├── fch.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── pci_int.asl │ │ │ │ ├── pcie.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── smbus.asl │ │ │ │ └── usb.asl │ │ │ │ ├── agesawrapper.c │ │ │ │ ├── amd_pci_int_defs.h │ │ │ │ ├── amd_pci_int_types.h │ │ │ │ ├── bootblock.c │ │ │ │ ├── chip.h │ │ │ │ ├── early_setup.c │ │ │ │ ├── enable_usbdebug.c │ │ │ │ ├── fadt.c │ │ │ │ ├── hda.c │ │ │ │ ├── hudson.c │ │ │ │ ├── hudson.h │ │ │ │ ├── ide.c │ │ │ │ ├── imc.c │ │ │ │ ├── imc.h │ │ │ │ ├── lpc.c │ │ │ │ ├── pci.c │ │ │ │ ├── pci_devs.h │ │ │ │ ├── pcie.c │ │ │ │ ├── ramtop.c │ │ │ │ ├── reset.c │ │ │ │ ├── resume.c │ │ │ │ ├── sata.c │ │ │ │ ├── sd.c │ │ │ │ ├── sm.c │ │ │ │ ├── smbus.c │ │ │ │ ├── smbus.h │ │ │ │ ├── smbus_spd.c │ │ │ │ ├── smi.c │ │ │ │ ├── smi.h │ │ │ │ ├── smi_util.c │ │ │ │ ├── smihandler.c │ │ │ │ ├── spi.c │ │ │ │ └── usb.c │ │ ├── amd8111 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── ac97.c │ │ │ ├── acpi.c │ │ │ ├── amd8111.c │ │ │ ├── amd8111.h │ │ │ ├── amd8111_smbus.h │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_ctrl.c │ │ │ ├── early_smbus.c │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── nic.c │ │ │ ├── pci.c │ │ │ ├── reset.c │ │ │ ├── smbus.c │ │ │ ├── usb.c │ │ │ └── usb2.c │ │ ├── amd8131 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── bridge.c │ │ ├── amd8132 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── bridge.c │ │ ├── amd8151 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── agp3.c │ │ ├── cimx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── cimx_util.c │ │ │ ├── cimx_util.h │ │ │ ├── sb700 │ │ │ │ ├── Amd.h │ │ │ │ ├── AmdSbLib.h │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── Platform.h │ │ │ │ ├── amd_pci_int_defs.h │ │ │ │ ├── amd_pci_int_types.h │ │ │ │ ├── bootblock.c │ │ │ │ ├── chip.h │ │ │ │ ├── early.c │ │ │ │ ├── gpio_oem.h │ │ │ │ ├── late.c │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc.h │ │ │ │ ├── reset.c │ │ │ │ ├── sb_cimx.h │ │ │ │ ├── smbus.c │ │ │ │ ├── smbus.h │ │ │ │ ├── smbus_spd.c │ │ │ │ └── smbus_spd.h │ │ │ ├── sb800 │ │ │ │ ├── Amd.h │ │ │ │ ├── AmdSbLib.h │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── SBPLATFORM.h │ │ │ │ ├── acpi │ │ │ │ │ ├── audio.asl │ │ │ │ │ ├── fch.asl │ │ │ │ │ ├── lpc.asl │ │ │ │ │ ├── pcie.asl │ │ │ │ │ ├── sleepstates.asl │ │ │ │ │ ├── smbus.asl │ │ │ │ │ └── usb.asl │ │ │ │ ├── amd_pci_int_defs.h │ │ │ │ ├── amd_pci_int_types.h │ │ │ │ ├── bootblock.c │ │ │ │ ├── cfg.c │ │ │ │ ├── cfg.h │ │ │ │ ├── chip.h │ │ │ │ ├── early.c │ │ │ │ ├── fadt.c │ │ │ │ ├── fan.c │ │ │ │ ├── fan.h │ │ │ │ ├── gpio_oem.h │ │ │ │ ├── late.c │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc.h │ │ │ │ ├── pci_devs.h │ │ │ │ ├── ramtop.c │ │ │ │ ├── reset.c │ │ │ │ ├── sb_cimx.h │ │ │ │ ├── smbus.c │ │ │ │ ├── smbus.h │ │ │ │ ├── smbus_spd.c │ │ │ │ ├── smbus_spd.h │ │ │ │ └── spi.c │ │ │ └── sb900 │ │ │ │ ├── Amd.h │ │ │ │ ├── AmdSbLib.h │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── SbPlatform.h │ │ │ │ ├── amd_pci_int_defs.h │ │ │ │ ├── amd_pci_int_types.h │ │ │ │ ├── bootblock.c │ │ │ │ ├── cfg.c │ │ │ │ ├── chip.h │ │ │ │ ├── early.c │ │ │ │ ├── gpio_oem.h │ │ │ │ ├── late.c │ │ │ │ ├── lpc.c │ │ │ │ ├── lpc.h │ │ │ │ ├── reset.c │ │ │ │ ├── sb_cimx.h │ │ │ │ ├── smbus.c │ │ │ │ ├── smbus.h │ │ │ │ └── smbus_spd.c │ │ ├── common │ │ │ ├── Makefile.inc │ │ │ ├── amd_defs.h │ │ │ ├── amd_pci_util.c │ │ │ └── amd_pci_util.h │ │ ├── cs5535 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── chipsetinit.c │ │ │ ├── cs5535.c │ │ │ ├── cs5535.h │ │ │ ├── early_setup.c │ │ │ ├── early_smbus.c │ │ │ ├── ide.c │ │ │ └── smbus.h │ │ ├── cs5536 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── cs5536.c │ │ │ ├── cs5536.h │ │ │ ├── early_setup.c │ │ │ ├── early_smbus.c │ │ │ ├── ide.c │ │ │ ├── pirq.c │ │ │ ├── smbus.c │ │ │ └── smbus.h │ │ ├── pi │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── hudson │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile.inc │ │ │ │ ├── acpi │ │ │ │ ├── audio.asl │ │ │ │ ├── fch.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── pci_int.asl │ │ │ │ ├── pcie.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── smbus.asl │ │ │ │ └── usb.asl │ │ │ │ ├── amd_pci_int_defs.h │ │ │ │ ├── amd_pci_int_types.h │ │ │ │ ├── bootblock.c │ │ │ │ ├── chip.h │ │ │ │ ├── early_setup.c │ │ │ │ ├── enable_usbdebug.c │ │ │ │ ├── fadt.c │ │ │ │ ├── gpio.c │ │ │ │ ├── gpio.h │ │ │ │ ├── hda.c │ │ │ │ ├── hudson.c │ │ │ │ ├── hudson.h │ │ │ │ ├── ide.c │ │ │ │ ├── imc.c │ │ │ │ ├── imc.h │ │ │ │ ├── lpc.c │ │ │ │ ├── pci.c │ │ │ │ ├── pci_devs.h │ │ │ │ ├── pcie.c │ │ │ │ ├── reset.c │ │ │ │ ├── sata.c │ │ │ │ ├── sd.c │ │ │ │ ├── sm.c │ │ │ │ ├── smbus.c │ │ │ │ ├── smbus.h │ │ │ │ ├── smbus_spd.c │ │ │ │ ├── smi.c │ │ │ │ ├── smi.h │ │ │ │ ├── smi_util.c │ │ │ │ ├── smihandler.c │ │ │ │ ├── uart.c │ │ │ │ └── usb.c │ │ ├── rs690 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── cmn.c │ │ │ ├── early_setup.c │ │ │ ├── gfx.c │ │ │ ├── ht.c │ │ │ ├── pcie.c │ │ │ ├── rs690.c │ │ │ └── rs690.h │ │ ├── rs780 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── cmn.c │ │ │ ├── early_setup.c │ │ │ ├── gfx.c │ │ │ ├── ht.c │ │ │ ├── pcie.c │ │ │ ├── rev.h │ │ │ ├── rs780.c │ │ │ └── rs780.h │ │ ├── sb600 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── ac97.c │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_setup.c │ │ │ ├── enable_usbdebug.c │ │ │ ├── hda.c │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── pci.c │ │ │ ├── reset.c │ │ │ ├── sata.c │ │ │ ├── sb600.c │ │ │ ├── sb600.h │ │ │ ├── sm.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ └── usb.c │ │ ├── sb700 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── ide.asl │ │ │ │ └── sata.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_setup.c │ │ │ ├── enable_usbdebug.c │ │ │ ├── fadt.c │ │ │ ├── hda.c │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── pci.c │ │ │ ├── pmio.c │ │ │ ├── pmio.h │ │ │ ├── reset.c │ │ │ ├── sata.c │ │ │ ├── sb700.c │ │ │ ├── sb700.h │ │ │ ├── sm.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── spi.c │ │ │ ├── spi.h │ │ │ └── usb.c │ │ ├── sb800 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_setup.c │ │ │ ├── enable_usbdebug.c │ │ │ ├── fadt.c │ │ │ ├── hda.c │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── pci.c │ │ │ ├── pcie.c │ │ │ ├── reset.c │ │ │ ├── sata.c │ │ │ ├── sb800.c │ │ │ ├── sb800.h │ │ │ ├── sm.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ └── usb.c │ │ └── sr5650 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ └── sr5650.asl │ │ │ ├── chip.h │ │ │ ├── cmn.h │ │ │ ├── early_setup.c │ │ │ ├── ht.c │ │ │ ├── pcie.c │ │ │ ├── rev.h │ │ │ ├── sr5650.c │ │ │ └── sr5650.h │ ├── broadcom │ │ ├── bcm21000 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── pcie.c │ │ ├── bcm5780 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── nic.c │ │ │ ├── pcie.c │ │ │ └── pcix.c │ │ └── bcm5785 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── bcm5785.c │ │ │ ├── bcm5785.h │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_setup.c │ │ │ ├── early_smbus.c │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── reset.c │ │ │ ├── sata.c │ │ │ ├── sb_pci_main.c │ │ │ ├── smbus.h │ │ │ └── usb.c │ ├── intel │ │ ├── bd82x6x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── audio.asl │ │ │ │ ├── default_irq_route.asl │ │ │ │ ├── globalnvs.asl │ │ │ │ ├── irqlinks.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── pch.asl │ │ │ │ ├── pcie.asl │ │ │ │ ├── pcie_port.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── smbus.asl │ │ │ │ └── usb.asl │ │ │ ├── azalia.c │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_me.c │ │ │ ├── early_me_mrc.c │ │ │ ├── early_pch.c │ │ │ ├── early_pch_common.c │ │ │ ├── early_rcba.c │ │ │ ├── early_smbus.c │ │ │ ├── early_spi.c │ │ │ ├── early_thermal.c │ │ │ ├── early_usb.c │ │ │ ├── early_usb_mrc.c │ │ │ ├── elog.c │ │ │ ├── finalize.c │ │ │ ├── lpc.c │ │ │ ├── madt.c │ │ │ ├── me.c │ │ │ ├── me.h │ │ │ ├── me_8.x.c │ │ │ ├── me_status.c │ │ │ ├── nvs.h │ │ │ ├── pch.c │ │ │ ├── pch.h │ │ │ ├── pci.c │ │ │ ├── pcie.c │ │ │ ├── reset.c │ │ │ ├── sata.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── smi.c │ │ │ ├── smihandler.c │ │ │ ├── usb_ehci.c │ │ │ ├── usb_xhci.c │ │ │ └── watchdog.c │ │ ├── common │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ └── platform.asl │ │ │ ├── firmware │ │ │ │ ├── Kconfig │ │ │ │ └── Makefile.inc │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── pciehp.c │ │ │ ├── pciehp.h │ │ │ ├── spi.c │ │ │ └── usb_debug.c │ │ ├── fsp_bd82x6x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── audio.asl │ │ │ │ ├── globalnvs.asl │ │ │ │ ├── irqlinks.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── pch.asl │ │ │ │ ├── pcie.asl │ │ │ │ ├── pcie_port.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── smbus.asl │ │ │ │ └── usb.asl │ │ │ ├── azalia.c │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_init.c │ │ │ ├── early_me.c │ │ │ ├── early_smbus.c │ │ │ ├── early_spi.c │ │ │ ├── early_usb.c │ │ │ ├── elog.c │ │ │ ├── finalize.c │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── lpc.c │ │ │ ├── me.c │ │ │ ├── me.h │ │ │ ├── me_8.x.c │ │ │ ├── me_status.c │ │ │ ├── nvs.h │ │ │ ├── pch.c │ │ │ ├── pch.h │ │ │ ├── reset.c │ │ │ ├── sata.c │ │ │ ├── smi.c │ │ │ ├── smihandler.c │ │ │ ├── southbridge_pci_devs.h │ │ │ └── watchdog.c │ │ ├── fsp_i89xx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── globalnvs.asl │ │ │ │ ├── irqlinks.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── pch.asl │ │ │ │ ├── pcie.asl │ │ │ │ ├── pcie_port.asl │ │ │ │ ├── platform.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── smbus.asl │ │ │ │ └── usb.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_init.c │ │ │ ├── early_me.c │ │ │ ├── early_smbus.c │ │ │ ├── early_spi.c │ │ │ ├── early_usb.c │ │ │ ├── elog.c │ │ │ ├── finalize.c │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── lpc.c │ │ │ ├── me.c │ │ │ ├── me.h │ │ │ ├── me_8.x.c │ │ │ ├── me_status.c │ │ │ ├── nvs.h │ │ │ ├── pch.c │ │ │ ├── pch.h │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ ├── romstage.h │ │ │ ├── sata.c │ │ │ ├── smbus.h │ │ │ ├── smi.c │ │ │ ├── smihandler.c │ │ │ ├── southbridge_pci_devs.h │ │ │ └── watchdog.c │ │ ├── fsp_rangeley │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ │ ├── globalnvs.asl │ │ │ │ ├── irq_helper.h │ │ │ │ ├── irqlinks.asl │ │ │ │ ├── irqroute.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── pcie.asl │ │ │ │ ├── pcie_port.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── smbus.asl │ │ │ │ ├── soc.asl │ │ │ │ └── usb.asl │ │ │ ├── chip.h │ │ │ ├── early_init.c │ │ │ ├── early_smbus.c │ │ │ ├── early_spi.c │ │ │ ├── early_usb.c │ │ │ ├── gpio.c │ │ │ ├── gpio.h │ │ │ ├── irq.h │ │ │ ├── lpc.c │ │ │ ├── nvs.h │ │ │ ├── pci_devs.h │ │ │ ├── reset.c │ │ │ ├── romstage.c │ │ │ ├── romstage.h │ │ │ ├── sata.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── soc.c │ │ │ ├── soc.h │ │ │ ├── spi.c │ │ │ └── watchdog.c │ │ ├── i3100 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── early_lpc.c │ │ │ ├── early_smbus.c │ │ │ ├── ehci.c │ │ │ ├── i3100.c │ │ │ ├── i3100.h │ │ │ ├── ioapic.c │ │ │ ├── lpc.c │ │ │ ├── pci.c │ │ │ ├── pciexp_portb.c │ │ │ ├── reset.c │ │ │ ├── sata.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ └── uhci.c │ │ ├── i82371eb │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── isabridge.asl │ │ │ │ └── pirq.asl │ │ │ ├── acpi_tables.c │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_pm.c │ │ │ ├── early_smbus.c │ │ │ ├── fadt.c │ │ │ ├── i82371eb.c │ │ │ ├── i82371eb.h │ │ │ ├── ide.c │ │ │ ├── isa.c │ │ │ ├── reset.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── usb.c │ │ │ └── wakeup.c │ │ ├── i82801ax │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── ac97.c │ │ │ ├── chip.h │ │ │ ├── early_smbus.c │ │ │ ├── i82801ax.c │ │ │ ├── i82801ax.h │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── pci.c │ │ │ ├── reset.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── usb.c │ │ │ └── watchdog.c │ │ ├── i82801bx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── ac97.c │ │ │ ├── chip.h │ │ │ ├── early_smbus.c │ │ │ ├── i82801bx.c │ │ │ ├── i82801bx.h │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── nic.c │ │ │ ├── pci.c │ │ │ ├── reset.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── usb.c │ │ │ └── watchdog.c │ │ ├── i82801dx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── ac97.c │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_smbus.c │ │ │ ├── i82801dx.c │ │ │ ├── i82801dx.h │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── nvs.h │ │ │ ├── pci.c │ │ │ ├── reset.c │ │ │ ├── smbus.c │ │ │ ├── smi.c │ │ │ ├── smihandler.c │ │ │ ├── tco_timer.c │ │ │ ├── usb.c │ │ │ └── usb2.c │ │ ├── i82801ex │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── ac97.c │ │ │ ├── chip.h │ │ │ ├── early_smbus.c │ │ │ ├── ehci.c │ │ │ ├── i82801ex.c │ │ │ ├── i82801ex.h │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── pci.c │ │ │ ├── reset.c │ │ │ ├── sata.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── uhci.c │ │ │ └── watchdog.c │ │ ├── i82801gx │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── ac97.c │ │ │ ├── acpi │ │ │ │ ├── ac97.asl │ │ │ │ ├── audio.asl │ │ │ │ ├── globalnvs.asl │ │ │ │ ├── ich7.asl │ │ │ │ ├── irqlinks.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── pata.asl │ │ │ │ ├── pci.asl │ │ │ │ ├── pcie.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── smbus.asl │ │ │ │ └── usb.asl │ │ │ ├── azalia.c │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_lpc.c │ │ │ ├── early_smbus.c │ │ │ ├── i82801gx.c │ │ │ ├── i82801gx.h │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── nic.c │ │ │ ├── nvs.h │ │ │ ├── pci.c │ │ │ ├── pcie.c │ │ │ ├── reset.c │ │ │ ├── sata.c │ │ │ ├── sata.h │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── smi.c │ │ │ ├── smihandler.c │ │ │ ├── usb.c │ │ │ ├── usb_ehci.c │ │ │ └── watchdog.c │ │ ├── i82801ix │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ ├── audio.asl │ │ │ │ ├── globalnvs.asl │ │ │ │ ├── ich9.asl │ │ │ │ ├── irqlinks.asl │ │ │ │ ├── lpc.asl │ │ │ │ ├── pci.asl │ │ │ │ ├── pcie.asl │ │ │ │ ├── pcie_port.asl │ │ │ │ ├── sata.asl │ │ │ │ ├── sleepstates.asl │ │ │ │ ├── smbus.asl │ │ │ │ └── usb.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── dmi_setup.c │ │ │ ├── early_init.c │ │ │ ├── early_smbus.c │ │ │ ├── hdaudio.c │ │ │ ├── i82801ix.c │ │ │ ├── i82801ix.h │ │ │ ├── lpc.c │ │ │ ├── nvs.h │ │ │ ├── pci.c │ │ │ ├── pcie.c │ │ │ ├── sata.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── smi.c │ │ │ ├── smihandler.c │ │ │ ├── thermal.c │ │ │ └── usb_ehci.c │ │ ├── i82870 │ │ │ ├── 82870.h │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── ioapic.c │ │ │ ├── pci_parity.c │ │ │ └── pcibridge.c │ │ ├── ibexpeak │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── azalia.c │ │ │ ├── chip.h │ │ │ ├── early_smbus.c │ │ │ ├── early_thermal.c │ │ │ ├── lpc.c │ │ │ ├── madt.c │ │ │ ├── me.c │ │ │ ├── me.h │ │ │ ├── nvs.h │ │ │ ├── pch.h │ │ │ ├── sata.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── smi.c │ │ │ ├── smihandler.c │ │ │ ├── thermal.c │ │ │ └── usb_ehci.c │ │ └── lynxpoint │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi.c │ │ │ ├── acpi │ │ │ ├── audio.asl │ │ │ ├── globalnvs.asl │ │ │ ├── irqlinks.asl │ │ │ ├── lpc.asl │ │ │ ├── lpt_lp.asl │ │ │ ├── pch.asl │ │ │ ├── pcie.asl │ │ │ ├── pcie_port.asl │ │ │ ├── sata.asl │ │ │ ├── serialio.asl │ │ │ ├── sleepstates.asl │ │ │ ├── smbus.asl │ │ │ └── usb.asl │ │ │ ├── azalia.c │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_me.c │ │ │ ├── early_pch.c │ │ │ ├── early_smbus.c │ │ │ ├── early_spi.c │ │ │ ├── early_usb.c │ │ │ ├── elog.c │ │ │ ├── finalize.c │ │ │ ├── hda_verb.c │ │ │ ├── hda_verb.h │ │ │ ├── lp_gpio.c │ │ │ ├── lp_gpio.h │ │ │ ├── lpc.c │ │ │ ├── me.h │ │ │ ├── me_9.x.c │ │ │ ├── me_status.c │ │ │ ├── nvs.h │ │ │ ├── pch.c │ │ │ ├── pch.h │ │ │ ├── pci.c │ │ │ ├── pcie.c │ │ │ ├── pmutil.c │ │ │ ├── rcba.c │ │ │ ├── reset.c │ │ │ ├── sata.c │ │ │ ├── serialio.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── smi.c │ │ │ ├── smihandler.c │ │ │ ├── usb_ehci.c │ │ │ ├── usb_xhci.c │ │ │ └── watchdog.c │ ├── nvidia │ │ ├── ck804 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── ac97.c │ │ │ ├── acpi │ │ │ │ └── ck804.asl │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── ck804.c │ │ │ ├── ck804.h │ │ │ ├── early_setup.c │ │ │ ├── early_setup_car.c │ │ │ ├── early_setup_ss.h │ │ │ ├── early_smbus.c │ │ │ ├── early_smbus.h │ │ │ ├── enable_usbdebug.c │ │ │ ├── fadt.c │ │ │ ├── ht.c │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── nic.c │ │ │ ├── pci.c │ │ │ ├── pcie.c │ │ │ ├── reset.c │ │ │ ├── romstrap.S │ │ │ ├── romstrap.ld │ │ │ ├── sata.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── usb.c │ │ │ └── usb2.c │ │ └── mcp55 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── azalia.c │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_ctrl.c │ │ │ ├── early_setup_car.c │ │ │ ├── early_setup_ss.h │ │ │ ├── early_smbus.c │ │ │ ├── enable_usbdebug.c │ │ │ ├── fadt.c │ │ │ ├── ht.c │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── mcp55.c │ │ │ ├── mcp55.h │ │ │ ├── nic.c │ │ │ ├── pci.c │ │ │ ├── pcie.c │ │ │ ├── reset.c │ │ │ ├── romstrap.S │ │ │ ├── romstrap.ld │ │ │ ├── sata.c │ │ │ ├── smbus.c │ │ │ ├── smbus.h │ │ │ ├── usb.c │ │ │ └── usb2.c │ ├── ricoh │ │ └── rl5c476 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── rl5c476.c │ │ │ └── rl5c476.h │ ├── sis │ │ └── sis966 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── aza.c │ │ │ ├── bootblock.c │ │ │ ├── chip.h │ │ │ ├── early_ctrl.c │ │ │ ├── early_setup_car.c │ │ │ ├── early_setup_ss.h │ │ │ ├── early_smbus.c │ │ │ ├── enable_usbdebug.c │ │ │ ├── ide.c │ │ │ ├── lpc.c │ │ │ ├── nic.c │ │ │ ├── pcie.c │ │ │ ├── reset.c │ │ │ ├── romstrap.S │ │ │ ├── romstrap.ld │ │ │ ├── sata.c │ │ │ ├── sis761.c │ │ │ ├── sis966.c │ │ │ ├── sis966.h │ │ │ ├── smbus.h │ │ │ ├── usb.c │ │ │ └── usb2.c │ ├── ti │ │ ├── pci1x2x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ └── pci1x2x.c │ │ ├── pci7420 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── cardbus.c │ │ │ ├── chip.h │ │ │ ├── firewire.c │ │ │ └── pci7420.h │ │ └── pcixx12 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── pcixx12.c │ └── via │ │ ├── common │ │ ├── early_smbus_delay.c │ │ ├── early_smbus_is_busy.c │ │ ├── early_smbus_print_error.c │ │ ├── early_smbus_read_byte.c │ │ ├── early_smbus_reset.c │ │ ├── early_smbus_wait_until_ready.c │ │ └── via_early_smbus.h │ │ ├── k8t890 │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── bridge.c │ │ ├── chrome.c │ │ ├── ctrl.c │ │ ├── dram.c │ │ ├── early_car.c │ │ ├── error.c │ │ ├── host.c │ │ ├── host_ctrl.c │ │ ├── k8t890.h │ │ ├── k8x8xx.h │ │ ├── pcie.c │ │ ├── romstrap.S │ │ ├── romstrap.ld │ │ └── traf_ctrl.c │ │ ├── vt8237r │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── bootblock.c │ │ ├── chip.h │ │ ├── ctrl.c │ │ ├── early_serial.c │ │ ├── early_smbus.c │ │ ├── fadt.c │ │ ├── ide.c │ │ ├── lpc.c │ │ ├── nic.c │ │ ├── nvs.h │ │ ├── pirq.c │ │ ├── sata.c │ │ ├── smi.c │ │ ├── smihandler.c │ │ ├── usb.c │ │ ├── vt8237r.c │ │ └── vt8237r.h │ │ └── vt82c686 │ │ ├── early_serial.c │ │ └── vt82c686.h ├── superio │ ├── Makefile.inc │ ├── acpi │ │ ├── pnp.asl │ │ ├── pnp_config.asl │ │ ├── pnp_generic.asl │ │ ├── pnp_kbc.asl │ │ └── pnp_uart.asl │ ├── common │ │ └── conf_mode.c │ ├── fintek │ │ ├── Makefile.inc │ │ ├── common │ │ │ ├── Kconfig │ │ │ ├── early_serial.c │ │ │ └── fintek.h │ │ ├── f71805f │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── f71805f.h │ │ │ └── superio.c │ │ ├── f71808a │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── f71808a.h │ │ │ ├── f71808a_hwm.c │ │ │ ├── f71808a_multifunc.c │ │ │ ├── fintek_internal.h │ │ │ └── superio.c │ │ ├── f71859 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── f71859.h │ │ │ └── superio.c │ │ ├── f71863fg │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── f71863fg.h │ │ │ └── superio.c │ │ ├── f71869ad │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── f71869ad.h │ │ │ ├── f71869ad_hwm.c │ │ │ ├── f71869ad_multifunc.c │ │ │ ├── fintek_internal.h │ │ │ └── superio.c │ │ ├── f71872 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── f71872.h │ │ │ └── superio.c │ │ ├── f81216h │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── early_serial.c │ │ │ ├── f81216h.h │ │ │ └── superio.c │ │ ├── f81865f │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── f81865f.h │ │ │ └── superio.c │ │ └── f81866d │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── f81866d.h │ │ │ ├── f81866d_hwm.c │ │ │ ├── f81866d_uart.c │ │ │ ├── fintek_internal.h │ │ │ └── superio.c │ ├── intel │ │ ├── Makefile.inc │ │ ├── i3100 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── i3100.h │ │ │ └── superio.c │ │ └── i8900 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── i8900.h │ │ │ └── superio.c │ ├── ite │ │ ├── Makefile.inc │ │ ├── common │ │ │ ├── Kconfig │ │ │ ├── early_serial.c │ │ │ ├── env_ctrl.c │ │ │ ├── env_ctrl.h │ │ │ ├── env_ctrl_chip.h │ │ │ └── ite.h │ │ ├── it8671f │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── it8671f.h │ │ │ └── superio.c │ │ ├── it8712f │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── it8712f.h │ │ │ └── superio.c │ │ ├── it8716f │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── it8716f.h │ │ │ └── superio.c │ │ ├── it8718f │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── early_serial.c │ │ │ ├── it8718f.h │ │ │ └── superio.c │ │ ├── it8721f │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── it8721f.h │ │ │ └── superio.c │ │ ├── it8728f │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── it8728f.h │ │ │ ├── it8728f_hwm.c │ │ │ ├── it8728f_internal.h │ │ │ └── superio.c │ │ ├── it8772f │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ └── superio.asl │ │ │ ├── chip.h │ │ │ ├── early_init.c │ │ │ ├── it8772f.h │ │ │ └── superio.c │ │ └── it8783ef │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ └── superio.asl │ │ │ ├── chip.h │ │ │ ├── it8783ef.h │ │ │ └── superio.c │ ├── nsc │ │ ├── Makefile.inc │ │ ├── pc87309 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── pc87309.h │ │ │ └── superio.c │ │ ├── pc87360 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── pc87360.h │ │ │ └── superio.c │ │ ├── pc87366 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── pc87366.h │ │ │ └── superio.c │ │ ├── pc87382 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── pc87382.h │ │ │ └── superio.c │ │ ├── pc87384 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── pc87384.h │ │ │ └── superio.c │ │ ├── pc87392 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── pc87392.h │ │ │ └── superio.c │ │ ├── pc87417 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_init.c │ │ │ ├── early_serial.c │ │ │ ├── pc87417.h │ │ │ └── superio.c │ │ └── pc97317 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── pc97317.h │ │ │ └── superio.c │ ├── nuvoton │ │ ├── Makefile.inc │ │ ├── common │ │ │ ├── Kconfig │ │ │ ├── early_serial.c │ │ │ └── nuvoton.h │ │ ├── nct5104d │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── chip.h │ │ │ ├── early_init.c │ │ │ ├── nct5104d.h │ │ │ └── superio.c │ │ ├── nct5572d │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── nct5572d.h │ │ │ └── superio.c │ │ ├── nct6776 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── nct6776.h │ │ │ └── superio.c │ │ ├── nct6779d │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── nct6779d.h │ │ │ └── superio.c │ │ ├── nct6791d │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── nct6791d.h │ │ │ └── superio.c │ │ └── wpcm450 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_init.c │ │ │ ├── superio.c │ │ │ └── wpcm450.h │ ├── renesas │ │ ├── Makefile.inc │ │ └── m3885x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ └── superio.c │ ├── serverengines │ │ ├── Makefile.inc │ │ └── pilot │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_init.c │ │ │ ├── early_serial.c │ │ │ └── pilot.h │ ├── smsc │ │ ├── Makefile.inc │ │ ├── dme1737 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── dme1737.h │ │ │ ├── early_serial.c │ │ │ └── superio.c │ │ ├── fdc37n972 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── fdc37n972.c │ │ │ └── fdc37n972.h │ │ ├── kbc1100 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_init.c │ │ │ ├── kbc1100.h │ │ │ └── superio.c │ │ ├── lpc47b272 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── lpc47b272.h │ │ │ └── superio.c │ │ ├── lpc47b397 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_gpio.c │ │ │ ├── early_serial.c │ │ │ ├── lpc47b397.h │ │ │ └── superio.c │ │ ├── lpc47m10x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── lpc47m10x.h │ │ │ └── superio.c │ │ ├── lpc47m15x │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── lpc47m15x.h │ │ │ └── superio.c │ │ ├── lpc47n207 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ └── lpc47n207.h │ │ ├── lpc47n217 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── lpc47n217.h │ │ │ └── superio.c │ │ ├── lpc47n227 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── lpc47n227.h │ │ │ └── superio.c │ │ ├── mec1308 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ └── superio.asl │ │ │ ├── mec1308.h │ │ │ └── superio.c │ │ ├── sch4037 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── sch4037.h │ │ │ ├── sch4037_early_init.c │ │ │ └── superio.c │ │ ├── sio1007 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── acpi │ │ │ │ └── superio.asl │ │ │ ├── chip.h │ │ │ └── early_serial.c │ │ ├── sio1036 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── sio1036.h │ │ │ ├── sio1036_early_init.c │ │ │ └── superio.c │ │ ├── sio10n268 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── sio10n268.c │ │ │ └── sio10n268.h │ │ └── smscsuperio │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── early_serial.c │ │ │ ├── smscsuperio.h │ │ │ └── superio.c │ ├── via │ │ ├── Makefile.inc │ │ └── vt1211 │ │ │ ├── Kconfig │ │ │ ├── Makefile.inc │ │ │ ├── vt1211.c │ │ │ └── vt1211.h │ └── winbond │ │ ├── Makefile.inc │ │ ├── common │ │ ├── Kconfig │ │ ├── early_serial.c │ │ └── winbond.h │ │ ├── w83627dhg │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── acpi │ │ │ └── superio.asl │ │ ├── early_serial.c │ │ ├── superio.c │ │ └── w83627dhg.h │ │ ├── w83627ehg │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── early_serial.c │ │ ├── superio.c │ │ └── w83627ehg.h │ │ ├── w83627hf │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── acpi │ │ │ └── superio.asl │ │ ├── early_init.c │ │ ├── early_serial.c │ │ ├── superio.c │ │ └── w83627hf.h │ │ ├── w83627thg │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── superio.c │ │ └── w83627thg.h │ │ ├── w83627uhg │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── superio.c │ │ └── w83627uhg.h │ │ ├── w83667hg-a │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── ps2_controller.asl │ │ ├── superio.c │ │ └── w83667hg-a.h │ │ ├── w83697hf │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── chip.h │ │ ├── early_serial.c │ │ ├── superio.c │ │ └── w83697hf.h │ │ ├── w83977tf │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── early_serial.c │ │ ├── superio.c │ │ └── w83977tf.h │ │ └── wpcd376i │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── chip.h │ │ ├── early_serial.c │ │ ├── superio.c │ │ └── wpcd376i.h ├── vboot │ ├── Kconfig │ ├── Makefile.inc │ ├── bootmode.c │ ├── common.c │ ├── misc.h │ ├── secdata_mock.c │ ├── secdata_tpm.c │ ├── symbols.h │ ├── vbnv.c │ ├── vbnv.h │ ├── vbnv_cmos.c │ ├── vbnv_ec.c │ ├── vbnv_flash.c │ ├── vbnv_layout.h │ ├── vboot_common.c │ ├── vboot_common.h │ ├── vboot_handoff.c │ ├── vboot_loader.c │ ├── vboot_logic.c │ └── verstage.c └── vendorcode │ ├── Makefile.inc │ ├── amd │ ├── Kconfig │ ├── Makefile.inc │ ├── agesa │ │ ├── Makefile.inc │ │ ├── common │ │ │ ├── Makefile.inc │ │ │ ├── Porting.h │ │ │ ├── agesa-entry-cfg.h │ │ │ ├── agesa-entry.c │ │ │ ├── amdlib.c │ │ │ └── amdlib.h │ │ ├── f10 │ │ │ ├── AGESA.h │ │ │ ├── AMD.h │ │ │ ├── Dispatcher.h │ │ │ ├── Include │ │ │ │ ├── AdvancedApi.h │ │ │ │ ├── CommonReturns.h │ │ │ │ ├── Filecode.h │ │ │ │ ├── GeneralServices.h │ │ │ │ ├── GnbInterface.h │ │ │ │ ├── GnbInterfaceStub.h │ │ │ │ ├── Ids.h │ │ │ │ ├── IdsHt.h │ │ │ │ ├── OptionC6Install.h │ │ │ │ ├── OptionCpuCacheFlushOnHaltInstall.h │ │ │ │ ├── OptionCpuCoreLevelingInstall.h │ │ │ │ ├── OptionCpuFeaturesInstall.h │ │ │ │ ├── OptionDanubeMicrocodeInstall.h │ │ │ │ ├── OptionDmi.h │ │ │ │ ├── OptionDmiInstall.h │ │ │ │ ├── OptionDragonMicrocodeInstall.h │ │ │ │ ├── OptionFamily10h.h │ │ │ │ ├── OptionFamily10hBlInstall.h │ │ │ │ ├── OptionFamily10hDaInstall.h │ │ │ │ ├── OptionFamily10hHyInstall.h │ │ │ │ ├── OptionFamily10hInstall.h │ │ │ │ ├── OptionFamily10hRbInstall.h │ │ │ │ ├── OptionHtAssistInstall.h │ │ │ │ ├── OptionHtInstall.h │ │ │ │ ├── OptionHwC1eInstall.h │ │ │ │ ├── OptionIdsInstall.h │ │ │ │ ├── OptionLynxMicrocodeInstall.h │ │ │ │ ├── OptionMaranelloMicrocodeInstall.h │ │ │ │ ├── OptionMemory.h │ │ │ │ ├── OptionMemoryInstall.h │ │ │ │ ├── OptionMemoryRecovery.h │ │ │ │ ├── OptionMemoryRecoveryInstall.h │ │ │ │ ├── OptionMsgBasedC1eInstall.h │ │ │ │ ├── OptionMultiSocket.h │ │ │ │ ├── OptionMultiSocketInstall.h │ │ │ │ ├── OptionNileMicrocodeInstall.h │ │ │ │ ├── OptionPreserveMailboxInstall.h │ │ │ │ ├── OptionPstate.h │ │ │ │ ├── OptionPstateInstall.h │ │ │ │ ├── OptionS3ScriptInstall.h │ │ │ │ ├── OptionSanMarinoMicrocodeInstall.h │ │ │ │ ├── OptionSlit.h │ │ │ │ ├── OptionSlitInstall.h │ │ │ │ ├── OptionSrat.h │ │ │ │ ├── OptionSratInstall.h │ │ │ │ ├── OptionTigrisMicrocodeInstall.h │ │ │ │ ├── OptionWhea.h │ │ │ │ ├── OptionWheaInstall.h │ │ │ │ ├── Options.h │ │ │ │ ├── OptionsHt.h │ │ │ │ ├── OptionsPage.h │ │ │ │ ├── PlatformInstall.h │ │ │ │ ├── PlatformMemoryConfiguration.h │ │ │ │ ├── Topology.h │ │ │ │ └── gcc-intrin.h │ │ │ ├── Legacy │ │ │ │ └── Proc │ │ │ │ │ ├── Dispatcher.c │ │ │ │ │ ├── agesaCallouts.c │ │ │ │ │ └── hobTransfer.c │ │ │ ├── MainPage.h │ │ │ ├── Makefile.inc │ │ │ ├── Proc │ │ │ │ ├── CPU │ │ │ │ │ ├── Family │ │ │ │ │ │ ├── 0x10 │ │ │ │ │ │ │ ├── F10MultiLinkPciTables.c │ │ │ │ │ │ │ ├── F10PackageType.h │ │ │ │ │ │ │ ├── F10PmNbCofVidInit.c │ │ │ │ │ │ │ ├── F10PmNbCofVidInit.h │ │ │ │ │ │ │ ├── F10PmNbPstateInit.c │ │ │ │ │ │ │ ├── F10PmNbPstateInit.h │ │ │ │ │ │ │ ├── F10SingleLinkPciTables.c │ │ │ │ │ │ │ ├── RevC │ │ │ │ │ │ │ │ ├── BL │ │ │ │ │ │ │ │ │ ├── F10BlCacheFlushOnHalt.c │ │ │ │ │ │ │ │ │ ├── F10BlEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10BlHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10BlLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10BlMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10BlMsrTables.c │ │ │ │ │ │ │ │ │ └── F10BlPciTables.c │ │ │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ │ │ ├── F10DaCacheFlushOnHalt.c │ │ │ │ │ │ │ │ │ ├── F10DaEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10DaHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10DaLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10DaMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10DaMsrTables.c │ │ │ │ │ │ │ │ │ └── F10DaPciTables.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch01000085.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch01000086.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch01000098.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000b6.c │ │ │ │ │ │ │ │ ├── F10RevCHtPhyTables.c │ │ │ │ │ │ │ │ ├── F10RevCHwC1e.c │ │ │ │ │ │ │ │ ├── F10RevCMsrTables.c │ │ │ │ │ │ │ │ ├── F10RevCPciTables.c │ │ │ │ │ │ │ │ ├── F10RevCUtilities.c │ │ │ │ │ │ │ │ └── RB │ │ │ │ │ │ │ │ │ ├── F10RbEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10RbHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10RbLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10RbMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10RbMsrTables.c │ │ │ │ │ │ │ │ │ └── F10RbPciTables.c │ │ │ │ │ │ │ ├── RevD │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c4.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c5.c │ │ │ │ │ │ │ │ ├── F10RevDHtAssist.c │ │ │ │ │ │ │ │ ├── F10RevDMsgBasedC1e.c │ │ │ │ │ │ │ │ ├── F10RevDUtilities.c │ │ │ │ │ │ │ │ └── HY │ │ │ │ │ │ │ │ │ ├── F10HyEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10HyHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10HyInitEarlyTable.c │ │ │ │ │ │ │ │ │ ├── F10HyLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10HyMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10HyMsrTables.c │ │ │ │ │ │ │ │ │ └── F10HyPciTables.c │ │ │ │ │ │ │ ├── cpuCommonF10Utilities.c │ │ │ │ │ │ │ ├── cpuCommonF10Utilities.h │ │ │ │ │ │ │ ├── cpuF10BrandId.c │ │ │ │ │ │ │ ├── cpuF10BrandIdAm3.c │ │ │ │ │ │ │ ├── cpuF10BrandIdAsb2.c │ │ │ │ │ │ │ ├── cpuF10BrandIdC32.c │ │ │ │ │ │ │ ├── cpuF10BrandIdFr1207.c │ │ │ │ │ │ │ ├── cpuF10BrandIdG34.c │ │ │ │ │ │ │ ├── cpuF10BrandIdS1g3.c │ │ │ │ │ │ │ ├── cpuF10BrandIdS1g4.c │ │ │ │ │ │ │ ├── cpuF10CacheDefaults.c │ │ │ │ │ │ │ ├── cpuF10CacheFlushOnHalt.c │ │ │ │ │ │ │ ├── cpuF10Dmi.c │ │ │ │ │ │ │ ├── cpuF10EarlyInit.c │ │ │ │ │ │ │ ├── cpuF10EarlyInit.h │ │ │ │ │ │ │ ├── cpuF10FeatureLeveling.c │ │ │ │ │ │ │ ├── cpuF10FeatureLeveling.h │ │ │ │ │ │ │ ├── cpuF10HtPhyTables.c │ │ │ │ │ │ │ ├── cpuF10MsrTables.c │ │ │ │ │ │ │ ├── cpuF10PciTables.c │ │ │ │ │ │ │ ├── cpuF10PowerCheck.c │ │ │ │ │ │ │ ├── cpuF10PowerCheck.h │ │ │ │ │ │ │ ├── cpuF10PowerMgmt.h │ │ │ │ │ │ │ ├── cpuF10PowerMgmtSystemTables.c │ │ │ │ │ │ │ ├── cpuF10PowerPlane.c │ │ │ │ │ │ │ ├── cpuF10PowerPlane.h │ │ │ │ │ │ │ ├── cpuF10Pstate.c │ │ │ │ │ │ │ ├── cpuF10SoftwareThermal.c │ │ │ │ │ │ │ ├── cpuF10SoftwareThermal.h │ │ │ │ │ │ │ ├── cpuF10Utilities.c │ │ │ │ │ │ │ ├── cpuF10Utilities.h │ │ │ │ │ │ │ └── cpuF10WheaInitDataTables.c │ │ │ │ │ │ └── cpuFamRegisters.h │ │ │ │ │ ├── Feature │ │ │ │ │ │ ├── PreserveMailbox.c │ │ │ │ │ │ ├── PreserveMailbox.h │ │ │ │ │ │ ├── cpuC6State.c │ │ │ │ │ │ ├── cpuC6State.h │ │ │ │ │ │ ├── cpuCacheFlushOnHalt.c │ │ │ │ │ │ ├── cpuCacheInit.c │ │ │ │ │ │ ├── cpuCacheInit.h │ │ │ │ │ │ ├── cpuCoreLeveling.c │ │ │ │ │ │ ├── cpuDmi.c │ │ │ │ │ │ ├── cpuFeatureLeveling.c │ │ │ │ │ │ ├── cpuFeatures.c │ │ │ │ │ │ ├── cpuFeatures.h │ │ │ │ │ │ ├── cpuHtAssist.c │ │ │ │ │ │ ├── cpuHtAssist.h │ │ │ │ │ │ ├── cpuHwC1e.c │ │ │ │ │ │ ├── cpuHwC1e.h │ │ │ │ │ │ ├── cpuMsgBasedC1e.c │ │ │ │ │ │ ├── cpuMsgBasedC1e.h │ │ │ │ │ │ ├── cpuPstateGather.c │ │ │ │ │ │ ├── cpuPstateLeveling.c │ │ │ │ │ │ ├── cpuPstateTables.c │ │ │ │ │ │ ├── cpuPstateTables.h │ │ │ │ │ │ ├── cpuSlit.c │ │ │ │ │ │ ├── cpuSrat.c │ │ │ │ │ │ └── cpuWhea.c │ │ │ │ │ ├── S3.c │ │ │ │ │ ├── S3.h │ │ │ │ │ ├── Table.c │ │ │ │ │ ├── Table.h │ │ │ │ │ ├── cahalt.c │ │ │ │ │ ├── cpuApicUtilities.c │ │ │ │ │ ├── cpuApicUtilities.h │ │ │ │ │ ├── cpuBist.c │ │ │ │ │ ├── cpuBrandId.c │ │ │ │ │ ├── cpuEarlyInit.c │ │ │ │ │ ├── cpuEarlyInit.h │ │ │ │ │ ├── cpuEnvInit.h │ │ │ │ │ ├── cpuEventLog.c │ │ │ │ │ ├── cpuFamilyTranslation.c │ │ │ │ │ ├── cpuFamilyTranslation.h │ │ │ │ │ ├── cpuGeneralServices.c │ │ │ │ │ ├── cpuInitEarlyTable.c │ │ │ │ │ ├── cpuLateInit.c │ │ │ │ │ ├── cpuLateInit.h │ │ │ │ │ ├── cpuMicrocodePatch.c │ │ │ │ │ ├── cpuPage.h │ │ │ │ │ ├── cpuPostInit.c │ │ │ │ │ ├── cpuPostInit.h │ │ │ │ │ ├── cpuPowerMgmt.c │ │ │ │ │ ├── cpuPowerMgmtMultiSocket.c │ │ │ │ │ ├── cpuPowerMgmtMultiSocket.h │ │ │ │ │ ├── cpuPowerMgmtSingleSocket.c │ │ │ │ │ ├── cpuPowerMgmtSingleSocket.h │ │ │ │ │ ├── cpuPowerMgmtSystemTables.h │ │ │ │ │ ├── cpuRegisters.h │ │ │ │ │ ├── cpuServices.h │ │ │ │ │ ├── cpuWarmReset.c │ │ │ │ │ ├── heapManager.c │ │ │ │ │ └── heapManager.h │ │ │ │ ├── Common │ │ │ │ │ ├── AmdInitEarly.c │ │ │ │ │ ├── AmdInitEnv.c │ │ │ │ │ ├── AmdInitLate.c │ │ │ │ │ ├── AmdInitMid.c │ │ │ │ │ ├── AmdInitPost.c │ │ │ │ │ ├── AmdInitRecovery.c │ │ │ │ │ ├── AmdInitReset.c │ │ │ │ │ ├── AmdInitResume.c │ │ │ │ │ ├── AmdLateRunApTask.c │ │ │ │ │ ├── AmdS3LateRestore.c │ │ │ │ │ ├── AmdS3Save.c │ │ │ │ │ ├── CommonInits.c │ │ │ │ │ ├── CommonInits.h │ │ │ │ │ ├── CommonPage.h │ │ │ │ │ ├── CommonReturns.c │ │ │ │ │ ├── CreateStruct.c │ │ │ │ │ ├── CreateStruct.h │ │ │ │ │ ├── S3RestoreState.c │ │ │ │ │ ├── S3SaveState.c │ │ │ │ │ └── S3SaveState.h │ │ │ │ ├── HT │ │ │ │ │ ├── Fam10 │ │ │ │ │ │ ├── htNbCoherentFam10.c │ │ │ │ │ │ ├── htNbCoherentFam10.h │ │ │ │ │ │ ├── htNbFam10.c │ │ │ │ │ │ ├── htNbNonCoherentFam10.c │ │ │ │ │ │ ├── htNbNonCoherentFam10.h │ │ │ │ │ │ ├── htNbOptimizationFam10.c │ │ │ │ │ │ ├── htNbOptimizationFam10.h │ │ │ │ │ │ ├── htNbSystemFam10.c │ │ │ │ │ │ ├── htNbSystemFam10.h │ │ │ │ │ │ ├── htNbUtilitiesFam10.c │ │ │ │ │ │ └── htNbUtilitiesFam10.h │ │ │ │ │ ├── Features │ │ │ │ │ │ ├── htFeatDynamicDiscovery.c │ │ │ │ │ │ ├── htFeatDynamicDiscovery.h │ │ │ │ │ │ ├── htFeatGanging.c │ │ │ │ │ │ ├── htFeatGanging.h │ │ │ │ │ │ ├── htFeatNoncoherent.c │ │ │ │ │ │ ├── htFeatNoncoherent.h │ │ │ │ │ │ ├── htFeatOptimization.c │ │ │ │ │ │ ├── htFeatOptimization.h │ │ │ │ │ │ ├── htFeatRouting.c │ │ │ │ │ │ ├── htFeatRouting.h │ │ │ │ │ │ ├── htFeatSets.c │ │ │ │ │ │ ├── htFeatSublinks.c │ │ │ │ │ │ ├── htFeatSublinks.h │ │ │ │ │ │ ├── htFeatTrafficDistribution.c │ │ │ │ │ │ ├── htFeatTrafficDistribution.h │ │ │ │ │ │ └── htIds.c │ │ │ │ │ ├── NbCommon │ │ │ │ │ │ ├── htNbCoherent.c │ │ │ │ │ │ ├── htNbCoherent.h │ │ │ │ │ │ ├── htNbNonCoherent.c │ │ │ │ │ │ ├── htNbNonCoherent.h │ │ │ │ │ │ ├── htNbOptimization.c │ │ │ │ │ │ ├── htNbOptimization.h │ │ │ │ │ │ ├── htNbUtilities.c │ │ │ │ │ │ └── htNbUtilities.h │ │ │ │ │ ├── htFeat.c │ │ │ │ │ ├── htFeat.h │ │ │ │ │ ├── htGraph.h │ │ │ │ │ ├── htGraph │ │ │ │ │ │ ├── htGraph.c │ │ │ │ │ │ ├── htGraph1.c │ │ │ │ │ │ ├── htGraph2.c │ │ │ │ │ │ ├── htGraph3Line.c │ │ │ │ │ │ ├── htGraph3Triangle.c │ │ │ │ │ │ ├── htGraph4Degenerate.c │ │ │ │ │ │ ├── htGraph4FullyConnected.c │ │ │ │ │ │ ├── htGraph4Kite.c │ │ │ │ │ │ ├── htGraph4Line.c │ │ │ │ │ │ ├── htGraph4Square.c │ │ │ │ │ │ ├── htGraph4Star.c │ │ │ │ │ │ ├── htGraph5FullyConnected.c │ │ │ │ │ │ ├── htGraph5TwistedLadder.c │ │ │ │ │ │ ├── htGraph6DoubloonLower.c │ │ │ │ │ │ ├── htGraph6DoubloonUpper.c │ │ │ │ │ │ ├── htGraph6FullyConnected.c │ │ │ │ │ │ ├── htGraph6TwinTriangles.c │ │ │ │ │ │ ├── htGraph6TwistedLadder.c │ │ │ │ │ │ ├── htGraph7FullyConnected.c │ │ │ │ │ │ ├── htGraph7TwistedLadder.c │ │ │ │ │ │ ├── htGraph8DoubloonM.c │ │ │ │ │ │ ├── htGraph8FullyConnected.c │ │ │ │ │ │ ├── htGraph8Ladder.c │ │ │ │ │ │ ├── htGraph8TwinFullyFourWays.c │ │ │ │ │ │ └── htGraph8TwistedLadder.c │ │ │ │ │ ├── htInterface.c │ │ │ │ │ ├── htInterface.h │ │ │ │ │ ├── htInterfaceCoherent.c │ │ │ │ │ ├── htInterfaceCoherent.h │ │ │ │ │ ├── htInterfaceGeneral.c │ │ │ │ │ ├── htInterfaceGeneral.h │ │ │ │ │ ├── htInterfaceNonCoherent.c │ │ │ │ │ ├── htInterfaceNonCoherent.h │ │ │ │ │ ├── htMain.c │ │ │ │ │ ├── htNb.c │ │ │ │ │ ├── htNb.h │ │ │ │ │ ├── htNbHardwareFam10.h │ │ │ │ │ ├── htNotify.c │ │ │ │ │ ├── htNotify.h │ │ │ │ │ ├── htPage.h │ │ │ │ │ └── htTopologies.h │ │ │ │ ├── IDS │ │ │ │ │ ├── Control │ │ │ │ │ │ ├── IdsCtrl.c │ │ │ │ │ │ └── IdsLib.c │ │ │ │ │ ├── Debug │ │ │ │ │ │ └── IdsDebug.c │ │ │ │ │ ├── Family │ │ │ │ │ │ └── 0x10 │ │ │ │ │ │ │ ├── BL │ │ │ │ │ │ │ ├── IdsF10BLService.c │ │ │ │ │ │ │ └── IdsF10BLService.h │ │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── IdsF10DAService.c │ │ │ │ │ │ │ └── IdsF10DAService.h │ │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── IdsF10HYService.c │ │ │ │ │ │ │ └── IdsF10HYService.h │ │ │ │ │ │ │ ├── IdsF10AllService.c │ │ │ │ │ │ │ ├── IdsF10AllService.h │ │ │ │ │ │ │ └── RB │ │ │ │ │ │ │ ├── IdsF10RBService.c │ │ │ │ │ │ │ └── IdsF10RBService.h │ │ │ │ │ ├── IdsLib.h │ │ │ │ │ ├── IdsPage.h │ │ │ │ │ ├── OptionsIds.h │ │ │ │ │ └── Perf │ │ │ │ │ │ └── IdsPerf.c │ │ │ │ ├── Mem │ │ │ │ │ ├── Ardk │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── marc32_3.c │ │ │ │ │ │ │ └── mauc32_3.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── masda2.c │ │ │ │ │ │ │ ├── masda3.c │ │ │ │ │ │ │ └── mauda3.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mardr2.c │ │ │ │ │ │ │ ├── mardr3.c │ │ │ │ │ │ │ └── maudr3.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── marhy3.c │ │ │ │ │ │ │ └── mauhy3.c │ │ │ │ │ │ ├── NI │ │ │ │ │ │ │ ├── masNi3.c │ │ │ │ │ │ │ └── mauNi3.c │ │ │ │ │ │ └── ma.c │ │ │ │ │ ├── Feat │ │ │ │ │ │ ├── CHINTLV │ │ │ │ │ │ │ ├── mfchi.c │ │ │ │ │ │ │ └── mfchi.h │ │ │ │ │ │ ├── CSINTLV │ │ │ │ │ │ │ ├── mfcsi.c │ │ │ │ │ │ │ └── mfcsi.h │ │ │ │ │ │ ├── DMI │ │ │ │ │ │ │ └── mfDMI.c │ │ │ │ │ │ ├── ECC │ │ │ │ │ │ │ ├── mfecc.c │ │ │ │ │ │ │ ├── mfecc.h │ │ │ │ │ │ │ └── mfemp.c │ │ │ │ │ │ ├── EXCLUDIMM │ │ │ │ │ │ │ └── mfdimmexclud.c │ │ │ │ │ │ ├── IDENDIMM │ │ │ │ │ │ │ ├── mfidendimm.c │ │ │ │ │ │ │ └── mfidendimm.h │ │ │ │ │ │ ├── INTLVRN │ │ │ │ │ │ │ ├── mfintlvrn.c │ │ │ │ │ │ │ └── mfintlvrn.h │ │ │ │ │ │ ├── LVDDR3 │ │ │ │ │ │ │ ├── mflvddr3.c │ │ │ │ │ │ │ └── mflvddr3.h │ │ │ │ │ │ ├── MEMCLR │ │ │ │ │ │ │ └── mfmemclr.c │ │ │ │ │ │ ├── NDINTLV │ │ │ │ │ │ │ ├── mfndi.c │ │ │ │ │ │ │ └── mfndi.h │ │ │ │ │ │ ├── ODTHERMAL │ │ │ │ │ │ │ ├── mfodthermal.c │ │ │ │ │ │ │ └── mfodthermal.h │ │ │ │ │ │ ├── OLSPARE │ │ │ │ │ │ │ ├── mfspr.c │ │ │ │ │ │ │ └── mfspr.h │ │ │ │ │ │ ├── PARTRN │ │ │ │ │ │ │ ├── mfParallelTraining.c │ │ │ │ │ │ │ └── mfStandardTraining.c │ │ │ │ │ │ ├── S3 │ │ │ │ │ │ │ └── mfs3.c │ │ │ │ │ │ └── TABLE │ │ │ │ │ │ │ └── mftds.c │ │ │ │ │ ├── Main │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ └── mmflowC32.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ └── mmflowda.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ └── mmflowdr.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ └── mmflowhy.c │ │ │ │ │ │ ├── mdef.c │ │ │ │ │ │ ├── merrhdl.c │ │ │ │ │ │ ├── minit.c │ │ │ │ │ │ ├── mm.c │ │ │ │ │ │ ├── mmConditionalPso.c │ │ │ │ │ │ ├── mmEcc.c │ │ │ │ │ │ ├── mmExcludeDimm.c │ │ │ │ │ │ ├── mmLvDdr3.c │ │ │ │ │ │ ├── mmMemClr.c │ │ │ │ │ │ ├── mmMemRestore.c │ │ │ │ │ │ ├── mmNodeInterleave.c │ │ │ │ │ │ ├── mmOnlineSpare.c │ │ │ │ │ │ ├── mmParallelTraining.c │ │ │ │ │ │ ├── mmStandardTraining.c │ │ │ │ │ │ ├── mmUmaAlloc.c │ │ │ │ │ │ ├── mmflow.c │ │ │ │ │ │ ├── mu.c │ │ │ │ │ │ └── muc.c │ │ │ │ │ ├── NB │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── mnParTrainc32.c │ │ │ │ │ │ │ ├── mnS3c32.c │ │ │ │ │ │ │ ├── mnS3c32.h │ │ │ │ │ │ │ ├── mnc32.c │ │ │ │ │ │ │ ├── mnc32.h │ │ │ │ │ │ │ ├── mndctc32.c │ │ │ │ │ │ │ ├── mnflowc32.c │ │ │ │ │ │ │ ├── mnidendimmc32.c │ │ │ │ │ │ │ ├── mnmctc32.c │ │ │ │ │ │ │ ├── mnotc32.c │ │ │ │ │ │ │ ├── mnphyc32.c │ │ │ │ │ │ │ ├── mnprotoc32.c │ │ │ │ │ │ │ └── mnregc32.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── mnParTrainDa.c │ │ │ │ │ │ │ ├── mnS3da.c │ │ │ │ │ │ │ ├── mnS3da.h │ │ │ │ │ │ │ ├── mnda.c │ │ │ │ │ │ │ ├── mnda.h │ │ │ │ │ │ │ ├── mndctda.c │ │ │ │ │ │ │ ├── mnflowda.c │ │ │ │ │ │ │ ├── mnidendimmda.c │ │ │ │ │ │ │ ├── mnmctda.c │ │ │ │ │ │ │ ├── mnotda.c │ │ │ │ │ │ │ ├── mnprotoda.c │ │ │ │ │ │ │ └── mnregda.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mnParTrainDr.c │ │ │ │ │ │ │ ├── mnS3dr.c │ │ │ │ │ │ │ ├── mnS3dr.h │ │ │ │ │ │ │ ├── mndctdr.c │ │ │ │ │ │ │ ├── mndr.c │ │ │ │ │ │ │ ├── mndr.h │ │ │ │ │ │ │ ├── mnflowdr.c │ │ │ │ │ │ │ ├── mnidendimmdr.c │ │ │ │ │ │ │ ├── mnmctdr.c │ │ │ │ │ │ │ ├── mnotdr.c │ │ │ │ │ │ │ ├── mnprotodr.c │ │ │ │ │ │ │ └── mnregdr.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── mnParTrainHy.c │ │ │ │ │ │ │ ├── mnS3hy.c │ │ │ │ │ │ │ ├── mnS3hy.h │ │ │ │ │ │ │ ├── mndcthy.c │ │ │ │ │ │ │ ├── mnflowhy.c │ │ │ │ │ │ │ ├── mnhy.c │ │ │ │ │ │ │ ├── mnhy.h │ │ │ │ │ │ │ ├── mnidendimmhy.c │ │ │ │ │ │ │ ├── mnmcthy.c │ │ │ │ │ │ │ ├── mnothy.c │ │ │ │ │ │ │ ├── mnphyhy.c │ │ │ │ │ │ │ ├── mnprotohy.c │ │ │ │ │ │ │ └── mnreghy.c │ │ │ │ │ │ ├── NI │ │ │ │ │ │ │ ├── mnNi.c │ │ │ │ │ │ │ ├── mnNi.h │ │ │ │ │ │ │ ├── mnS3Ni.c │ │ │ │ │ │ │ └── mnS3Ni.h │ │ │ │ │ │ ├── mn.c │ │ │ │ │ │ ├── mnS3.c │ │ │ │ │ │ ├── mndct.c │ │ │ │ │ │ ├── mnfeat.c │ │ │ │ │ │ ├── mnflow.c │ │ │ │ │ │ ├── mnmct.c │ │ │ │ │ │ ├── mnphy.c │ │ │ │ │ │ ├── mnreg.c │ │ │ │ │ │ ├── mntrain2.c │ │ │ │ │ │ └── mntrain3.c │ │ │ │ │ ├── Ps │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── mprc32_3.c │ │ │ │ │ │ │ └── mpuc32_3.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── mpsda2.c │ │ │ │ │ │ │ ├── mpsda3.c │ │ │ │ │ │ │ └── mpuda3.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mprdr2.c │ │ │ │ │ │ │ ├── mprdr3.c │ │ │ │ │ │ │ ├── mpsdr3.c │ │ │ │ │ │ │ ├── mpudr2.c │ │ │ │ │ │ │ └── mpudr3.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── mprhy3.c │ │ │ │ │ │ │ ├── mpshy3.c │ │ │ │ │ │ │ └── mpuhy3.c │ │ │ │ │ │ ├── NI │ │ │ │ │ │ │ ├── mpsNi3.c │ │ │ │ │ │ │ └── mpuNi3.c │ │ │ │ │ │ └── mp.c │ │ │ │ │ ├── Tech │ │ │ │ │ │ ├── DDR2 │ │ │ │ │ │ │ ├── mt2.c │ │ │ │ │ │ │ ├── mt2.h │ │ │ │ │ │ │ ├── mtot2.c │ │ │ │ │ │ │ ├── mtot2.h │ │ │ │ │ │ │ ├── mtspd2.c │ │ │ │ │ │ │ └── mtspd2.h │ │ │ │ │ │ ├── DDR3 │ │ │ │ │ │ │ ├── mt3.c │ │ │ │ │ │ │ ├── mt3.h │ │ │ │ │ │ │ ├── mtot3.c │ │ │ │ │ │ │ ├── mtot3.h │ │ │ │ │ │ │ ├── mtrci3.c │ │ │ │ │ │ │ ├── mtrci3.h │ │ │ │ │ │ │ ├── mtsdi3.c │ │ │ │ │ │ │ ├── mtsdi3.h │ │ │ │ │ │ │ ├── mtspd3.c │ │ │ │ │ │ │ ├── mtspd3.h │ │ │ │ │ │ │ ├── mttecc3.c │ │ │ │ │ │ │ └── mttwl3.c │ │ │ │ │ │ ├── mt.c │ │ │ │ │ │ ├── mthdi.c │ │ │ │ │ │ ├── mttEdgeDetect.c │ │ │ │ │ │ ├── mttEdgeDetect.h │ │ │ │ │ │ ├── mttdimbt.c │ │ │ │ │ │ ├── mttecc.c │ │ │ │ │ │ ├── mtthrc.c │ │ │ │ │ │ ├── mttml.c │ │ │ │ │ │ ├── mttoptsrc.c │ │ │ │ │ │ └── mttsrc.c │ │ │ │ │ ├── ma.h │ │ │ │ │ ├── memPage.h │ │ │ │ │ ├── merrhdl.h │ │ │ │ │ ├── mfParallelTraining.h │ │ │ │ │ ├── mfStandardTraining.h │ │ │ │ │ ├── mfmemclr.h │ │ │ │ │ ├── mfs3.h │ │ │ │ │ ├── mftds.h │ │ │ │ │ ├── mm.h │ │ │ │ │ ├── mn.h │ │ │ │ │ ├── mp.h │ │ │ │ │ ├── mport.h │ │ │ │ │ ├── mt.h │ │ │ │ │ └── mu.h │ │ │ │ └── Recovery │ │ │ │ │ ├── CPU │ │ │ │ │ ├── cpuRecovery.c │ │ │ │ │ └── cpuRecovery.h │ │ │ │ │ ├── HT │ │ │ │ │ ├── htInitRecovery.c │ │ │ │ │ └── htInitReset.c │ │ │ │ │ ├── Mem │ │ │ │ │ ├── NB │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── mrnc32.c │ │ │ │ │ │ │ ├── mrnc32.h │ │ │ │ │ │ │ ├── mrnmctc32.c │ │ │ │ │ │ │ └── mrnprotoc32.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── mrnda.c │ │ │ │ │ │ │ ├── mrnda.h │ │ │ │ │ │ │ └── mrnmctda.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mrndr.c │ │ │ │ │ │ │ ├── mrndr.h │ │ │ │ │ │ │ └── mrnmctdr.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── mrndcthy.c │ │ │ │ │ │ │ ├── mrnhy.c │ │ │ │ │ │ │ ├── mrnhy.h │ │ │ │ │ │ │ ├── mrnmcthy.c │ │ │ │ │ │ │ └── mrnprotohy.c │ │ │ │ │ │ ├── NI │ │ │ │ │ │ │ ├── mrnNi.c │ │ │ │ │ │ │ └── mrnNi.h │ │ │ │ │ │ ├── mrn.c │ │ │ │ │ │ ├── mrndct.c │ │ │ │ │ │ ├── mrnmct.c │ │ │ │ │ │ └── mrntrain3.c │ │ │ │ │ ├── Tech │ │ │ │ │ │ ├── DDR3 │ │ │ │ │ │ │ ├── mrt3.c │ │ │ │ │ │ │ ├── mrtrci3.c │ │ │ │ │ │ │ ├── mrtsdi3.c │ │ │ │ │ │ │ ├── mrtspd3.c │ │ │ │ │ │ │ ├── mrtspd3.h │ │ │ │ │ │ │ └── mrttwl3.c │ │ │ │ │ │ ├── mrttpos.c │ │ │ │ │ │ └── mrttsrc.c │ │ │ │ │ ├── mrdef.c │ │ │ │ │ ├── mrinit.c │ │ │ │ │ ├── mrm.c │ │ │ │ │ ├── mrport.h │ │ │ │ │ ├── mrt3.h │ │ │ │ │ ├── mru.h │ │ │ │ │ └── mruc.c │ │ │ │ │ └── recoveryPage.h │ │ │ ├── errno.h │ │ │ └── gcccar.inc │ │ ├── f12 │ │ │ ├── AGESA.h │ │ │ ├── AMD.h │ │ │ ├── Dispatcher.h │ │ │ ├── Include │ │ │ │ ├── AdvancedApi.h │ │ │ │ ├── CommonReturns.h │ │ │ │ ├── Filecode.h │ │ │ │ ├── GeneralServices.h │ │ │ │ ├── GnbInterface.h │ │ │ │ ├── GnbInterfaceStub.h │ │ │ │ ├── Ids.h │ │ │ │ ├── IdsHt.h │ │ │ │ ├── OptionC6Install.h │ │ │ │ ├── OptionCpbInstall.h │ │ │ │ ├── OptionCpuCacheFlushOnHaltInstall.h │ │ │ │ ├── OptionCpuCoreLevelingInstall.h │ │ │ │ ├── OptionCpuFamiliesInstall.h │ │ │ │ ├── OptionCpuFeaturesInstall.h │ │ │ │ ├── OptionDmi.h │ │ │ │ ├── OptionDmiInstall.h │ │ │ │ ├── OptionFamily10hInstall.h │ │ │ │ ├── OptionFamily12hEarlySample.h │ │ │ │ ├── OptionFamily12hInstall.h │ │ │ │ ├── OptionFamily14hInstall.h │ │ │ │ ├── OptionFamily15hInstall.h │ │ │ │ ├── OptionFchInstall.h │ │ │ │ ├── OptionGfxRecovery.h │ │ │ │ ├── OptionGfxRecoveryInstall.h │ │ │ │ ├── OptionGnb.h │ │ │ │ ├── OptionGnbInstall.h │ │ │ │ ├── OptionHtInstall.h │ │ │ │ ├── OptionHwC1eInstall.h │ │ │ │ ├── OptionIdsInstall.h │ │ │ │ ├── OptionIoCstateInstall.h │ │ │ │ ├── OptionL3FeaturesInstall.h │ │ │ │ ├── OptionLowPwrPstateInstall.h │ │ │ │ ├── OptionMemory.h │ │ │ │ ├── OptionMemoryInstall.h │ │ │ │ ├── OptionMemoryRecovery.h │ │ │ │ ├── OptionMemoryRecoveryInstall.h │ │ │ │ ├── OptionMsgBasedC1eInstall.h │ │ │ │ ├── OptionMultiSocket.h │ │ │ │ ├── OptionMultiSocketInstall.h │ │ │ │ ├── OptionPreserveMailboxInstall.h │ │ │ │ ├── OptionPstate.h │ │ │ │ ├── OptionPstateInstall.h │ │ │ │ ├── OptionS3ScriptInstall.h │ │ │ │ ├── OptionSlit.h │ │ │ │ ├── OptionSlitInstall.h │ │ │ │ ├── OptionSrat.h │ │ │ │ ├── OptionSratInstall.h │ │ │ │ ├── OptionSwC1eInstall.h │ │ │ │ ├── OptionWhea.h │ │ │ │ ├── OptionWheaInstall.h │ │ │ │ ├── Options.h │ │ │ │ ├── OptionsHt.h │ │ │ │ ├── OptionsPage.h │ │ │ │ ├── PlatformInstall.h │ │ │ │ ├── PlatformMemoryConfiguration.h │ │ │ │ ├── Topology.h │ │ │ │ └── gcc-intrin.h │ │ │ ├── Legacy │ │ │ │ └── Proc │ │ │ │ │ ├── Dispatcher.c │ │ │ │ │ ├── agesaCallouts.c │ │ │ │ │ └── hobTransfer.c │ │ │ ├── MainPage.h │ │ │ ├── Makefile.inc │ │ │ ├── Proc │ │ │ │ ├── CPU │ │ │ │ │ ├── Family │ │ │ │ │ │ ├── 0x10 │ │ │ │ │ │ │ ├── F10InitEarlyTable.c │ │ │ │ │ │ │ ├── F10IoCstate.c │ │ │ │ │ │ │ ├── F10MultiLinkPciTables.c │ │ │ │ │ │ │ ├── F10PackageType.h │ │ │ │ │ │ │ ├── F10PmAsymBoostInit.c │ │ │ │ │ │ │ ├── F10PmAsymBoostInit.h │ │ │ │ │ │ │ ├── F10PmDualPlaneOnlySupport.c │ │ │ │ │ │ │ ├── F10PmDualPlaneOnlySupport.h │ │ │ │ │ │ │ ├── F10PmNbCofVidInit.c │ │ │ │ │ │ │ ├── F10PmNbCofVidInit.h │ │ │ │ │ │ │ ├── F10PmNbPstateInit.c │ │ │ │ │ │ │ ├── F10PmNbPstateInit.h │ │ │ │ │ │ │ ├── F10SingleLinkPciTables.c │ │ │ │ │ │ │ ├── RevC │ │ │ │ │ │ │ │ ├── BL │ │ │ │ │ │ │ │ │ ├── F10BlCacheFlushOnHalt.c │ │ │ │ │ │ │ │ │ ├── F10BlEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10BlHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10BlLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10BlMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10BlMsrTables.c │ │ │ │ │ │ │ │ │ └── F10BlPciTables.c │ │ │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ │ │ ├── F10DaCacheFlushOnHalt.c │ │ │ │ │ │ │ │ │ ├── F10DaEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10DaHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10DaLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10DaMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10DaMsrTables.c │ │ │ │ │ │ │ │ │ └── F10DaPciTables.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch01000085.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c6.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c7.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c8.c │ │ │ │ │ │ │ │ ├── F10RevCHtPhyTables.c │ │ │ │ │ │ │ │ ├── F10RevCHwC1e.c │ │ │ │ │ │ │ │ ├── F10RevCMsrTables.c │ │ │ │ │ │ │ │ ├── F10RevCPciTables.c │ │ │ │ │ │ │ │ ├── F10RevCSwC1e.c │ │ │ │ │ │ │ │ ├── F10RevCUtilities.c │ │ │ │ │ │ │ │ └── RB │ │ │ │ │ │ │ │ │ ├── F10RbEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10RbHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10RbLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10RbMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10RbMsrTables.c │ │ │ │ │ │ │ │ │ └── F10RbPciTables.c │ │ │ │ │ │ │ ├── RevD │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c4.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c5.c │ │ │ │ │ │ │ │ ├── F10RevDL3Features.c │ │ │ │ │ │ │ │ ├── F10RevDMsgBasedC1e.c │ │ │ │ │ │ │ │ ├── F10RevDUtilities.c │ │ │ │ │ │ │ │ └── HY │ │ │ │ │ │ │ │ │ ├── F10HyEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10HyHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10HyInitEarlyTable.c │ │ │ │ │ │ │ │ │ ├── F10HyLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10HyMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10HyMsrTables.c │ │ │ │ │ │ │ │ │ └── F10HyPciTables.c │ │ │ │ │ │ │ ├── RevE │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000bf.c │ │ │ │ │ │ │ │ ├── F10RevEHtPhyTables.c │ │ │ │ │ │ │ │ ├── F10RevEMsrTables.c │ │ │ │ │ │ │ │ ├── F10RevEPciTables.c │ │ │ │ │ │ │ │ ├── F10RevEUtilities.c │ │ │ │ │ │ │ │ └── PH │ │ │ │ │ │ │ │ │ ├── F10PhEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10PhHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10PhLogicalIdTables.c │ │ │ │ │ │ │ │ │ └── F10PhMicrocodePatchTables.c │ │ │ │ │ │ │ ├── cpuCommonF10Utilities.c │ │ │ │ │ │ │ ├── cpuCommonF10Utilities.h │ │ │ │ │ │ │ ├── cpuF10BrandId.c │ │ │ │ │ │ │ ├── cpuF10BrandIdAm3.c │ │ │ │ │ │ │ ├── cpuF10BrandIdAsb2.c │ │ │ │ │ │ │ ├── cpuF10BrandIdC32.c │ │ │ │ │ │ │ ├── cpuF10BrandIdFr1207.c │ │ │ │ │ │ │ ├── cpuF10BrandIdG34.c │ │ │ │ │ │ │ ├── cpuF10BrandIdS1g3.c │ │ │ │ │ │ │ ├── cpuF10BrandIdS1g4.c │ │ │ │ │ │ │ ├── cpuF10CacheDefaults.c │ │ │ │ │ │ │ ├── cpuF10CacheFlushOnHalt.c │ │ │ │ │ │ │ ├── cpuF10Cpb.c │ │ │ │ │ │ │ ├── cpuF10Dmi.c │ │ │ │ │ │ │ ├── cpuF10EarlyInit.c │ │ │ │ │ │ │ ├── cpuF10EarlyInit.h │ │ │ │ │ │ │ ├── cpuF10FeatureLeveling.c │ │ │ │ │ │ │ ├── cpuF10FeatureLeveling.h │ │ │ │ │ │ │ ├── cpuF10HtPhyTables.c │ │ │ │ │ │ │ ├── cpuF10MsrTables.c │ │ │ │ │ │ │ ├── cpuF10PciTables.c │ │ │ │ │ │ │ ├── cpuF10PowerCheck.c │ │ │ │ │ │ │ ├── cpuF10PowerCheck.h │ │ │ │ │ │ │ ├── cpuF10PowerMgmt.h │ │ │ │ │ │ │ ├── cpuF10PowerMgmtSystemTables.c │ │ │ │ │ │ │ ├── cpuF10PowerPlane.c │ │ │ │ │ │ │ ├── cpuF10PowerPlane.h │ │ │ │ │ │ │ ├── cpuF10Pstate.c │ │ │ │ │ │ │ ├── cpuF10SoftwareThermal.c │ │ │ │ │ │ │ ├── cpuF10SoftwareThermal.h │ │ │ │ │ │ │ ├── cpuF10Utilities.c │ │ │ │ │ │ │ ├── cpuF10Utilities.h │ │ │ │ │ │ │ ├── cpuF10WheaInitDataTables.c │ │ │ │ │ │ │ └── cpuF10WorkaroundsTable.c │ │ │ │ │ │ ├── 0x12 │ │ │ │ │ │ │ ├── F12C6State.c │ │ │ │ │ │ │ ├── F12Cpb.c │ │ │ │ │ │ │ ├── F12IoCstate.c │ │ │ │ │ │ │ ├── F12MicrocodePatch03000002.c │ │ │ │ │ │ │ ├── F12MicrocodePatch0300000e.c │ │ │ │ │ │ │ ├── F12MicrocodePatch0300000f.c │ │ │ │ │ │ │ ├── F12PackageType.h │ │ │ │ │ │ │ ├── LN │ │ │ │ │ │ │ │ ├── F12LnEquivalenceTable.c │ │ │ │ │ │ │ │ ├── F12LnLogicalIdTables.c │ │ │ │ │ │ │ │ └── F12LnMicrocodePatchTables.c │ │ │ │ │ │ │ ├── cpuCommonF12Utilities.c │ │ │ │ │ │ │ ├── cpuCommonF12Utilities.h │ │ │ │ │ │ │ ├── cpuF12BrandId.c │ │ │ │ │ │ │ ├── cpuF12BrandIdFm1.c │ │ │ │ │ │ │ ├── cpuF12BrandIdFs1.c │ │ │ │ │ │ │ ├── cpuF12CacheDefaults.c │ │ │ │ │ │ │ ├── cpuF12Dmi.c │ │ │ │ │ │ │ ├── cpuF12EarlyNbPstateInit.c │ │ │ │ │ │ │ ├── cpuF12EarlyNbPstateInit.h │ │ │ │ │ │ │ ├── cpuF12MsrTables.c │ │ │ │ │ │ │ ├── cpuF12PciTables.c │ │ │ │ │ │ │ ├── cpuF12PerCorePciTables.c │ │ │ │ │ │ │ ├── cpuF12PowerCheck.c │ │ │ │ │ │ │ ├── cpuF12PowerCheck.h │ │ │ │ │ │ │ ├── cpuF12PowerMgmt.h │ │ │ │ │ │ │ ├── cpuF12PowerMgmtSystemTables.c │ │ │ │ │ │ │ ├── cpuF12PowerPlane.c │ │ │ │ │ │ │ ├── cpuF12PowerPlane.h │ │ │ │ │ │ │ ├── cpuF12Pstate.c │ │ │ │ │ │ │ ├── cpuF12SoftwareThermal.c │ │ │ │ │ │ │ ├── cpuF12SoftwareThermal.h │ │ │ │ │ │ │ ├── cpuF12Utilities.c │ │ │ │ │ │ │ ├── cpuF12Utilities.h │ │ │ │ │ │ │ └── cpuF12WheaInitDataTables.c │ │ │ │ │ │ └── cpuFamRegisters.h │ │ │ │ │ ├── Feature │ │ │ │ │ │ ├── PreserveMailbox.c │ │ │ │ │ │ ├── PreserveMailbox.h │ │ │ │ │ │ ├── cpuC6State.c │ │ │ │ │ │ ├── cpuC6State.h │ │ │ │ │ │ ├── cpuCacheFlushOnHalt.c │ │ │ │ │ │ ├── cpuCacheInit.c │ │ │ │ │ │ ├── cpuCacheInit.h │ │ │ │ │ │ ├── cpuCoreLeveling.c │ │ │ │ │ │ ├── cpuCpb.c │ │ │ │ │ │ ├── cpuCpb.h │ │ │ │ │ │ ├── cpuDmi.c │ │ │ │ │ │ ├── cpuFeatureLeveling.c │ │ │ │ │ │ ├── cpuFeatures.c │ │ │ │ │ │ ├── cpuFeatures.h │ │ │ │ │ │ ├── cpuHwC1e.c │ │ │ │ │ │ ├── cpuHwC1e.h │ │ │ │ │ │ ├── cpuIoCstate.c │ │ │ │ │ │ ├── cpuIoCstate.h │ │ │ │ │ │ ├── cpuL3Features.c │ │ │ │ │ │ ├── cpuL3Features.h │ │ │ │ │ │ ├── cpuLowPwrPstate.c │ │ │ │ │ │ ├── cpuLowPwrPstate.h │ │ │ │ │ │ ├── cpuMsgBasedC1e.c │ │ │ │ │ │ ├── cpuMsgBasedC1e.h │ │ │ │ │ │ ├── cpuPstateGather.c │ │ │ │ │ │ ├── cpuPstateLeveling.c │ │ │ │ │ │ ├── cpuPstateTables.c │ │ │ │ │ │ ├── cpuPstateTables.h │ │ │ │ │ │ ├── cpuSlit.c │ │ │ │ │ │ ├── cpuSrat.c │ │ │ │ │ │ ├── cpuSwC1e.c │ │ │ │ │ │ ├── cpuSwC1e.h │ │ │ │ │ │ └── cpuWhea.c │ │ │ │ │ ├── S3.c │ │ │ │ │ ├── S3.h │ │ │ │ │ ├── Table.c │ │ │ │ │ ├── Table.h │ │ │ │ │ ├── cahalt.c │ │ │ │ │ ├── cpuApicUtilities.c │ │ │ │ │ ├── cpuApicUtilities.h │ │ │ │ │ ├── cpuBist.c │ │ │ │ │ ├── cpuBrandId.c │ │ │ │ │ ├── cpuEarlyInit.c │ │ │ │ │ ├── cpuEarlyInit.h │ │ │ │ │ ├── cpuEnvInit.h │ │ │ │ │ ├── cpuEventLog.c │ │ │ │ │ ├── cpuFamilyTranslation.c │ │ │ │ │ ├── cpuFamilyTranslation.h │ │ │ │ │ ├── cpuGeneralServices.c │ │ │ │ │ ├── cpuInitEarlyTable.c │ │ │ │ │ ├── cpuLateInit.c │ │ │ │ │ ├── cpuLateInit.h │ │ │ │ │ ├── cpuMicrocodePatch.c │ │ │ │ │ ├── cpuPage.h │ │ │ │ │ ├── cpuPostInit.c │ │ │ │ │ ├── cpuPostInit.h │ │ │ │ │ ├── cpuPowerMgmt.c │ │ │ │ │ ├── cpuPowerMgmtMultiSocket.c │ │ │ │ │ ├── cpuPowerMgmtMultiSocket.h │ │ │ │ │ ├── cpuPowerMgmtSingleSocket.c │ │ │ │ │ ├── cpuPowerMgmtSingleSocket.h │ │ │ │ │ ├── cpuPowerMgmtSystemTables.h │ │ │ │ │ ├── cpuRegisters.h │ │ │ │ │ ├── cpuServices.h │ │ │ │ │ ├── cpuWarmReset.c │ │ │ │ │ ├── heapManager.c │ │ │ │ │ └── heapManager.h │ │ │ │ ├── Common │ │ │ │ │ ├── AmdFch.h │ │ │ │ │ ├── AmdInitEarly.c │ │ │ │ │ ├── AmdInitEnv.c │ │ │ │ │ ├── AmdInitLate.c │ │ │ │ │ ├── AmdInitMid.c │ │ │ │ │ ├── AmdInitPost.c │ │ │ │ │ ├── AmdInitRecovery.c │ │ │ │ │ ├── AmdInitReset.c │ │ │ │ │ ├── AmdInitResume.c │ │ │ │ │ ├── AmdLateRunApTask.c │ │ │ │ │ ├── AmdS3LateRestore.c │ │ │ │ │ ├── AmdS3Save.c │ │ │ │ │ ├── CommonInits.c │ │ │ │ │ ├── CommonInits.h │ │ │ │ │ ├── CommonPage.h │ │ │ │ │ ├── CommonReturns.c │ │ │ │ │ ├── CreateStruct.c │ │ │ │ │ ├── CreateStruct.h │ │ │ │ │ ├── S3RestoreState.c │ │ │ │ │ ├── S3SaveState.c │ │ │ │ │ └── S3SaveState.h │ │ │ │ ├── Fch │ │ │ │ │ ├── Azalia │ │ │ │ │ │ ├── AzaliaEnv.c │ │ │ │ │ │ ├── AzaliaLate.c │ │ │ │ │ │ ├── AzaliaMid.c │ │ │ │ │ │ └── AzaliaReset.c │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── AcpiLib.c │ │ │ │ │ │ ├── AcpiLib.h │ │ │ │ │ │ ├── FchBiosRamUsage.h │ │ │ │ │ │ ├── FchCommon.c │ │ │ │ │ │ ├── FchCommonCfg.h │ │ │ │ │ │ ├── FchCommonSmm.c │ │ │ │ │ │ ├── FchDef.h │ │ │ │ │ │ ├── FchLib.c │ │ │ │ │ │ ├── FchPeLib.c │ │ │ │ │ │ ├── MemLib.c │ │ │ │ │ │ └── PciLib.c │ │ │ │ │ ├── Fch.h │ │ │ │ │ ├── FchPlatform.h │ │ │ │ │ ├── Gec │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── Hudson2GecEnvService.c │ │ │ │ │ │ │ │ └── Hudson2GecService.c │ │ │ │ │ │ ├── GecEnv.c │ │ │ │ │ │ ├── GecLate.c │ │ │ │ │ │ ├── GecMid.c │ │ │ │ │ │ └── GecReset.c │ │ │ │ │ ├── HwAcpi │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── Hudson2HwAcpiEnvService.c │ │ │ │ │ │ │ │ ├── Hudson2HwAcpiLateService.c │ │ │ │ │ │ │ │ ├── Hudson2HwAcpiMidService.c │ │ │ │ │ │ │ │ └── Hudson2SSService.c │ │ │ │ │ │ ├── HwAcpiEnv.c │ │ │ │ │ │ ├── HwAcpiLate.c │ │ │ │ │ │ ├── HwAcpiMid.c │ │ │ │ │ │ └── HwAcpiReset.c │ │ │ │ │ ├── Hwm │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── Hudson2HwmEnvService.c │ │ │ │ │ │ │ │ ├── Hudson2HwmLateService.c │ │ │ │ │ │ │ │ └── Hudson2HwmMidService.c │ │ │ │ │ │ ├── HwmEnv.c │ │ │ │ │ │ ├── HwmLate.c │ │ │ │ │ │ ├── HwmMid.c │ │ │ │ │ │ └── HwmReset.c │ │ │ │ │ ├── Ide │ │ │ │ │ │ ├── IdeEnv.c │ │ │ │ │ │ ├── IdeLate.c │ │ │ │ │ │ └── IdeMid.c │ │ │ │ │ ├── Imc │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ └── Hudson2ImcService.c │ │ │ │ │ │ ├── FchEcEnv.c │ │ │ │ │ │ ├── FchEcLate.c │ │ │ │ │ │ ├── FchEcMid.c │ │ │ │ │ │ ├── FchEcReset.c │ │ │ │ │ │ ├── ImcEnv.c │ │ │ │ │ │ ├── ImcLate.c │ │ │ │ │ │ ├── ImcLib.c │ │ │ │ │ │ ├── ImcMid.c │ │ │ │ │ │ └── ImcReset.c │ │ │ │ │ ├── Interface │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── EnvDefHudson2.c │ │ │ │ │ │ │ │ └── ResetDefHudson2.c │ │ │ │ │ │ ├── FchInitEnv.c │ │ │ │ │ │ ├── FchInitLate.c │ │ │ │ │ │ ├── FchInitMid.c │ │ │ │ │ │ ├── FchInitReset.c │ │ │ │ │ │ ├── FchInitS3.c │ │ │ │ │ │ ├── FchTaskLauncher.c │ │ │ │ │ │ ├── FchTaskLauncher.h │ │ │ │ │ │ ├── InitEnvDef.c │ │ │ │ │ │ └── InitResetDef.c │ │ │ │ │ ├── Ir │ │ │ │ │ │ ├── IrEnv.c │ │ │ │ │ │ ├── IrLate.c │ │ │ │ │ │ └── IrMid.c │ │ │ │ │ ├── Oem.h │ │ │ │ │ ├── Pcib │ │ │ │ │ │ ├── PcibEnv.c │ │ │ │ │ │ ├── PcibLate.c │ │ │ │ │ │ ├── PcibMid.c │ │ │ │ │ │ └── PcibReset.c │ │ │ │ │ ├── Pcie │ │ │ │ │ │ ├── AbEnv.c │ │ │ │ │ │ ├── AbLate.c │ │ │ │ │ │ ├── AbMid.c │ │ │ │ │ │ ├── AbReset.c │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── Hudson2AbEnvService.c │ │ │ │ │ │ │ │ ├── Hudson2AbResetService.c │ │ │ │ │ │ │ │ ├── Hudson2AbService.c │ │ │ │ │ │ │ │ ├── Hudson2GppResetService.c │ │ │ │ │ │ │ │ ├── Hudson2GppService.c │ │ │ │ │ │ │ │ ├── Hudson2PcieEnvService.c │ │ │ │ │ │ │ │ └── Hudson2PcieService.c │ │ │ │ │ │ ├── GppEnv.c │ │ │ │ │ │ ├── GppHp.c │ │ │ │ │ │ ├── GppLate.c │ │ │ │ │ │ ├── GppLib.c │ │ │ │ │ │ ├── GppMid.c │ │ │ │ │ │ ├── GppReset.c │ │ │ │ │ │ ├── PcieEnv.c │ │ │ │ │ │ ├── PcieLate.c │ │ │ │ │ │ ├── PcieMid.c │ │ │ │ │ │ └── PcieReset.c │ │ │ │ │ ├── Sata │ │ │ │ │ │ ├── AhciEnv.c │ │ │ │ │ │ ├── AhciLate.c │ │ │ │ │ │ ├── AhciLib.c │ │ │ │ │ │ ├── AhciMid.c │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── Hudson2SataEnvService.c │ │ │ │ │ │ │ │ ├── Hudson2SataResetService.c │ │ │ │ │ │ │ │ └── Hudson2SataService.c │ │ │ │ │ │ ├── Ide2AhciEnv.c │ │ │ │ │ │ ├── Ide2AhciLate.c │ │ │ │ │ │ ├── Ide2AhciLib.c │ │ │ │ │ │ ├── Ide2AhciMid.c │ │ │ │ │ │ ├── RaidEnv.c │ │ │ │ │ │ ├── RaidLate.c │ │ │ │ │ │ ├── RaidLib.c │ │ │ │ │ │ ├── RaidMid.c │ │ │ │ │ │ ├── SataEnv.c │ │ │ │ │ │ ├── SataEnvLib.c │ │ │ │ │ │ ├── SataIdeEnv.c │ │ │ │ │ │ ├── SataIdeLate.c │ │ │ │ │ │ ├── SataIdeLib.c │ │ │ │ │ │ ├── SataIdeMid.c │ │ │ │ │ │ ├── SataLate.c │ │ │ │ │ │ ├── SataLib.c │ │ │ │ │ │ ├── SataMid.c │ │ │ │ │ │ └── SataReset.c │ │ │ │ │ ├── Sd │ │ │ │ │ │ ├── SdEnv.c │ │ │ │ │ │ ├── SdLate.c │ │ │ │ │ │ └── SdMid.c │ │ │ │ │ ├── Spi │ │ │ │ │ │ ├── LpcEnv.c │ │ │ │ │ │ ├── LpcLate.c │ │ │ │ │ │ ├── LpcMid.c │ │ │ │ │ │ ├── LpcReset.c │ │ │ │ │ │ ├── SpiEnv.c │ │ │ │ │ │ ├── SpiLate.c │ │ │ │ │ │ ├── SpiMid.c │ │ │ │ │ │ └── SpiReset.c │ │ │ │ │ └── Usb │ │ │ │ │ │ ├── EhciEnv.c │ │ │ │ │ │ ├── EhciLate.c │ │ │ │ │ │ ├── EhciMid.c │ │ │ │ │ │ ├── EhciReset.c │ │ │ │ │ │ ├── Family │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ ├── Hudson2EhciEnvService.c │ │ │ │ │ │ │ ├── Hudson2EhciLateService.c │ │ │ │ │ │ │ ├── Hudson2EhciMidService.c │ │ │ │ │ │ │ ├── Hudson2OhciEnvService.c │ │ │ │ │ │ │ ├── Hudson2OhciLateService.c │ │ │ │ │ │ │ ├── Hudson2OhciMidService.c │ │ │ │ │ │ │ ├── Hudson2XhciEnvService.c │ │ │ │ │ │ │ ├── Hudson2XhciLateService.c │ │ │ │ │ │ │ ├── Hudson2XhciMidService.c │ │ │ │ │ │ │ └── Hudson2XhciResetService.c │ │ │ │ │ │ ├── OhciEnv.c │ │ │ │ │ │ ├── OhciLate.c │ │ │ │ │ │ ├── OhciMid.c │ │ │ │ │ │ ├── OhciReset.c │ │ │ │ │ │ ├── UsbEnv.c │ │ │ │ │ │ ├── UsbLate.c │ │ │ │ │ │ ├── UsbMid.c │ │ │ │ │ │ ├── UsbReset.c │ │ │ │ │ │ ├── XhciEnv.c │ │ │ │ │ │ ├── XhciLate.c │ │ │ │ │ │ ├── XhciMid.c │ │ │ │ │ │ ├── XhciRecovery.c │ │ │ │ │ │ └── XhciReset.c │ │ │ │ ├── GNB │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── Gnb.h │ │ │ │ │ │ ├── GnbFamServices.h │ │ │ │ │ │ ├── GnbFuseTable.h │ │ │ │ │ │ ├── GnbGfx.h │ │ │ │ │ │ ├── GnbGfxFamServices.h │ │ │ │ │ │ ├── GnbLibFeatures.c │ │ │ │ │ │ ├── GnbLibFeatures.h │ │ │ │ │ │ ├── GnbPcie.h │ │ │ │ │ │ ├── GnbPcieFamServices.h │ │ │ │ │ │ └── GnbRegistersLN.h │ │ │ │ │ ├── Gfx │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ ├── GfxFamilyServices.h │ │ │ │ │ │ │ └── LN │ │ │ │ │ │ │ │ └── F12GfxServices.c │ │ │ │ │ │ ├── GfxConfigData.c │ │ │ │ │ │ ├── GfxConfigData.h │ │ │ │ │ │ ├── GfxGmcInit.c │ │ │ │ │ │ ├── GfxGmcInit.h │ │ │ │ │ │ ├── GfxInitAtEnvPost.c │ │ │ │ │ │ ├── GfxInitAtEnvPost.h │ │ │ │ │ │ ├── GfxInitAtMidPost.c │ │ │ │ │ │ ├── GfxInitAtMidPost.h │ │ │ │ │ │ ├── GfxInitAtPost.c │ │ │ │ │ │ ├── GfxInitAtPost.h │ │ │ │ │ │ ├── GfxIntegratedInfoTableInit.c │ │ │ │ │ │ ├── GfxIntegratedInfoTableInit.h │ │ │ │ │ │ ├── GfxLib.c │ │ │ │ │ │ ├── GfxLib.h │ │ │ │ │ │ ├── GfxRegisterAcc.c │ │ │ │ │ │ ├── GfxRegisterAcc.h │ │ │ │ │ │ ├── GfxStrapsInit.c │ │ │ │ │ │ └── GfxStrapsInit.h │ │ │ │ │ ├── GnbInitAtEarly.c │ │ │ │ │ ├── GnbInitAtEnv.c │ │ │ │ │ ├── GnbInitAtLate.c │ │ │ │ │ ├── GnbInitAtMid.c │ │ │ │ │ ├── GnbInitAtPost.c │ │ │ │ │ ├── GnbInitAtReset.c │ │ │ │ │ ├── GnbPage.h │ │ │ │ │ ├── Modules │ │ │ │ │ │ ├── GnbCableSafe │ │ │ │ │ │ │ ├── GnbCableSafe.c │ │ │ │ │ │ │ └── GnbCableSafeDefs.h │ │ │ │ │ │ ├── GnbCommonLib │ │ │ │ │ │ │ ├── GnbCommonLib.h │ │ │ │ │ │ │ ├── GnbLib.c │ │ │ │ │ │ │ ├── GnbLib.h │ │ │ │ │ │ │ ├── GnbLibCpuAcc.c │ │ │ │ │ │ │ ├── GnbLibCpuAcc.h │ │ │ │ │ │ │ ├── GnbLibHeap.c │ │ │ │ │ │ │ ├── GnbLibHeap.h │ │ │ │ │ │ │ ├── GnbLibIoAcc.c │ │ │ │ │ │ │ ├── GnbLibIoAcc.h │ │ │ │ │ │ │ ├── GnbLibMemAcc.c │ │ │ │ │ │ │ ├── GnbLibMemAcc.h │ │ │ │ │ │ │ ├── GnbLibPci.c │ │ │ │ │ │ │ ├── GnbLibPci.h │ │ │ │ │ │ │ ├── GnbLibPciAcc.c │ │ │ │ │ │ │ ├── GnbLibPciAcc.h │ │ │ │ │ │ │ ├── GnbLibStall.c │ │ │ │ │ │ │ ├── GnbLibStall.h │ │ │ │ │ │ │ ├── GnbTable.c │ │ │ │ │ │ │ └── GnbTable.h │ │ │ │ │ │ ├── GnbFamTranslation │ │ │ │ │ │ │ └── GnbPcieTranslation.c │ │ │ │ │ │ ├── GnbGfxConfig │ │ │ │ │ │ │ ├── GfxConfigEnv.c │ │ │ │ │ │ │ ├── GfxConfigPost.c │ │ │ │ │ │ │ ├── GfxConfigPost.h │ │ │ │ │ │ │ └── GnbGfxConfig.h │ │ │ │ │ │ ├── GnbGfxInitLibV1 │ │ │ │ │ │ │ ├── GfxCardInfo.c │ │ │ │ │ │ │ ├── GfxCardInfo.h │ │ │ │ │ │ │ ├── GfxEnumConnectors.c │ │ │ │ │ │ │ ├── GfxEnumConnectors.h │ │ │ │ │ │ │ ├── GfxPowerPlayTable.c │ │ │ │ │ │ │ ├── GfxPowerPlayTable.h │ │ │ │ │ │ │ ├── GnbGfxInitLibV1.c │ │ │ │ │ │ │ └── GnbGfxInitLibV1.h │ │ │ │ │ │ ├── GnbIommuIvrs │ │ │ │ │ │ │ ├── GnbIommuIvrs.c │ │ │ │ │ │ │ └── GnbIommuIvrs.h │ │ │ │ │ │ ├── GnbIvrsLib │ │ │ │ │ │ │ ├── GnbIvrsLib.c │ │ │ │ │ │ │ └── GnbIvrsLib.h │ │ │ │ │ │ ├── GnbNbInitLibV1 │ │ │ │ │ │ │ ├── GnbNbInitLibV1.c │ │ │ │ │ │ │ └── GnbNbInitLibV1.h │ │ │ │ │ │ ├── GnbPcieAlibV1 │ │ │ │ │ │ │ ├── PcieAlib.c │ │ │ │ │ │ │ ├── PcieAlib.h │ │ │ │ │ │ │ ├── PcieAlibConfig.esl │ │ │ │ │ │ │ ├── PcieAlibCore.esl │ │ │ │ │ │ │ ├── PcieAlibHotplug.esl │ │ │ │ │ │ │ └── PcieAlibPspp.esl │ │ │ │ │ │ ├── GnbPcieConfig │ │ │ │ │ │ │ ├── GnbPcieConfig.h │ │ │ │ │ │ │ ├── PcieConfigData.c │ │ │ │ │ │ │ ├── PcieConfigData.h │ │ │ │ │ │ │ ├── PcieConfigLib.c │ │ │ │ │ │ │ ├── PcieConfigLib.h │ │ │ │ │ │ │ ├── PcieInputParser.c │ │ │ │ │ │ │ ├── PcieInputParser.h │ │ │ │ │ │ │ ├── PcieMapTopology.c │ │ │ │ │ │ │ └── PcieMapTopology.h │ │ │ │ │ │ ├── GnbPcieInitLibV1 │ │ │ │ │ │ │ ├── GnbPcieInitLibV1.h │ │ │ │ │ │ │ ├── PcieAspm.c │ │ │ │ │ │ │ ├── PcieAspm.h │ │ │ │ │ │ │ ├── PcieAspmBlackList.c │ │ │ │ │ │ │ ├── PcieAspmBlackList.h │ │ │ │ │ │ │ ├── PcieAspmExitLatency.c │ │ │ │ │ │ │ ├── PcieAspmExitLatency.h │ │ │ │ │ │ │ ├── PciePhyServices.c │ │ │ │ │ │ │ ├── PciePhyServices.h │ │ │ │ │ │ │ ├── PciePifServices.c │ │ │ │ │ │ │ ├── PciePifServices.h │ │ │ │ │ │ │ ├── PciePortRegAcc.c │ │ │ │ │ │ │ ├── PciePortRegAcc.h │ │ │ │ │ │ │ ├── PciePortServices.c │ │ │ │ │ │ │ ├── PciePortServices.h │ │ │ │ │ │ │ ├── PciePowerMgmt.c │ │ │ │ │ │ │ ├── PciePowerMgmt.h │ │ │ │ │ │ │ ├── PcieSiliconServices.c │ │ │ │ │ │ │ ├── PcieSiliconServices.h │ │ │ │ │ │ │ ├── PcieSmuLib.esl │ │ │ │ │ │ │ ├── PcieTimer.c │ │ │ │ │ │ │ ├── PcieTimer.h │ │ │ │ │ │ │ ├── PcieTopologyServices.c │ │ │ │ │ │ │ ├── PcieTopologyServices.h │ │ │ │ │ │ │ ├── PcieUtilityLib.c │ │ │ │ │ │ │ ├── PcieUtilityLib.h │ │ │ │ │ │ │ ├── PcieWrapperRegAcc.c │ │ │ │ │ │ │ └── PcieWrapperRegAcc.h │ │ │ │ │ │ ├── GnbPcieTrainingV1 │ │ │ │ │ │ │ ├── GnbPcieTrainingV1.h │ │ │ │ │ │ │ ├── PcieTraining.c │ │ │ │ │ │ │ ├── PcieTraining.h │ │ │ │ │ │ │ ├── PcieWorkarounds.c │ │ │ │ │ │ │ └── PcieWorkarounds.h │ │ │ │ │ │ ├── GnbSbIommuLib │ │ │ │ │ │ │ ├── GnbSbIommuLib.c │ │ │ │ │ │ │ └── GnbSbIommuLib.h │ │ │ │ │ │ └── GnbSbLib │ │ │ │ │ │ │ ├── GnbSbLib.c │ │ │ │ │ │ │ ├── GnbSbLib.h │ │ │ │ │ │ │ └── GnbSbPcie.c │ │ │ │ │ ├── Nb │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ ├── LN │ │ │ │ │ │ │ │ ├── F12NbLclkDpm.c │ │ │ │ │ │ │ │ ├── F12NbPowerGate.c │ │ │ │ │ │ │ │ ├── F12NbPowerGate.h │ │ │ │ │ │ │ │ ├── F12NbServices.c │ │ │ │ │ │ │ │ ├── F12NbSmu.c │ │ │ │ │ │ │ │ └── F12NbSmuFirmware.h │ │ │ │ │ │ │ └── NbFamilyServices.h │ │ │ │ │ │ ├── Feature │ │ │ │ │ │ │ ├── NbFuseTable.c │ │ │ │ │ │ │ ├── NbFuseTable.h │ │ │ │ │ │ │ ├── NbLclkDpm.c │ │ │ │ │ │ │ └── NbLclkDpm.h │ │ │ │ │ │ ├── NbConfigData.c │ │ │ │ │ │ ├── NbConfigData.h │ │ │ │ │ │ ├── NbInit.c │ │ │ │ │ │ ├── NbInit.h │ │ │ │ │ │ ├── NbInitAtEarly.c │ │ │ │ │ │ ├── NbInitAtEarly.h │ │ │ │ │ │ ├── NbInitAtEnv.c │ │ │ │ │ │ ├── NbInitAtEnv.h │ │ │ │ │ │ ├── NbInitAtLatePost.c │ │ │ │ │ │ ├── NbInitAtLatePost.h │ │ │ │ │ │ ├── NbInitAtPost.c │ │ │ │ │ │ ├── NbInitAtPost.h │ │ │ │ │ │ ├── NbInitAtReset.c │ │ │ │ │ │ ├── NbInitAtReset.h │ │ │ │ │ │ ├── NbPowerMgmt.c │ │ │ │ │ │ ├── NbPowerMgmt.h │ │ │ │ │ │ ├── NbSmuLib.c │ │ │ │ │ │ └── NbSmuLib.h │ │ │ │ │ └── PCIe │ │ │ │ │ │ ├── Family │ │ │ │ │ │ ├── LN │ │ │ │ │ │ │ ├── F12PcieAlib.c │ │ │ │ │ │ │ ├── F12PcieAlib.esl │ │ │ │ │ │ │ ├── F12PcieAlibSsdt.h │ │ │ │ │ │ │ ├── F12PcieComplexConfig.c │ │ │ │ │ │ │ ├── F12PcieComplexServices.c │ │ │ │ │ │ │ ├── F12PciePhyServices.c │ │ │ │ │ │ │ ├── F12PciePifServices.c │ │ │ │ │ │ │ ├── F12PcieWrapperServices.c │ │ │ │ │ │ │ ├── LlanoComplexData.h │ │ │ │ │ │ │ └── LlanoDefinitions.h │ │ │ │ │ │ └── PcieFamilyServices.h │ │ │ │ │ │ ├── Feature │ │ │ │ │ │ ├── PciePowerGate.c │ │ │ │ │ │ └── PciePowerGate.h │ │ │ │ │ │ ├── PcieInit.c │ │ │ │ │ │ ├── PcieInit.h │ │ │ │ │ │ ├── PcieInitAtEarlyPost.c │ │ │ │ │ │ ├── PcieInitAtEarlyPost.h │ │ │ │ │ │ ├── PcieInitAtEnv.c │ │ │ │ │ │ ├── PcieInitAtEnv.h │ │ │ │ │ │ ├── PcieInitAtLatePost.c │ │ │ │ │ │ ├── PcieInitAtLatePost.h │ │ │ │ │ │ ├── PcieInitAtPost.c │ │ │ │ │ │ ├── PcieInitAtPost.h │ │ │ │ │ │ ├── PcieLateInit.c │ │ │ │ │ │ ├── PcieLateInit.h │ │ │ │ │ │ ├── PciePortInit.c │ │ │ │ │ │ ├── PciePortInit.h │ │ │ │ │ │ ├── PciePortLateInit.c │ │ │ │ │ │ └── PciePortLateInit.h │ │ │ │ ├── HT │ │ │ │ │ ├── Fam10 │ │ │ │ │ │ ├── htNbCoherentFam10.c │ │ │ │ │ │ ├── htNbCoherentFam10.h │ │ │ │ │ │ ├── htNbFam10.c │ │ │ │ │ │ ├── htNbNonCoherentFam10.c │ │ │ │ │ │ ├── htNbNonCoherentFam10.h │ │ │ │ │ │ ├── htNbOptimizationFam10.c │ │ │ │ │ │ ├── htNbOptimizationFam10.h │ │ │ │ │ │ ├── htNbSystemFam10.c │ │ │ │ │ │ ├── htNbSystemFam10.h │ │ │ │ │ │ ├── htNbUtilitiesFam10.c │ │ │ │ │ │ └── htNbUtilitiesFam10.h │ │ │ │ │ ├── Fam12 │ │ │ │ │ │ ├── htNbFam12.c │ │ │ │ │ │ ├── htNbUtilitiesFam12.c │ │ │ │ │ │ └── htNbUtilitiesFam12.h │ │ │ │ │ ├── Features │ │ │ │ │ │ ├── htFeatDynamicDiscovery.c │ │ │ │ │ │ ├── htFeatDynamicDiscovery.h │ │ │ │ │ │ ├── htFeatGanging.c │ │ │ │ │ │ ├── htFeatGanging.h │ │ │ │ │ │ ├── htFeatNoncoherent.c │ │ │ │ │ │ ├── htFeatNoncoherent.h │ │ │ │ │ │ ├── htFeatOptimization.c │ │ │ │ │ │ ├── htFeatOptimization.h │ │ │ │ │ │ ├── htFeatRouting.c │ │ │ │ │ │ ├── htFeatRouting.h │ │ │ │ │ │ ├── htFeatSets.c │ │ │ │ │ │ ├── htFeatSublinks.c │ │ │ │ │ │ ├── htFeatSublinks.h │ │ │ │ │ │ ├── htFeatTrafficDistribution.c │ │ │ │ │ │ ├── htFeatTrafficDistribution.h │ │ │ │ │ │ └── htIds.c │ │ │ │ │ ├── NbCommon │ │ │ │ │ │ ├── htNbCoherent.c │ │ │ │ │ │ ├── htNbCoherent.h │ │ │ │ │ │ ├── htNbNonCoherent.c │ │ │ │ │ │ ├── htNbNonCoherent.h │ │ │ │ │ │ ├── htNbOptimization.c │ │ │ │ │ │ ├── htNbOptimization.h │ │ │ │ │ │ ├── htNbUtilities.c │ │ │ │ │ │ └── htNbUtilities.h │ │ │ │ │ ├── htFeat.c │ │ │ │ │ ├── htFeat.h │ │ │ │ │ ├── htGraph.h │ │ │ │ │ ├── htGraph │ │ │ │ │ │ ├── htGraph.c │ │ │ │ │ │ ├── htGraph1.c │ │ │ │ │ │ ├── htGraph2.c │ │ │ │ │ │ ├── htGraph3Line.c │ │ │ │ │ │ ├── htGraph3Triangle.c │ │ │ │ │ │ ├── htGraph4Degenerate.c │ │ │ │ │ │ ├── htGraph4FullyConnected.c │ │ │ │ │ │ ├── htGraph4Kite.c │ │ │ │ │ │ ├── htGraph4Line.c │ │ │ │ │ │ ├── htGraph4Square.c │ │ │ │ │ │ ├── htGraph4Star.c │ │ │ │ │ │ ├── htGraph5FullyConnected.c │ │ │ │ │ │ ├── htGraph5TwistedLadder.c │ │ │ │ │ │ ├── htGraph6DoubloonLower.c │ │ │ │ │ │ ├── htGraph6DoubloonUpper.c │ │ │ │ │ │ ├── htGraph6FullyConnected.c │ │ │ │ │ │ ├── htGraph6TwinTriangles.c │ │ │ │ │ │ ├── htGraph6TwistedLadder.c │ │ │ │ │ │ ├── htGraph7FullyConnected.c │ │ │ │ │ │ ├── htGraph7TwistedLadder.c │ │ │ │ │ │ ├── htGraph8DoubloonM.c │ │ │ │ │ │ ├── htGraph8FullyConnected.c │ │ │ │ │ │ ├── htGraph8Ladder.c │ │ │ │ │ │ ├── htGraph8TwinFullyFourWays.c │ │ │ │ │ │ └── htGraph8TwistedLadder.c │ │ │ │ │ ├── htInterface.c │ │ │ │ │ ├── htInterface.h │ │ │ │ │ ├── htInterfaceCoherent.c │ │ │ │ │ ├── htInterfaceCoherent.h │ │ │ │ │ ├── htInterfaceGeneral.c │ │ │ │ │ ├── htInterfaceGeneral.h │ │ │ │ │ ├── htInterfaceNonCoherent.c │ │ │ │ │ ├── htInterfaceNonCoherent.h │ │ │ │ │ ├── htMain.c │ │ │ │ │ ├── htNb.c │ │ │ │ │ ├── htNb.h │ │ │ │ │ ├── htNbCommonHardware.h │ │ │ │ │ ├── htNotify.c │ │ │ │ │ ├── htNotify.h │ │ │ │ │ ├── htPage.h │ │ │ │ │ └── htTopologies.h │ │ │ │ ├── IDS │ │ │ │ │ ├── IdsLib.h │ │ │ │ │ ├── IdsPage.h │ │ │ │ │ └── OptionsIds.h │ │ │ │ ├── Mem │ │ │ │ │ ├── Ardk │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── marc32_3.c │ │ │ │ │ │ │ └── mauc32_3.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── masda2.c │ │ │ │ │ │ │ ├── masda3.c │ │ │ │ │ │ │ └── mauda3.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mardr2.c │ │ │ │ │ │ │ ├── mardr3.c │ │ │ │ │ │ │ └── maudr3.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── marhy3.c │ │ │ │ │ │ │ └── mauhy3.c │ │ │ │ │ │ ├── LN │ │ │ │ │ │ │ ├── masln3.c │ │ │ │ │ │ │ └── mauln3.c │ │ │ │ │ │ ├── NI │ │ │ │ │ │ │ ├── masNi3.c │ │ │ │ │ │ │ └── mauNi3.c │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ ├── masph3.c │ │ │ │ │ │ │ └── mauPh3.c │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ ├── masRb3.c │ │ │ │ │ │ │ └── mauRb3.c │ │ │ │ │ │ └── ma.c │ │ │ │ │ ├── Feat │ │ │ │ │ │ ├── CHINTLV │ │ │ │ │ │ │ ├── mfchi.c │ │ │ │ │ │ │ └── mfchi.h │ │ │ │ │ │ ├── CSINTLV │ │ │ │ │ │ │ ├── mfcsi.c │ │ │ │ │ │ │ └── mfcsi.h │ │ │ │ │ │ ├── DMI │ │ │ │ │ │ │ └── mfDMI.c │ │ │ │ │ │ ├── ECC │ │ │ │ │ │ │ ├── mfecc.c │ │ │ │ │ │ │ ├── mfecc.h │ │ │ │ │ │ │ └── mfemp.c │ │ │ │ │ │ ├── EXCLUDIMM │ │ │ │ │ │ │ └── mfdimmexclud.c │ │ │ │ │ │ ├── IDENDIMM │ │ │ │ │ │ │ ├── mfidendimm.c │ │ │ │ │ │ │ └── mfidendimm.h │ │ │ │ │ │ ├── INTLVRN │ │ │ │ │ │ │ ├── mfintlvrn.c │ │ │ │ │ │ │ └── mfintlvrn.h │ │ │ │ │ │ ├── LVDDR3 │ │ │ │ │ │ │ ├── mflvddr3.c │ │ │ │ │ │ │ └── mflvddr3.h │ │ │ │ │ │ ├── MEMCLR │ │ │ │ │ │ │ └── mfmemclr.c │ │ │ │ │ │ ├── NDINTLV │ │ │ │ │ │ │ ├── mfndi.c │ │ │ │ │ │ │ └── mfndi.h │ │ │ │ │ │ ├── ODTHERMAL │ │ │ │ │ │ │ ├── mfodthermal.c │ │ │ │ │ │ │ └── mfodthermal.h │ │ │ │ │ │ ├── OLSPARE │ │ │ │ │ │ │ ├── mfspr.c │ │ │ │ │ │ │ └── mfspr.h │ │ │ │ │ │ ├── PARTRN │ │ │ │ │ │ │ ├── mfParallelTraining.c │ │ │ │ │ │ │ └── mfStandardTraining.c │ │ │ │ │ │ ├── S3 │ │ │ │ │ │ │ └── mfs3.c │ │ │ │ │ │ └── TABLE │ │ │ │ │ │ │ └── mftds.c │ │ │ │ │ ├── Main │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ └── mmflowC32.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ └── mmflowda.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ └── mmflowdr.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ └── mmflowhy.c │ │ │ │ │ │ ├── LN │ │ │ │ │ │ │ └── mmflowln.c │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ └── mmflowPh.c │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ └── mmflowRb.c │ │ │ │ │ │ ├── mdef.c │ │ │ │ │ │ ├── merrhdl.c │ │ │ │ │ │ ├── minit.c │ │ │ │ │ │ ├── mm.c │ │ │ │ │ │ ├── mmConditionalPso.c │ │ │ │ │ │ ├── mmEcc.c │ │ │ │ │ │ ├── mmExcludeDimm.c │ │ │ │ │ │ ├── mmLvDdr3.c │ │ │ │ │ │ ├── mmMemClr.c │ │ │ │ │ │ ├── mmMemRestore.c │ │ │ │ │ │ ├── mmNodeInterleave.c │ │ │ │ │ │ ├── mmOnlineSpare.c │ │ │ │ │ │ ├── mmParallelTraining.c │ │ │ │ │ │ ├── mmStandardTraining.c │ │ │ │ │ │ ├── mmUmaAlloc.c │ │ │ │ │ │ ├── mmflow.c │ │ │ │ │ │ ├── mmlvddr3.h │ │ │ │ │ │ ├── mu.c │ │ │ │ │ │ └── muc.c │ │ │ │ │ ├── NB │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── mnParTrainc32.c │ │ │ │ │ │ │ ├── mnS3c32.c │ │ │ │ │ │ │ ├── mnS3c32.h │ │ │ │ │ │ │ ├── mnc32.c │ │ │ │ │ │ │ ├── mnc32.h │ │ │ │ │ │ │ ├── mndctc32.c │ │ │ │ │ │ │ ├── mnflowc32.c │ │ │ │ │ │ │ ├── mnidendimmc32.c │ │ │ │ │ │ │ ├── mnmctc32.c │ │ │ │ │ │ │ ├── mnotc32.c │ │ │ │ │ │ │ ├── mnphyc32.c │ │ │ │ │ │ │ ├── mnprotoc32.c │ │ │ │ │ │ │ └── mnregc32.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── mnParTrainDa.c │ │ │ │ │ │ │ ├── mnS3da.c │ │ │ │ │ │ │ ├── mnS3da.h │ │ │ │ │ │ │ ├── mnda.c │ │ │ │ │ │ │ ├── mnda.h │ │ │ │ │ │ │ ├── mndctda.c │ │ │ │ │ │ │ ├── mnflowda.c │ │ │ │ │ │ │ ├── mnidendimmda.c │ │ │ │ │ │ │ ├── mnmctda.c │ │ │ │ │ │ │ ├── mnotda.c │ │ │ │ │ │ │ ├── mnprotoda.c │ │ │ │ │ │ │ └── mnregda.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mnParTrainDr.c │ │ │ │ │ │ │ ├── mnS3dr.c │ │ │ │ │ │ │ ├── mnS3dr.h │ │ │ │ │ │ │ ├── mndctdr.c │ │ │ │ │ │ │ ├── mndr.c │ │ │ │ │ │ │ ├── mndr.h │ │ │ │ │ │ │ ├── mnflowdr.c │ │ │ │ │ │ │ ├── mnidendimmdr.c │ │ │ │ │ │ │ ├── mnmctdr.c │ │ │ │ │ │ │ ├── mnotdr.c │ │ │ │ │ │ │ ├── mnprotodr.c │ │ │ │ │ │ │ └── mnregdr.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── mnParTrainHy.c │ │ │ │ │ │ │ ├── mnS3hy.c │ │ │ │ │ │ │ ├── mnS3hy.h │ │ │ │ │ │ │ ├── mndcthy.c │ │ │ │ │ │ │ ├── mnflowhy.c │ │ │ │ │ │ │ ├── mnhy.c │ │ │ │ │ │ │ ├── mnhy.h │ │ │ │ │ │ │ ├── mnidendimmhy.c │ │ │ │ │ │ │ ├── mnmcthy.c │ │ │ │ │ │ │ ├── mnothy.c │ │ │ │ │ │ │ ├── mnphyhy.c │ │ │ │ │ │ │ ├── mnprotohy.c │ │ │ │ │ │ │ └── mnreghy.c │ │ │ │ │ │ ├── LN │ │ │ │ │ │ │ ├── mnS3ln.c │ │ │ │ │ │ │ ├── mnS3ln.h │ │ │ │ │ │ │ ├── mndctln.c │ │ │ │ │ │ │ ├── mnflowln.c │ │ │ │ │ │ │ ├── mnidendimmln.c │ │ │ │ │ │ │ ├── mnln.c │ │ │ │ │ │ │ ├── mnln.h │ │ │ │ │ │ │ ├── mnmctln.c │ │ │ │ │ │ │ ├── mnotln.c │ │ │ │ │ │ │ ├── mnphyln.c │ │ │ │ │ │ │ ├── mnprotoln.c │ │ │ │ │ │ │ └── mnregln.c │ │ │ │ │ │ ├── NI │ │ │ │ │ │ │ ├── mnNi.c │ │ │ │ │ │ │ ├── mnNi.h │ │ │ │ │ │ │ ├── mnS3Ni.c │ │ │ │ │ │ │ ├── mnS3Ni.h │ │ │ │ │ │ │ └── mnflowNi.c │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ ├── mnPh.c │ │ │ │ │ │ │ ├── mnPh.h │ │ │ │ │ │ │ ├── mnS3Ph.c │ │ │ │ │ │ │ ├── mnS3Ph.h │ │ │ │ │ │ │ ├── mnflowPh.c │ │ │ │ │ │ │ └── mnidendimmPh.c │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ ├── mnRb.c │ │ │ │ │ │ │ ├── mnRb.h │ │ │ │ │ │ │ ├── mnS3Rb.c │ │ │ │ │ │ │ ├── mnS3Rb.h │ │ │ │ │ │ │ ├── mnflowRb.c │ │ │ │ │ │ │ └── mnidendimmRb.c │ │ │ │ │ │ ├── mn.c │ │ │ │ │ │ ├── mnS3.c │ │ │ │ │ │ ├── mndct.c │ │ │ │ │ │ ├── mnfeat.c │ │ │ │ │ │ ├── mnflow.c │ │ │ │ │ │ ├── mnmct.c │ │ │ │ │ │ ├── mnphy.c │ │ │ │ │ │ ├── mnreg.c │ │ │ │ │ │ ├── mntrain2.c │ │ │ │ │ │ └── mntrain3.c │ │ │ │ │ ├── Ps │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── mprc32_3.c │ │ │ │ │ │ │ └── mpuc32_3.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── mpsda2.c │ │ │ │ │ │ │ ├── mpsda3.c │ │ │ │ │ │ │ └── mpuda3.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mprdr2.c │ │ │ │ │ │ │ ├── mprdr3.c │ │ │ │ │ │ │ ├── mpsdr3.c │ │ │ │ │ │ │ ├── mpudr2.c │ │ │ │ │ │ │ └── mpudr3.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── mprhy3.c │ │ │ │ │ │ │ ├── mpshy3.c │ │ │ │ │ │ │ └── mpuhy3.c │ │ │ │ │ │ ├── LN │ │ │ │ │ │ │ ├── mprln3.c │ │ │ │ │ │ │ ├── mpsln3.c │ │ │ │ │ │ │ └── mpuln3.c │ │ │ │ │ │ ├── NI │ │ │ │ │ │ │ ├── mpsNi3.c │ │ │ │ │ │ │ └── mpuNi3.c │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ ├── mpsph3.c │ │ │ │ │ │ │ └── mpuph3.c │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ ├── mpsRb3.c │ │ │ │ │ │ │ └── mpuRb3.c │ │ │ │ │ │ ├── mp.c │ │ │ │ │ │ ├── mplribt.c │ │ │ │ │ │ ├── mplrnlr.c │ │ │ │ │ │ ├── mplrnpr.c │ │ │ │ │ │ ├── mpmaxfreq.c │ │ │ │ │ │ ├── mpmr0.c │ │ │ │ │ │ ├── mpodtpat.c │ │ │ │ │ │ ├── mprc10opspd.c │ │ │ │ │ │ ├── mprc2ibt.c │ │ │ │ │ │ ├── mprtt.c │ │ │ │ │ │ └── mpsao.c │ │ │ │ │ ├── Tech │ │ │ │ │ │ ├── DDR2 │ │ │ │ │ │ │ ├── mt2.c │ │ │ │ │ │ │ ├── mt2.h │ │ │ │ │ │ │ ├── mtot2.c │ │ │ │ │ │ │ ├── mtot2.h │ │ │ │ │ │ │ ├── mtspd2.c │ │ │ │ │ │ │ └── mtspd2.h │ │ │ │ │ │ ├── DDR3 │ │ │ │ │ │ │ ├── mt3.c │ │ │ │ │ │ │ ├── mt3.h │ │ │ │ │ │ │ ├── mtlrdimm3.c │ │ │ │ │ │ │ ├── mtlrdimm3.h │ │ │ │ │ │ │ ├── mtot3.c │ │ │ │ │ │ │ ├── mtot3.h │ │ │ │ │ │ │ ├── mtrci3.c │ │ │ │ │ │ │ ├── mtrci3.h │ │ │ │ │ │ │ ├── mtsdi3.c │ │ │ │ │ │ │ ├── mtsdi3.h │ │ │ │ │ │ │ ├── mtspd3.c │ │ │ │ │ │ │ ├── mtspd3.h │ │ │ │ │ │ │ ├── mttecc3.c │ │ │ │ │ │ │ └── mttwl3.c │ │ │ │ │ │ ├── mt.c │ │ │ │ │ │ ├── mthdi.c │ │ │ │ │ │ ├── mttEdgeDetect.c │ │ │ │ │ │ ├── mttEdgeDetect.h │ │ │ │ │ │ ├── mttdimbt.c │ │ │ │ │ │ ├── mttecc.c │ │ │ │ │ │ ├── mtthrc.c │ │ │ │ │ │ ├── mtthrcSeedTrain.c │ │ │ │ │ │ ├── mttml.c │ │ │ │ │ │ ├── mttoptsrc.c │ │ │ │ │ │ └── mttsrc.c │ │ │ │ │ ├── ma.h │ │ │ │ │ ├── memPage.h │ │ │ │ │ ├── merrhdl.h │ │ │ │ │ ├── mfParallelTraining.h │ │ │ │ │ ├── mfStandardTraining.h │ │ │ │ │ ├── mfmemclr.h │ │ │ │ │ ├── mfs3.h │ │ │ │ │ ├── mftds.h │ │ │ │ │ ├── mm.h │ │ │ │ │ ├── mn.h │ │ │ │ │ ├── mp.h │ │ │ │ │ ├── mport.h │ │ │ │ │ ├── mt.h │ │ │ │ │ └── mu.h │ │ │ │ └── Recovery │ │ │ │ │ ├── CPU │ │ │ │ │ ├── cpuRecovery.c │ │ │ │ │ └── cpuRecovery.h │ │ │ │ │ ├── GNB │ │ │ │ │ ├── GnbRecovery.c │ │ │ │ │ ├── NbInitRecovery.c │ │ │ │ │ └── NbInitRecovery.h │ │ │ │ │ ├── HT │ │ │ │ │ ├── htInitRecovery.c │ │ │ │ │ └── htInitReset.c │ │ │ │ │ ├── Mem │ │ │ │ │ ├── NB │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── mrnc32.c │ │ │ │ │ │ │ ├── mrnc32.h │ │ │ │ │ │ │ ├── mrnmctc32.c │ │ │ │ │ │ │ └── mrnprotoc32.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── mrnda.c │ │ │ │ │ │ │ ├── mrnda.h │ │ │ │ │ │ │ └── mrnmctda.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mrndr.c │ │ │ │ │ │ │ ├── mrndr.h │ │ │ │ │ │ │ └── mrnmctdr.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── mrndcthy.c │ │ │ │ │ │ │ ├── mrnhy.c │ │ │ │ │ │ │ ├── mrnhy.h │ │ │ │ │ │ │ ├── mrnmcthy.c │ │ │ │ │ │ │ └── mrnprotohy.c │ │ │ │ │ │ ├── LN │ │ │ │ │ │ │ ├── mrndctln.c │ │ │ │ │ │ │ ├── mrnln.c │ │ │ │ │ │ │ ├── mrnln.h │ │ │ │ │ │ │ └── mrnmctln.c │ │ │ │ │ │ ├── NI │ │ │ │ │ │ │ ├── mrnNi.c │ │ │ │ │ │ │ └── mrnNi.h │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ ├── mrnPh.c │ │ │ │ │ │ │ └── mrnPh.h │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ ├── mrnRb.c │ │ │ │ │ │ │ └── mrnRb.h │ │ │ │ │ │ ├── mrn.c │ │ │ │ │ │ ├── mrndct.c │ │ │ │ │ │ ├── mrnmct.c │ │ │ │ │ │ └── mrntrain3.c │ │ │ │ │ ├── Ps │ │ │ │ │ │ ├── mrp.c │ │ │ │ │ │ ├── mrplribt.c │ │ │ │ │ │ ├── mrplrnlr.c │ │ │ │ │ │ ├── mrplrnpr.c │ │ │ │ │ │ ├── mrpmr0.c │ │ │ │ │ │ ├── mrpodtpat.c │ │ │ │ │ │ ├── mrprc10opspd.c │ │ │ │ │ │ ├── mrprc2ibt.c │ │ │ │ │ │ ├── mrprtt.c │ │ │ │ │ │ └── mrpsao.c │ │ │ │ │ ├── Tech │ │ │ │ │ │ ├── DDR3 │ │ │ │ │ │ │ ├── mrt3.c │ │ │ │ │ │ │ ├── mrtrci3.c │ │ │ │ │ │ │ ├── mrtsdi3.c │ │ │ │ │ │ │ ├── mrtspd3.c │ │ │ │ │ │ │ ├── mrtspd3.h │ │ │ │ │ │ │ └── mrttwl3.c │ │ │ │ │ │ ├── mrtthrc.c │ │ │ │ │ │ ├── mrtthrcSeedTrain.c │ │ │ │ │ │ ├── mrttpos.c │ │ │ │ │ │ └── mrttsrc.c │ │ │ │ │ ├── mrdef.c │ │ │ │ │ ├── mrinit.c │ │ │ │ │ ├── mrm.c │ │ │ │ │ ├── mrport.h │ │ │ │ │ ├── mrt3.h │ │ │ │ │ ├── mru.h │ │ │ │ │ └── mruc.c │ │ │ │ │ └── recoveryPage.h │ │ │ ├── errno.h │ │ │ └── gcccar.inc │ │ ├── f14 │ │ │ ├── AGESA.h │ │ │ ├── AMD.h │ │ │ ├── Dispatcher.h │ │ │ ├── Include │ │ │ │ ├── AdvancedApi.h │ │ │ │ ├── CommonReturns.h │ │ │ │ ├── Filecode.h │ │ │ │ ├── GeneralServices.h │ │ │ │ ├── GnbInterface.h │ │ │ │ ├── GnbInterfaceStub.h │ │ │ │ ├── Ids.h │ │ │ │ ├── IdsHt.h │ │ │ │ ├── OptionC6Install.h │ │ │ │ ├── OptionCpbInstall.h │ │ │ │ ├── OptionCpuCacheFlushOnHaltInstall.h │ │ │ │ ├── OptionCpuCoreLevelingInstall.h │ │ │ │ ├── OptionCpuFamiliesInstall.h │ │ │ │ ├── OptionCpuFeaturesInstall.h │ │ │ │ ├── OptionDmi.h │ │ │ │ ├── OptionDmiInstall.h │ │ │ │ ├── OptionFamily10hInstall.h │ │ │ │ ├── OptionFamily12hEarlySample.h │ │ │ │ ├── OptionFamily12hInstall.h │ │ │ │ ├── OptionFamily14hEarlySample.h │ │ │ │ ├── OptionFamily14hInstall.h │ │ │ │ ├── OptionFamily15hInstall.h │ │ │ │ ├── OptionGfxRecovery.h │ │ │ │ ├── OptionGfxRecoveryInstall.h │ │ │ │ ├── OptionGnb.h │ │ │ │ ├── OptionGnbInstall.h │ │ │ │ ├── OptionHtAssistInstall.h │ │ │ │ ├── OptionHtInstall.h │ │ │ │ ├── OptionHwC1eInstall.h │ │ │ │ ├── OptionIdsInstall.h │ │ │ │ ├── OptionIoCstateInstall.h │ │ │ │ ├── OptionLowPwrPstateInstall.h │ │ │ │ ├── OptionMemory.h │ │ │ │ ├── OptionMemoryInstall.h │ │ │ │ ├── OptionMemoryRecovery.h │ │ │ │ ├── OptionMemoryRecoveryInstall.h │ │ │ │ ├── OptionMsgBasedC1eInstall.h │ │ │ │ ├── OptionMultiSocket.h │ │ │ │ ├── OptionMultiSocketInstall.h │ │ │ │ ├── OptionPreserveMailboxInstall.h │ │ │ │ ├── OptionPstate.h │ │ │ │ ├── OptionPstateInstall.h │ │ │ │ ├── OptionS3ScriptInstall.h │ │ │ │ ├── OptionSlit.h │ │ │ │ ├── OptionSlitInstall.h │ │ │ │ ├── OptionSrat.h │ │ │ │ ├── OptionSratInstall.h │ │ │ │ ├── OptionSwC1eInstall.h │ │ │ │ ├── OptionWhea.h │ │ │ │ ├── OptionWheaInstall.h │ │ │ │ ├── Options.h │ │ │ │ ├── OptionsHt.h │ │ │ │ ├── OptionsPage.h │ │ │ │ ├── PlatformInstall.h │ │ │ │ ├── PlatformMemoryConfiguration.h │ │ │ │ ├── Topology.h │ │ │ │ └── gcc-intrin.h │ │ │ ├── Legacy │ │ │ │ └── Proc │ │ │ │ │ ├── Dispatcher.c │ │ │ │ │ ├── agesaCallouts.c │ │ │ │ │ └── hobTransfer.c │ │ │ ├── MainPage.h │ │ │ ├── Makefile.inc │ │ │ ├── Proc │ │ │ │ ├── CPU │ │ │ │ │ ├── Family │ │ │ │ │ │ ├── 0x10 │ │ │ │ │ │ │ ├── F10InitEarlyTable.c │ │ │ │ │ │ │ ├── F10IoCstate.c │ │ │ │ │ │ │ ├── F10MultiLinkPciTables.c │ │ │ │ │ │ │ ├── F10PackageType.h │ │ │ │ │ │ │ ├── F10PmAsymBoostInit.c │ │ │ │ │ │ │ ├── F10PmAsymBoostInit.h │ │ │ │ │ │ │ ├── F10PmDualPlaneOnlySupport.c │ │ │ │ │ │ │ ├── F10PmDualPlaneOnlySupport.h │ │ │ │ │ │ │ ├── F10PmNbCofVidInit.c │ │ │ │ │ │ │ ├── F10PmNbCofVidInit.h │ │ │ │ │ │ │ ├── F10PmNbPstateInit.c │ │ │ │ │ │ │ ├── F10PmNbPstateInit.h │ │ │ │ │ │ │ ├── F10SingleLinkPciTables.c │ │ │ │ │ │ │ ├── RevC │ │ │ │ │ │ │ │ ├── BL │ │ │ │ │ │ │ │ │ ├── F10BlCacheFlushOnHalt.c │ │ │ │ │ │ │ │ │ ├── F10BlEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10BlHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10BlLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10BlMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10BlMsrTables.c │ │ │ │ │ │ │ │ │ └── F10BlPciTables.c │ │ │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ │ │ ├── F10DaCacheFlushOnHalt.c │ │ │ │ │ │ │ │ │ ├── F10DaEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10DaHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10DaLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10DaMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10DaMsrTables.c │ │ │ │ │ │ │ │ │ └── F10DaPciTables.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch01000085.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c6.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c7.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c8.c │ │ │ │ │ │ │ │ ├── F10RevCHtPhyTables.c │ │ │ │ │ │ │ │ ├── F10RevCHwC1e.c │ │ │ │ │ │ │ │ ├── F10RevCMsrTables.c │ │ │ │ │ │ │ │ ├── F10RevCPciTables.c │ │ │ │ │ │ │ │ ├── F10RevCSwC1e.c │ │ │ │ │ │ │ │ ├── F10RevCUtilities.c │ │ │ │ │ │ │ │ └── RB │ │ │ │ │ │ │ │ │ ├── F10RbEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10RbHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10RbLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10RbMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10RbMsrTables.c │ │ │ │ │ │ │ │ │ └── F10RbPciTables.c │ │ │ │ │ │ │ ├── RevD │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c4.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c5.c │ │ │ │ │ │ │ │ ├── F10RevDHtAssist.c │ │ │ │ │ │ │ │ ├── F10RevDMsgBasedC1e.c │ │ │ │ │ │ │ │ ├── F10RevDUtilities.c │ │ │ │ │ │ │ │ └── HY │ │ │ │ │ │ │ │ │ ├── F10HyEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10HyHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10HyInitEarlyTable.c │ │ │ │ │ │ │ │ │ ├── F10HyLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10HyMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10HyMsrTables.c │ │ │ │ │ │ │ │ │ └── F10HyPciTables.c │ │ │ │ │ │ │ ├── RevE │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000bf.c │ │ │ │ │ │ │ │ ├── F10RevEHtPhyTables.c │ │ │ │ │ │ │ │ ├── F10RevEMsrTables.c │ │ │ │ │ │ │ │ ├── F10RevEPciTables.c │ │ │ │ │ │ │ │ ├── F10RevEUtilities.c │ │ │ │ │ │ │ │ └── PH │ │ │ │ │ │ │ │ │ ├── F10PhEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10PhHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10PhLogicalIdTables.c │ │ │ │ │ │ │ │ │ └── F10PhMicrocodePatchTables.c │ │ │ │ │ │ │ ├── cpuCommonF10Utilities.c │ │ │ │ │ │ │ ├── cpuCommonF10Utilities.h │ │ │ │ │ │ │ ├── cpuF10BrandId.c │ │ │ │ │ │ │ ├── cpuF10BrandIdAm3.c │ │ │ │ │ │ │ ├── cpuF10BrandIdAsb2.c │ │ │ │ │ │ │ ├── cpuF10BrandIdC32.c │ │ │ │ │ │ │ ├── cpuF10BrandIdFr1207.c │ │ │ │ │ │ │ ├── cpuF10BrandIdG34.c │ │ │ │ │ │ │ ├── cpuF10BrandIdS1g3.c │ │ │ │ │ │ │ ├── cpuF10BrandIdS1g4.c │ │ │ │ │ │ │ ├── cpuF10CacheDefaults.c │ │ │ │ │ │ │ ├── cpuF10CacheFlushOnHalt.c │ │ │ │ │ │ │ ├── cpuF10Cpb.c │ │ │ │ │ │ │ ├── cpuF10Dmi.c │ │ │ │ │ │ │ ├── cpuF10EarlyInit.c │ │ │ │ │ │ │ ├── cpuF10EarlyInit.h │ │ │ │ │ │ │ ├── cpuF10FeatureLeveling.c │ │ │ │ │ │ │ ├── cpuF10FeatureLeveling.h │ │ │ │ │ │ │ ├── cpuF10HtPhyTables.c │ │ │ │ │ │ │ ├── cpuF10MsrTables.c │ │ │ │ │ │ │ ├── cpuF10PciTables.c │ │ │ │ │ │ │ ├── cpuF10PowerCheck.c │ │ │ │ │ │ │ ├── cpuF10PowerCheck.h │ │ │ │ │ │ │ ├── cpuF10PowerMgmt.h │ │ │ │ │ │ │ ├── cpuF10PowerMgmtSystemTables.c │ │ │ │ │ │ │ ├── cpuF10PowerPlane.c │ │ │ │ │ │ │ ├── cpuF10PowerPlane.h │ │ │ │ │ │ │ ├── cpuF10Pstate.c │ │ │ │ │ │ │ ├── cpuF10SoftwareThermal.c │ │ │ │ │ │ │ ├── cpuF10SoftwareThermal.h │ │ │ │ │ │ │ ├── cpuF10Utilities.c │ │ │ │ │ │ │ ├── cpuF10Utilities.h │ │ │ │ │ │ │ ├── cpuF10WheaInitDataTables.c │ │ │ │ │ │ │ └── cpuF10WorkaroundsTable.c │ │ │ │ │ │ ├── 0x14 │ │ │ │ │ │ │ ├── F14C6State.c │ │ │ │ │ │ │ ├── F14IoCstate.c │ │ │ │ │ │ │ ├── F14MicrocodePatch0500000B.c │ │ │ │ │ │ │ ├── F14MicrocodePatch0500001A.c │ │ │ │ │ │ │ ├── F14MicrocodePatch05000029.c │ │ │ │ │ │ │ ├── F14MicrocodePatch05000119.c │ │ │ │ │ │ │ ├── F14PackageType.h │ │ │ │ │ │ │ ├── ON │ │ │ │ │ │ │ │ ├── F14OnCpb.c │ │ │ │ │ │ │ │ ├── F14OnEquivalenceTable.c │ │ │ │ │ │ │ │ ├── F14OnInitEarlyTable.c │ │ │ │ │ │ │ │ ├── F14OnInitEarlyTable.h │ │ │ │ │ │ │ │ ├── F14OnLogicalIdTables.c │ │ │ │ │ │ │ │ ├── F14OnMicrocodePatchTables.c │ │ │ │ │ │ │ │ └── F14OnPciTables.c │ │ │ │ │ │ │ ├── cpuCommonF14Utilities.c │ │ │ │ │ │ │ ├── cpuCommonF14Utilities.h │ │ │ │ │ │ │ ├── cpuF14BrandId.c │ │ │ │ │ │ │ ├── cpuF14BrandIdFt1.c │ │ │ │ │ │ │ ├── cpuF14CacheDefaults.c │ │ │ │ │ │ │ ├── cpuF14Dmi.c │ │ │ │ │ │ │ ├── cpuF14LowPowerInit.c │ │ │ │ │ │ │ ├── cpuF14LowPowerInit.h │ │ │ │ │ │ │ ├── cpuF14MsrTables.c │ │ │ │ │ │ │ ├── cpuF14PciTables.c │ │ │ │ │ │ │ ├── cpuF14PerCorePciTables.c │ │ │ │ │ │ │ ├── cpuF14PowerCheck.c │ │ │ │ │ │ │ ├── cpuF14PowerCheck.h │ │ │ │ │ │ │ ├── cpuF14PowerMgmt.h │ │ │ │ │ │ │ ├── cpuF14PowerMgmtSystemTables.c │ │ │ │ │ │ │ ├── cpuF14PowerPlane.c │ │ │ │ │ │ │ ├── cpuF14PowerPlane.h │ │ │ │ │ │ │ ├── cpuF14Pstate.c │ │ │ │ │ │ │ ├── cpuF14SoftwareThermal.c │ │ │ │ │ │ │ ├── cpuF14SoftwareThermal.h │ │ │ │ │ │ │ ├── cpuF14Utilities.c │ │ │ │ │ │ │ ├── cpuF14Utilities.h │ │ │ │ │ │ │ └── cpuF14WheaInitDataTables.c │ │ │ │ │ │ └── cpuFamRegisters.h │ │ │ │ │ ├── Feature │ │ │ │ │ │ ├── PreserveMailbox.c │ │ │ │ │ │ ├── PreserveMailbox.h │ │ │ │ │ │ ├── cpuC6State.c │ │ │ │ │ │ ├── cpuC6State.h │ │ │ │ │ │ ├── cpuCacheFlushOnHalt.c │ │ │ │ │ │ ├── cpuCacheInit.c │ │ │ │ │ │ ├── cpuCacheInit.h │ │ │ │ │ │ ├── cpuCoreLeveling.c │ │ │ │ │ │ ├── cpuCpb.c │ │ │ │ │ │ ├── cpuCpb.h │ │ │ │ │ │ ├── cpuDmi.c │ │ │ │ │ │ ├── cpuFeatureLeveling.c │ │ │ │ │ │ ├── cpuFeatures.c │ │ │ │ │ │ ├── cpuFeatures.h │ │ │ │ │ │ ├── cpuHtAssist.c │ │ │ │ │ │ ├── cpuHtAssist.h │ │ │ │ │ │ ├── cpuHwC1e.c │ │ │ │ │ │ ├── cpuHwC1e.h │ │ │ │ │ │ ├── cpuIoCstate.c │ │ │ │ │ │ ├── cpuIoCstate.h │ │ │ │ │ │ ├── cpuLowPwrPstate.c │ │ │ │ │ │ ├── cpuLowPwrPstate.h │ │ │ │ │ │ ├── cpuMsgBasedC1e.c │ │ │ │ │ │ ├── cpuMsgBasedC1e.h │ │ │ │ │ │ ├── cpuPstateGather.c │ │ │ │ │ │ ├── cpuPstateLeveling.c │ │ │ │ │ │ ├── cpuPstateTables.c │ │ │ │ │ │ ├── cpuPstateTables.h │ │ │ │ │ │ ├── cpuSlit.c │ │ │ │ │ │ ├── cpuSrat.c │ │ │ │ │ │ ├── cpuSwC1e.c │ │ │ │ │ │ ├── cpuSwC1e.h │ │ │ │ │ │ └── cpuWhea.c │ │ │ │ │ ├── S3.c │ │ │ │ │ ├── S3.h │ │ │ │ │ ├── Table.c │ │ │ │ │ ├── Table.h │ │ │ │ │ ├── cahalt.c │ │ │ │ │ ├── cahaltasm.S │ │ │ │ │ ├── cpuApicUtilities.c │ │ │ │ │ ├── cpuApicUtilities.h │ │ │ │ │ ├── cpuBist.c │ │ │ │ │ ├── cpuBrandId.c │ │ │ │ │ ├── cpuEarlyInit.c │ │ │ │ │ ├── cpuEarlyInit.h │ │ │ │ │ ├── cpuEnvInit.h │ │ │ │ │ ├── cpuEventLog.c │ │ │ │ │ ├── cpuFamilyTranslation.c │ │ │ │ │ ├── cpuFamilyTranslation.h │ │ │ │ │ ├── cpuGeneralServices.c │ │ │ │ │ ├── cpuInitEarlyTable.c │ │ │ │ │ ├── cpuLateInit.c │ │ │ │ │ ├── cpuLateInit.h │ │ │ │ │ ├── cpuMicrocodePatch.c │ │ │ │ │ ├── cpuPage.h │ │ │ │ │ ├── cpuPostInit.c │ │ │ │ │ ├── cpuPostInit.h │ │ │ │ │ ├── cpuPowerMgmt.c │ │ │ │ │ ├── cpuPowerMgmtMultiSocket.c │ │ │ │ │ ├── cpuPowerMgmtMultiSocket.h │ │ │ │ │ ├── cpuPowerMgmtSingleSocket.c │ │ │ │ │ ├── cpuPowerMgmtSingleSocket.h │ │ │ │ │ ├── cpuPowerMgmtSystemTables.h │ │ │ │ │ ├── cpuRegisters.h │ │ │ │ │ ├── cpuServices.h │ │ │ │ │ ├── cpuWarmReset.c │ │ │ │ │ ├── heapManager.c │ │ │ │ │ └── heapManager.h │ │ │ │ ├── Common │ │ │ │ │ ├── AmdInitEarly.c │ │ │ │ │ ├── AmdInitEnv.c │ │ │ │ │ ├── AmdInitLate.c │ │ │ │ │ ├── AmdInitMid.c │ │ │ │ │ ├── AmdInitPost.c │ │ │ │ │ ├── AmdInitRecovery.c │ │ │ │ │ ├── AmdInitReset.c │ │ │ │ │ ├── AmdInitResume.c │ │ │ │ │ ├── AmdLateRunApTask.c │ │ │ │ │ ├── AmdS3LateRestore.c │ │ │ │ │ ├── AmdS3Save.c │ │ │ │ │ ├── CommonInits.c │ │ │ │ │ ├── CommonInits.h │ │ │ │ │ ├── CommonPage.h │ │ │ │ │ ├── CommonReturns.c │ │ │ │ │ ├── CreateStruct.c │ │ │ │ │ ├── CreateStruct.h │ │ │ │ │ ├── S3RestoreState.c │ │ │ │ │ ├── S3SaveState.c │ │ │ │ │ └── S3SaveState.h │ │ │ │ ├── GNB │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── Gnb.h │ │ │ │ │ │ ├── GnbFuseTable.h │ │ │ │ │ │ ├── GnbGfx.h │ │ │ │ │ │ ├── GnbGfxFamServices.h │ │ │ │ │ │ ├── GnbLibFeatures.c │ │ │ │ │ │ ├── GnbLibFeatures.h │ │ │ │ │ │ ├── GnbPcie.h │ │ │ │ │ │ ├── GnbPcieFamServices.h │ │ │ │ │ │ └── GnbRegistersON.h │ │ │ │ │ ├── Gfx │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ ├── 0x14 │ │ │ │ │ │ │ │ └── F14GfxServices.c │ │ │ │ │ │ │ └── GfxFamilyServices.h │ │ │ │ │ │ ├── GfxConfigData.c │ │ │ │ │ │ ├── GfxConfigData.h │ │ │ │ │ │ ├── GfxGmcInit.c │ │ │ │ │ │ ├── GfxGmcInit.h │ │ │ │ │ │ ├── GfxInitAtEnvPost.c │ │ │ │ │ │ ├── GfxInitAtEnvPost.h │ │ │ │ │ │ ├── GfxInitAtMidPost.c │ │ │ │ │ │ ├── GfxInitAtMidPost.h │ │ │ │ │ │ ├── GfxInitAtPost.c │ │ │ │ │ │ ├── GfxInitAtPost.h │ │ │ │ │ │ ├── GfxIntegratedInfoTableInit.c │ │ │ │ │ │ ├── GfxIntegratedInfoTableInit.h │ │ │ │ │ │ ├── GfxLib.c │ │ │ │ │ │ ├── GfxLib.h │ │ │ │ │ │ ├── GfxRegisterAcc.c │ │ │ │ │ │ ├── GfxRegisterAcc.h │ │ │ │ │ │ ├── GfxStrapsInit.c │ │ │ │ │ │ └── GfxStrapsInit.h │ │ │ │ │ ├── GnbInitAtEarly.c │ │ │ │ │ ├── GnbInitAtEnv.c │ │ │ │ │ ├── GnbInitAtLate.c │ │ │ │ │ ├── GnbInitAtMid.c │ │ │ │ │ ├── GnbInitAtPost.c │ │ │ │ │ ├── GnbInitAtReset.c │ │ │ │ │ ├── GnbPage.h │ │ │ │ │ ├── Modules │ │ │ │ │ │ ├── GnbCableSafe │ │ │ │ │ │ │ ├── GnbCableSafe.c │ │ │ │ │ │ │ └── GnbCableSafeDefs.h │ │ │ │ │ │ ├── GnbCommonLib │ │ │ │ │ │ │ ├── GnbCommonLib.h │ │ │ │ │ │ │ ├── GnbLib.c │ │ │ │ │ │ │ ├── GnbLib.h │ │ │ │ │ │ │ ├── GnbLibCpuAcc.c │ │ │ │ │ │ │ ├── GnbLibCpuAcc.h │ │ │ │ │ │ │ ├── GnbLibHeap.c │ │ │ │ │ │ │ ├── GnbLibHeap.h │ │ │ │ │ │ │ ├── GnbLibIoAcc.c │ │ │ │ │ │ │ ├── GnbLibIoAcc.h │ │ │ │ │ │ │ ├── GnbLibMemAcc.c │ │ │ │ │ │ │ ├── GnbLibMemAcc.h │ │ │ │ │ │ │ ├── GnbLibPci.c │ │ │ │ │ │ │ ├── GnbLibPci.h │ │ │ │ │ │ │ ├── GnbLibPciAcc.c │ │ │ │ │ │ │ └── GnbLibPciAcc.h │ │ │ │ │ │ ├── GnbGfxConfig │ │ │ │ │ │ │ ├── GfxConfigEnv.c │ │ │ │ │ │ │ ├── GfxConfigPost.c │ │ │ │ │ │ │ ├── GfxConfigPost.h │ │ │ │ │ │ │ └── GnbGfxConfig.h │ │ │ │ │ │ ├── GnbGfxInitLibV1 │ │ │ │ │ │ │ ├── GfxCardInfo.c │ │ │ │ │ │ │ ├── GfxCardInfo.h │ │ │ │ │ │ │ ├── GfxEnumConnectors.c │ │ │ │ │ │ │ ├── GfxEnumConnectors.h │ │ │ │ │ │ │ ├── GfxPowerPlayTable.c │ │ │ │ │ │ │ ├── GfxPowerPlayTable.h │ │ │ │ │ │ │ └── GnbGfxInitLibV1.h │ │ │ │ │ │ ├── GnbNbInitLibV1 │ │ │ │ │ │ │ ├── GnbNbInitLibV1.c │ │ │ │ │ │ │ └── GnbNbInitLibV1.h │ │ │ │ │ │ ├── GnbPcieAlibV1 │ │ │ │ │ │ │ ├── PcieAlib.c │ │ │ │ │ │ │ ├── PcieAlib.h │ │ │ │ │ │ │ ├── PcieAlibConfig.esl │ │ │ │ │ │ │ ├── PcieAlibCore.esl │ │ │ │ │ │ │ ├── PcieAlibHotplug.esl │ │ │ │ │ │ │ └── PcieAlibPspp.esl │ │ │ │ │ │ ├── GnbPcieConfig │ │ │ │ │ │ │ ├── GnbPcieConfig.h │ │ │ │ │ │ │ ├── PcieConfigData.c │ │ │ │ │ │ │ ├── PcieConfigData.h │ │ │ │ │ │ │ ├── PcieConfigLib.c │ │ │ │ │ │ │ ├── PcieConfigLib.h │ │ │ │ │ │ │ ├── PcieInputParser.c │ │ │ │ │ │ │ ├── PcieInputParser.h │ │ │ │ │ │ │ ├── PcieMapTopology.c │ │ │ │ │ │ │ └── PcieMapTopology.h │ │ │ │ │ │ ├── GnbPcieInitLibV1 │ │ │ │ │ │ │ ├── GnbPcieInitLibV1.h │ │ │ │ │ │ │ ├── PcieAspm.c │ │ │ │ │ │ │ ├── PcieAspm.h │ │ │ │ │ │ │ ├── PcieAspmBlackList.c │ │ │ │ │ │ │ ├── PcieAspmBlackList.h │ │ │ │ │ │ │ ├── PcieAspmExitLatency.c │ │ │ │ │ │ │ ├── PcieAspmExitLatency.h │ │ │ │ │ │ │ ├── PciePhyServices.c │ │ │ │ │ │ │ ├── PciePhyServices.h │ │ │ │ │ │ │ ├── PciePifServices.c │ │ │ │ │ │ │ ├── PciePifServices.h │ │ │ │ │ │ │ ├── PciePortRegAcc.c │ │ │ │ │ │ │ ├── PciePortRegAcc.h │ │ │ │ │ │ │ ├── PciePortServices.c │ │ │ │ │ │ │ ├── PciePortServices.h │ │ │ │ │ │ │ ├── PciePowerMgmt.c │ │ │ │ │ │ │ ├── PciePowerMgmt.h │ │ │ │ │ │ │ ├── PcieSbLink.c │ │ │ │ │ │ │ ├── PcieSbLink.h │ │ │ │ │ │ │ ├── PcieSiliconServices.c │ │ │ │ │ │ │ ├── PcieSiliconServices.h │ │ │ │ │ │ │ ├── PcieSmuLib.esl │ │ │ │ │ │ │ ├── PcieTimer.c │ │ │ │ │ │ │ ├── PcieTimer.h │ │ │ │ │ │ │ ├── PcieTopologyServices.c │ │ │ │ │ │ │ ├── PcieTopologyServices.h │ │ │ │ │ │ │ ├── PcieUtilityLib.c │ │ │ │ │ │ │ ├── PcieUtilityLib.h │ │ │ │ │ │ │ ├── PcieWrapperRegAcc.c │ │ │ │ │ │ │ └── PcieWrapperRegAcc.h │ │ │ │ │ │ └── GnbPcieTrainingV1 │ │ │ │ │ │ │ ├── GnbPcieTrainingV1.h │ │ │ │ │ │ │ ├── PcieTraining.c │ │ │ │ │ │ │ ├── PcieTraining.h │ │ │ │ │ │ │ ├── PcieWorkarounds.c │ │ │ │ │ │ │ └── PcieWorkarounds.h │ │ │ │ │ ├── Nb │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ ├── 0x14 │ │ │ │ │ │ │ │ ├── F14NbLclkDpm.c │ │ │ │ │ │ │ │ ├── F14NbLclkNclkRatio.c │ │ │ │ │ │ │ │ ├── F14NbLclkNclkRatio.h │ │ │ │ │ │ │ │ ├── F14NbPowerGate.c │ │ │ │ │ │ │ │ ├── F14NbPowerGate.h │ │ │ │ │ │ │ │ ├── F14NbServices.c │ │ │ │ │ │ │ │ ├── F14NbSmu.c │ │ │ │ │ │ │ │ └── F14NbSmuFirmware.h │ │ │ │ │ │ │ └── NbFamilyServices.h │ │ │ │ │ │ ├── Feature │ │ │ │ │ │ │ ├── NbFuseTable.c │ │ │ │ │ │ │ ├── NbFuseTable.h │ │ │ │ │ │ │ ├── NbLclkDpm.c │ │ │ │ │ │ │ └── NbLclkDpm.h │ │ │ │ │ │ ├── NbConfigData.c │ │ │ │ │ │ ├── NbConfigData.h │ │ │ │ │ │ ├── NbInit.c │ │ │ │ │ │ ├── NbInit.h │ │ │ │ │ │ ├── NbInitAtEarly.c │ │ │ │ │ │ ├── NbInitAtEarly.h │ │ │ │ │ │ ├── NbInitAtEnv.c │ │ │ │ │ │ ├── NbInitAtEnv.h │ │ │ │ │ │ ├── NbInitAtLatePost.c │ │ │ │ │ │ ├── NbInitAtLatePost.h │ │ │ │ │ │ ├── NbInitAtPost.c │ │ │ │ │ │ ├── NbInitAtPost.h │ │ │ │ │ │ ├── NbInitAtReset.c │ │ │ │ │ │ ├── NbInitAtReset.h │ │ │ │ │ │ ├── NbPowerMgmt.c │ │ │ │ │ │ ├── NbPowerMgmt.h │ │ │ │ │ │ ├── NbSmuLib.c │ │ │ │ │ │ └── NbSmuLib.h │ │ │ │ │ └── PCIe │ │ │ │ │ │ ├── Family │ │ │ │ │ │ ├── 0x14 │ │ │ │ │ │ │ ├── F14PcieAlib.c │ │ │ │ │ │ │ ├── F14PcieAlib.esl │ │ │ │ │ │ │ ├── F14PcieAlibSsdt.h │ │ │ │ │ │ │ ├── F14PcieComplexConfig.c │ │ │ │ │ │ │ ├── F14PcieComplexServices.c │ │ │ │ │ │ │ ├── F14PciePhyServices.c │ │ │ │ │ │ │ ├── F14PciePifServices.c │ │ │ │ │ │ │ ├── F14PcieWrapperServices.c │ │ │ │ │ │ │ ├── OntarioComplexData.h │ │ │ │ │ │ │ └── OntarioDefinitions.h │ │ │ │ │ │ └── PcieFamilyServices.h │ │ │ │ │ │ ├── Feature │ │ │ │ │ │ ├── PCieSmuLibV1.esl │ │ │ │ │ │ ├── PciePowerGate.c │ │ │ │ │ │ └── PciePowerGate.h │ │ │ │ │ │ ├── PcieInit.c │ │ │ │ │ │ ├── PcieInit.h │ │ │ │ │ │ ├── PcieInitAtEarlyPost.c │ │ │ │ │ │ ├── PcieInitAtEarlyPost.h │ │ │ │ │ │ ├── PcieInitAtEnv.c │ │ │ │ │ │ ├── PcieInitAtEnv.h │ │ │ │ │ │ ├── PcieInitAtLatePost.c │ │ │ │ │ │ ├── PcieInitAtLatePost.h │ │ │ │ │ │ ├── PcieInitAtPost.c │ │ │ │ │ │ ├── PcieInitAtPost.h │ │ │ │ │ │ ├── PcieLateInit.c │ │ │ │ │ │ ├── PcieLateInit.h │ │ │ │ │ │ ├── PcieMiscLib.c │ │ │ │ │ │ ├── PcieMiscLib.h │ │ │ │ │ │ ├── PciePortInit.c │ │ │ │ │ │ ├── PciePortInit.h │ │ │ │ │ │ ├── PciePortLateInit.c │ │ │ │ │ │ └── PciePortLateInit.h │ │ │ │ ├── HT │ │ │ │ │ ├── Fam10 │ │ │ │ │ │ ├── htNbCoherentFam10.c │ │ │ │ │ │ ├── htNbCoherentFam10.h │ │ │ │ │ │ ├── htNbFam10.c │ │ │ │ │ │ ├── htNbNonCoherentFam10.c │ │ │ │ │ │ ├── htNbNonCoherentFam10.h │ │ │ │ │ │ ├── htNbOptimizationFam10.c │ │ │ │ │ │ ├── htNbOptimizationFam10.h │ │ │ │ │ │ ├── htNbSystemFam10.c │ │ │ │ │ │ ├── htNbSystemFam10.h │ │ │ │ │ │ ├── htNbUtilitiesFam10.c │ │ │ │ │ │ └── htNbUtilitiesFam10.h │ │ │ │ │ ├── Fam14 │ │ │ │ │ │ ├── htNbFam14.c │ │ │ │ │ │ ├── htNbUtilitiesFam14.c │ │ │ │ │ │ └── htNbUtilitiesFam14.h │ │ │ │ │ ├── Features │ │ │ │ │ │ ├── htFeatDynamicDiscovery.c │ │ │ │ │ │ ├── htFeatDynamicDiscovery.h │ │ │ │ │ │ ├── htFeatGanging.c │ │ │ │ │ │ ├── htFeatGanging.h │ │ │ │ │ │ ├── htFeatNoncoherent.c │ │ │ │ │ │ ├── htFeatNoncoherent.h │ │ │ │ │ │ ├── htFeatOptimization.c │ │ │ │ │ │ ├── htFeatOptimization.h │ │ │ │ │ │ ├── htFeatRouting.c │ │ │ │ │ │ ├── htFeatRouting.h │ │ │ │ │ │ ├── htFeatSets.c │ │ │ │ │ │ ├── htFeatSublinks.c │ │ │ │ │ │ ├── htFeatSublinks.h │ │ │ │ │ │ ├── htFeatTrafficDistribution.c │ │ │ │ │ │ ├── htFeatTrafficDistribution.h │ │ │ │ │ │ └── htIds.c │ │ │ │ │ ├── NbCommon │ │ │ │ │ │ ├── htNbCoherent.c │ │ │ │ │ │ ├── htNbCoherent.h │ │ │ │ │ │ ├── htNbNonCoherent.c │ │ │ │ │ │ ├── htNbNonCoherent.h │ │ │ │ │ │ ├── htNbOptimization.c │ │ │ │ │ │ ├── htNbOptimization.h │ │ │ │ │ │ ├── htNbUtilities.c │ │ │ │ │ │ └── htNbUtilities.h │ │ │ │ │ ├── htFeat.c │ │ │ │ │ ├── htFeat.h │ │ │ │ │ ├── htGraph.h │ │ │ │ │ ├── htGraph │ │ │ │ │ │ ├── htGraph.c │ │ │ │ │ │ ├── htGraph1.c │ │ │ │ │ │ ├── htGraph2.c │ │ │ │ │ │ ├── htGraph3Line.c │ │ │ │ │ │ ├── htGraph3Triangle.c │ │ │ │ │ │ ├── htGraph4Degenerate.c │ │ │ │ │ │ ├── htGraph4FullyConnected.c │ │ │ │ │ │ ├── htGraph4Kite.c │ │ │ │ │ │ ├── htGraph4Line.c │ │ │ │ │ │ ├── htGraph4Square.c │ │ │ │ │ │ ├── htGraph4Star.c │ │ │ │ │ │ ├── htGraph5FullyConnected.c │ │ │ │ │ │ ├── htGraph5TwistedLadder.c │ │ │ │ │ │ ├── htGraph6DoubloonLower.c │ │ │ │ │ │ ├── htGraph6DoubloonUpper.c │ │ │ │ │ │ ├── htGraph6FullyConnected.c │ │ │ │ │ │ ├── htGraph6TwinTriangles.c │ │ │ │ │ │ ├── htGraph6TwistedLadder.c │ │ │ │ │ │ ├── htGraph7FullyConnected.c │ │ │ │ │ │ ├── htGraph7TwistedLadder.c │ │ │ │ │ │ ├── htGraph8DoubloonM.c │ │ │ │ │ │ ├── htGraph8FullyConnected.c │ │ │ │ │ │ ├── htGraph8Ladder.c │ │ │ │ │ │ ├── htGraph8TwinFullyFourWays.c │ │ │ │ │ │ └── htGraph8TwistedLadder.c │ │ │ │ │ ├── htInterface.c │ │ │ │ │ ├── htInterface.h │ │ │ │ │ ├── htInterfaceCoherent.c │ │ │ │ │ ├── htInterfaceCoherent.h │ │ │ │ │ ├── htInterfaceGeneral.c │ │ │ │ │ ├── htInterfaceGeneral.h │ │ │ │ │ ├── htInterfaceNonCoherent.c │ │ │ │ │ ├── htInterfaceNonCoherent.h │ │ │ │ │ ├── htMain.c │ │ │ │ │ ├── htNb.c │ │ │ │ │ ├── htNb.h │ │ │ │ │ ├── htNbHardwareFam10.h │ │ │ │ │ ├── htNotify.c │ │ │ │ │ ├── htNotify.h │ │ │ │ │ ├── htPage.h │ │ │ │ │ └── htTopologies.h │ │ │ │ ├── IDS │ │ │ │ │ ├── IdsLib.h │ │ │ │ │ ├── IdsPage.h │ │ │ │ │ └── OptionsIds.h │ │ │ │ ├── Mem │ │ │ │ │ ├── Ardk │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── marc32_3.c │ │ │ │ │ │ │ └── mauc32_3.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── masda2.c │ │ │ │ │ │ │ ├── masda3.c │ │ │ │ │ │ │ └── mauda3.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mardr2.c │ │ │ │ │ │ │ ├── mardr3.c │ │ │ │ │ │ │ └── maudr3.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── marhy3.c │ │ │ │ │ │ │ └── mauhy3.c │ │ │ │ │ │ ├── NI │ │ │ │ │ │ │ ├── masNi3.c │ │ │ │ │ │ │ └── mauNi3.c │ │ │ │ │ │ ├── ON │ │ │ │ │ │ │ ├── mason3.c │ │ │ │ │ │ │ └── mauon3.c │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ ├── masph3.c │ │ │ │ │ │ │ └── mauPh3.c │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ ├── masRb3.c │ │ │ │ │ │ │ └── mauRb3.c │ │ │ │ │ │ └── ma.c │ │ │ │ │ ├── Feat │ │ │ │ │ │ ├── CHINTLV │ │ │ │ │ │ │ ├── mfchi.c │ │ │ │ │ │ │ └── mfchi.h │ │ │ │ │ │ ├── CSINTLV │ │ │ │ │ │ │ ├── mfcsi.c │ │ │ │ │ │ │ └── mfcsi.h │ │ │ │ │ │ ├── DMI │ │ │ │ │ │ │ └── mfDMI.c │ │ │ │ │ │ ├── ECC │ │ │ │ │ │ │ ├── mfecc.c │ │ │ │ │ │ │ ├── mfecc.h │ │ │ │ │ │ │ └── mfemp.c │ │ │ │ │ │ ├── EXCLUDIMM │ │ │ │ │ │ │ └── mfdimmexclud.c │ │ │ │ │ │ ├── IDENDIMM │ │ │ │ │ │ │ ├── mfidendimm.c │ │ │ │ │ │ │ └── mfidendimm.h │ │ │ │ │ │ ├── INTLVRN │ │ │ │ │ │ │ ├── mfintlvrn.c │ │ │ │ │ │ │ └── mfintlvrn.h │ │ │ │ │ │ ├── LVDDR3 │ │ │ │ │ │ │ ├── mflvddr3.c │ │ │ │ │ │ │ └── mflvddr3.h │ │ │ │ │ │ ├── MEMCLR │ │ │ │ │ │ │ └── mfmemclr.c │ │ │ │ │ │ ├── NDINTLV │ │ │ │ │ │ │ ├── mfndi.c │ │ │ │ │ │ │ └── mfndi.h │ │ │ │ │ │ ├── ODTHERMAL │ │ │ │ │ │ │ ├── mfodthermal.c │ │ │ │ │ │ │ └── mfodthermal.h │ │ │ │ │ │ ├── OLSPARE │ │ │ │ │ │ │ ├── mfspr.c │ │ │ │ │ │ │ └── mfspr.h │ │ │ │ │ │ ├── PARTRN │ │ │ │ │ │ │ ├── mfParallelTraining.c │ │ │ │ │ │ │ └── mfStandardTraining.c │ │ │ │ │ │ ├── S3 │ │ │ │ │ │ │ └── mfs3.c │ │ │ │ │ │ └── TABLE │ │ │ │ │ │ │ └── mftds.c │ │ │ │ │ ├── Main │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ └── mmflowC32.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ └── mmflowda.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ └── mmflowdr.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ └── mmflowhy.c │ │ │ │ │ │ ├── ON │ │ │ │ │ │ │ └── mmflowon.c │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ └── mmflowPh.c │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ └── mmflowRb.c │ │ │ │ │ │ ├── mdef.c │ │ │ │ │ │ ├── merrhdl.c │ │ │ │ │ │ ├── minit.c │ │ │ │ │ │ ├── mm.c │ │ │ │ │ │ ├── mmConditionalPso.c │ │ │ │ │ │ ├── mmEcc.c │ │ │ │ │ │ ├── mmExcludeDimm.c │ │ │ │ │ │ ├── mmLvDdr3.c │ │ │ │ │ │ ├── mmMemClr.c │ │ │ │ │ │ ├── mmMemRestore.c │ │ │ │ │ │ ├── mmNodeInterleave.c │ │ │ │ │ │ ├── mmOnlineSpare.c │ │ │ │ │ │ ├── mmParallelTraining.c │ │ │ │ │ │ ├── mmStandardTraining.c │ │ │ │ │ │ ├── mmUmaAlloc.c │ │ │ │ │ │ ├── mmflow.c │ │ │ │ │ │ ├── mmlvddr3.h │ │ │ │ │ │ ├── mu.c │ │ │ │ │ │ └── muc.c │ │ │ │ │ ├── NB │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── mnParTrainc32.c │ │ │ │ │ │ │ ├── mnS3c32.c │ │ │ │ │ │ │ ├── mnS3c32.h │ │ │ │ │ │ │ ├── mnc32.c │ │ │ │ │ │ │ ├── mnc32.h │ │ │ │ │ │ │ ├── mndctc32.c │ │ │ │ │ │ │ ├── mnflowc32.c │ │ │ │ │ │ │ ├── mnidendimmc32.c │ │ │ │ │ │ │ ├── mnmctc32.c │ │ │ │ │ │ │ ├── mnotc32.c │ │ │ │ │ │ │ ├── mnphyc32.c │ │ │ │ │ │ │ ├── mnprotoc32.c │ │ │ │ │ │ │ └── mnregc32.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── mnParTrainDa.c │ │ │ │ │ │ │ ├── mnS3da.c │ │ │ │ │ │ │ ├── mnS3da.h │ │ │ │ │ │ │ ├── mnda.c │ │ │ │ │ │ │ ├── mnda.h │ │ │ │ │ │ │ ├── mndctda.c │ │ │ │ │ │ │ ├── mnflowda.c │ │ │ │ │ │ │ ├── mnidendimmda.c │ │ │ │ │ │ │ ├── mnmctda.c │ │ │ │ │ │ │ ├── mnotda.c │ │ │ │ │ │ │ ├── mnprotoda.c │ │ │ │ │ │ │ └── mnregda.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mnParTrainDr.c │ │ │ │ │ │ │ ├── mnS3dr.c │ │ │ │ │ │ │ ├── mnS3dr.h │ │ │ │ │ │ │ ├── mndctdr.c │ │ │ │ │ │ │ ├── mndr.c │ │ │ │ │ │ │ ├── mndr.h │ │ │ │ │ │ │ ├── mnflowdr.c │ │ │ │ │ │ │ ├── mnidendimmdr.c │ │ │ │ │ │ │ ├── mnmctdr.c │ │ │ │ │ │ │ ├── mnotdr.c │ │ │ │ │ │ │ ├── mnprotodr.c │ │ │ │ │ │ │ └── mnregdr.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── mnParTrainHy.c │ │ │ │ │ │ │ ├── mnS3hy.c │ │ │ │ │ │ │ ├── mnS3hy.h │ │ │ │ │ │ │ ├── mndcthy.c │ │ │ │ │ │ │ ├── mnflowhy.c │ │ │ │ │ │ │ ├── mnhy.c │ │ │ │ │ │ │ ├── mnhy.h │ │ │ │ │ │ │ ├── mnidendimmhy.c │ │ │ │ │ │ │ ├── mnmcthy.c │ │ │ │ │ │ │ ├── mnothy.c │ │ │ │ │ │ │ ├── mnphyhy.c │ │ │ │ │ │ │ ├── mnprotohy.c │ │ │ │ │ │ │ └── mnreghy.c │ │ │ │ │ │ ├── NI │ │ │ │ │ │ │ ├── mnNi.c │ │ │ │ │ │ │ ├── mnNi.h │ │ │ │ │ │ │ ├── mnS3Ni.c │ │ │ │ │ │ │ ├── mnS3Ni.h │ │ │ │ │ │ │ └── mnflowNi.c │ │ │ │ │ │ ├── ON │ │ │ │ │ │ │ ├── mnS3on.c │ │ │ │ │ │ │ ├── mnS3on.h │ │ │ │ │ │ │ ├── mndcton.c │ │ │ │ │ │ │ ├── mnflowon.c │ │ │ │ │ │ │ ├── mnidendimmon.c │ │ │ │ │ │ │ ├── mnmcton.c │ │ │ │ │ │ │ ├── mnon.c │ │ │ │ │ │ │ ├── mnon.h │ │ │ │ │ │ │ ├── mnoton.c │ │ │ │ │ │ │ ├── mnphyon.c │ │ │ │ │ │ │ ├── mnprotoon.c │ │ │ │ │ │ │ └── mnregon.c │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ ├── mnPh.c │ │ │ │ │ │ │ ├── mnPh.h │ │ │ │ │ │ │ ├── mnS3Ph.c │ │ │ │ │ │ │ ├── mnS3Ph.h │ │ │ │ │ │ │ ├── mnflowPh.c │ │ │ │ │ │ │ └── mnidendimmPh.c │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ ├── mnRb.c │ │ │ │ │ │ │ ├── mnRb.h │ │ │ │ │ │ │ ├── mnS3Rb.c │ │ │ │ │ │ │ ├── mnS3Rb.h │ │ │ │ │ │ │ ├── mnflowRb.c │ │ │ │ │ │ │ └── mnidendimmRb.c │ │ │ │ │ │ ├── mn.c │ │ │ │ │ │ ├── mnS3.c │ │ │ │ │ │ ├── mndct.c │ │ │ │ │ │ ├── mnfeat.c │ │ │ │ │ │ ├── mnflow.c │ │ │ │ │ │ ├── mnmct.c │ │ │ │ │ │ ├── mnphy.c │ │ │ │ │ │ ├── mnreg.c │ │ │ │ │ │ ├── mntrain2.c │ │ │ │ │ │ └── mntrain3.c │ │ │ │ │ ├── Ps │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── mprc32_3.c │ │ │ │ │ │ │ └── mpuc32_3.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── mpsda2.c │ │ │ │ │ │ │ ├── mpsda3.c │ │ │ │ │ │ │ └── mpuda3.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mprdr2.c │ │ │ │ │ │ │ ├── mprdr3.c │ │ │ │ │ │ │ ├── mpsdr3.c │ │ │ │ │ │ │ ├── mpudr2.c │ │ │ │ │ │ │ └── mpudr3.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── mprhy3.c │ │ │ │ │ │ │ ├── mpshy3.c │ │ │ │ │ │ │ └── mpuhy3.c │ │ │ │ │ │ ├── NI │ │ │ │ │ │ │ ├── mpsNi3.c │ │ │ │ │ │ │ └── mpuNi3.c │ │ │ │ │ │ ├── ON │ │ │ │ │ │ │ ├── mpson3.c │ │ │ │ │ │ │ └── mpuon3.c │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ ├── mpsph3.c │ │ │ │ │ │ │ └── mpuph3.c │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ ├── mpsRb3.c │ │ │ │ │ │ │ └── mpuRb3.c │ │ │ │ │ │ ├── mp.c │ │ │ │ │ │ ├── mplribt.c │ │ │ │ │ │ ├── mplrnlr.c │ │ │ │ │ │ ├── mplrnpr.c │ │ │ │ │ │ ├── mpmaxfreq.c │ │ │ │ │ │ ├── mpmr0.c │ │ │ │ │ │ ├── mpodtpat.c │ │ │ │ │ │ ├── mprc10opspd.c │ │ │ │ │ │ ├── mprc2ibt.c │ │ │ │ │ │ ├── mprtt.c │ │ │ │ │ │ └── mpsao.c │ │ │ │ │ ├── Tech │ │ │ │ │ │ ├── DDR2 │ │ │ │ │ │ │ ├── mt2.c │ │ │ │ │ │ │ ├── mt2.h │ │ │ │ │ │ │ ├── mtot2.c │ │ │ │ │ │ │ ├── mtot2.h │ │ │ │ │ │ │ ├── mtspd2.c │ │ │ │ │ │ │ └── mtspd2.h │ │ │ │ │ │ ├── DDR3 │ │ │ │ │ │ │ ├── mt3.c │ │ │ │ │ │ │ ├── mt3.h │ │ │ │ │ │ │ ├── mtlrdimm3.c │ │ │ │ │ │ │ ├── mtlrdimm3.h │ │ │ │ │ │ │ ├── mtot3.c │ │ │ │ │ │ │ ├── mtot3.h │ │ │ │ │ │ │ ├── mtrci3.c │ │ │ │ │ │ │ ├── mtrci3.h │ │ │ │ │ │ │ ├── mtsdi3.c │ │ │ │ │ │ │ ├── mtsdi3.h │ │ │ │ │ │ │ ├── mtspd3.c │ │ │ │ │ │ │ ├── mtspd3.h │ │ │ │ │ │ │ ├── mttecc3.c │ │ │ │ │ │ │ └── mttwl3.c │ │ │ │ │ │ ├── mt.c │ │ │ │ │ │ ├── mthdi.c │ │ │ │ │ │ ├── mttEdgeDetect.c │ │ │ │ │ │ ├── mttEdgeDetect.h │ │ │ │ │ │ ├── mttdimbt.c │ │ │ │ │ │ ├── mttecc.c │ │ │ │ │ │ ├── mtthrc.c │ │ │ │ │ │ ├── mttml.c │ │ │ │ │ │ ├── mttoptsrc.c │ │ │ │ │ │ └── mttsrc.c │ │ │ │ │ ├── ma.h │ │ │ │ │ ├── memPage.h │ │ │ │ │ ├── merrhdl.h │ │ │ │ │ ├── mfParallelTraining.h │ │ │ │ │ ├── mfStandardTraining.h │ │ │ │ │ ├── mfmemclr.h │ │ │ │ │ ├── mfs3.h │ │ │ │ │ ├── mftds.h │ │ │ │ │ ├── mm.h │ │ │ │ │ ├── mn.h │ │ │ │ │ ├── mp.h │ │ │ │ │ ├── mport.h │ │ │ │ │ ├── mt.h │ │ │ │ │ └── mu.h │ │ │ │ └── Recovery │ │ │ │ │ ├── CPU │ │ │ │ │ ├── cpuRecovery.c │ │ │ │ │ └── cpuRecovery.h │ │ │ │ │ ├── GNB │ │ │ │ │ ├── GfxRecovery.c │ │ │ │ │ ├── GfxRecovery.h │ │ │ │ │ ├── GnbRecovery.c │ │ │ │ │ ├── NbInitRecovery.c │ │ │ │ │ └── NbInitRecovery.h │ │ │ │ │ ├── HT │ │ │ │ │ ├── htInitRecovery.c │ │ │ │ │ └── htInitReset.c │ │ │ │ │ ├── Mem │ │ │ │ │ ├── NB │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── mrnc32.c │ │ │ │ │ │ │ ├── mrnc32.h │ │ │ │ │ │ │ ├── mrnmctc32.c │ │ │ │ │ │ │ └── mrnprotoc32.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── mrnda.c │ │ │ │ │ │ │ ├── mrnda.h │ │ │ │ │ │ │ └── mrnmctda.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mrndr.c │ │ │ │ │ │ │ ├── mrndr.h │ │ │ │ │ │ │ └── mrnmctdr.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── mrndcthy.c │ │ │ │ │ │ │ ├── mrnhy.c │ │ │ │ │ │ │ ├── mrnhy.h │ │ │ │ │ │ │ ├── mrnmcthy.c │ │ │ │ │ │ │ └── mrnprotohy.c │ │ │ │ │ │ ├── NI │ │ │ │ │ │ │ ├── mrnNi.c │ │ │ │ │ │ │ └── mrnNi.h │ │ │ │ │ │ ├── ON │ │ │ │ │ │ │ ├── mrndcton.c │ │ │ │ │ │ │ ├── mrnmcton.c │ │ │ │ │ │ │ ├── mrnon.c │ │ │ │ │ │ │ └── mrnon.h │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ ├── mrnPh.c │ │ │ │ │ │ │ └── mrnPh.h │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ ├── mrnRb.c │ │ │ │ │ │ │ └── mrnRb.h │ │ │ │ │ │ ├── mrn.c │ │ │ │ │ │ ├── mrndct.c │ │ │ │ │ │ ├── mrnmct.c │ │ │ │ │ │ └── mrntrain3.c │ │ │ │ │ ├── Ps │ │ │ │ │ │ ├── mrp.c │ │ │ │ │ │ ├── mrplribt.c │ │ │ │ │ │ ├── mrplrnlr.c │ │ │ │ │ │ ├── mrplrnpr.c │ │ │ │ │ │ ├── mrpmr0.c │ │ │ │ │ │ ├── mrpodtpat.c │ │ │ │ │ │ ├── mrprc10opspd.c │ │ │ │ │ │ ├── mrprc2ibt.c │ │ │ │ │ │ ├── mrprtt.c │ │ │ │ │ │ └── mrpsao.c │ │ │ │ │ ├── Tech │ │ │ │ │ │ ├── DDR3 │ │ │ │ │ │ │ ├── mrt3.c │ │ │ │ │ │ │ ├── mrtrci3.c │ │ │ │ │ │ │ ├── mrtsdi3.c │ │ │ │ │ │ │ ├── mrtspd3.c │ │ │ │ │ │ │ ├── mrtspd3.h │ │ │ │ │ │ │ └── mrttwl3.c │ │ │ │ │ │ ├── mrtthrc.c │ │ │ │ │ │ ├── mrttpos.c │ │ │ │ │ │ └── mrttsrc.c │ │ │ │ │ ├── mrdef.c │ │ │ │ │ ├── mrinit.c │ │ │ │ │ ├── mrm.c │ │ │ │ │ ├── mrport.h │ │ │ │ │ ├── mrt3.h │ │ │ │ │ ├── mru.h │ │ │ │ │ └── mruc.c │ │ │ │ │ └── recoveryPage.h │ │ │ ├── errno.h │ │ │ └── gcccar.inc │ │ ├── f15 │ │ │ ├── AGESA.h │ │ │ ├── AMD.h │ │ │ ├── Dispatcher.h │ │ │ ├── Include │ │ │ │ ├── AdvancedApi.h │ │ │ │ ├── CommonReturns.h │ │ │ │ ├── Filecode.h │ │ │ │ ├── GeneralServices.h │ │ │ │ ├── GnbInterface.h │ │ │ │ ├── GnbInterfaceStub.h │ │ │ │ ├── GnbPage.h │ │ │ │ ├── Ids.h │ │ │ │ ├── IdsHt.h │ │ │ │ ├── MaranelloInstall.h │ │ │ │ ├── OptionApmInstall.h │ │ │ │ ├── OptionC6Install.h │ │ │ │ ├── OptionCpbInstall.h │ │ │ │ ├── OptionCpuCacheFlushOnHaltInstall.h │ │ │ │ ├── OptionCpuCoreLevelingInstall.h │ │ │ │ ├── OptionCpuFamiliesInstall.h │ │ │ │ ├── OptionCpuFeaturesInstall.h │ │ │ │ ├── OptionDmi.h │ │ │ │ ├── OptionDmiInstall.h │ │ │ │ ├── OptionFamily10hInstall.h │ │ │ │ ├── OptionFamily15hEarlySample.h │ │ │ │ ├── OptionFamily15hInstall.h │ │ │ │ ├── OptionFchInstall.h │ │ │ │ ├── OptionGfxRecovery.h │ │ │ │ ├── OptionGfxRecoveryInstall.h │ │ │ │ ├── OptionGnb.h │ │ │ │ ├── OptionGnbInstall.h │ │ │ │ ├── OptionHtInstall.h │ │ │ │ ├── OptionHwC1eInstall.h │ │ │ │ ├── OptionIdsInstall.h │ │ │ │ ├── OptionIoCstateInstall.h │ │ │ │ ├── OptionL3FeaturesInstall.h │ │ │ │ ├── OptionLowPwrPstateInstall.h │ │ │ │ ├── OptionMemory.h │ │ │ │ ├── OptionMemoryInstall.h │ │ │ │ ├── OptionMemoryRecovery.h │ │ │ │ ├── OptionMemoryRecoveryInstall.h │ │ │ │ ├── OptionMsgBasedC1eInstall.h │ │ │ │ ├── OptionMultiSocket.h │ │ │ │ ├── OptionMultiSocketInstall.h │ │ │ │ ├── OptionPreserveMailboxInstall.h │ │ │ │ ├── OptionPstate.h │ │ │ │ ├── OptionPstateHpcModeInstall.h │ │ │ │ ├── OptionPstateInstall.h │ │ │ │ ├── OptionS3ScriptInstall.h │ │ │ │ ├── OptionSlit.h │ │ │ │ ├── OptionSlitInstall.h │ │ │ │ ├── OptionSrat.h │ │ │ │ ├── OptionSratInstall.h │ │ │ │ ├── OptionSwC1eInstall.h │ │ │ │ ├── OptionWhea.h │ │ │ │ ├── OptionWheaInstall.h │ │ │ │ ├── Options.h │ │ │ │ ├── OptionsHt.h │ │ │ │ ├── OptionsPage.h │ │ │ │ ├── PlatformInstall.h │ │ │ │ ├── PlatformMemoryConfiguration.h │ │ │ │ ├── SanMarinoInstall.h │ │ │ │ ├── Topology.h │ │ │ │ └── gcc-intrin.h │ │ │ ├── Legacy │ │ │ │ └── Proc │ │ │ │ │ ├── Dispatcher.c │ │ │ │ │ ├── agesaCallouts.c │ │ │ │ │ └── hobTransfer.c │ │ │ ├── MainPage.h │ │ │ ├── Makefile.inc │ │ │ ├── Proc │ │ │ │ ├── CPU │ │ │ │ │ ├── Family │ │ │ │ │ │ ├── 0x10 │ │ │ │ │ │ │ ├── F10InitEarlyTable.c │ │ │ │ │ │ │ ├── F10IoCstate.c │ │ │ │ │ │ │ ├── F10MultiLinkPciTables.c │ │ │ │ │ │ │ ├── F10PackageType.h │ │ │ │ │ │ │ ├── F10PmAsymBoostInit.c │ │ │ │ │ │ │ ├── F10PmAsymBoostInit.h │ │ │ │ │ │ │ ├── F10PmDualPlaneOnlySupport.c │ │ │ │ │ │ │ ├── F10PmDualPlaneOnlySupport.h │ │ │ │ │ │ │ ├── F10PmNbCofVidInit.c │ │ │ │ │ │ │ ├── F10PmNbCofVidInit.h │ │ │ │ │ │ │ ├── F10PmNbPstateInit.c │ │ │ │ │ │ │ ├── F10PmNbPstateInit.h │ │ │ │ │ │ │ ├── F10SingleLinkPciTables.c │ │ │ │ │ │ │ ├── RevC │ │ │ │ │ │ │ │ ├── BL │ │ │ │ │ │ │ │ │ ├── F10BlCacheFlushOnHalt.c │ │ │ │ │ │ │ │ │ ├── F10BlEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10BlHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10BlLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10BlMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10BlMsrTables.c │ │ │ │ │ │ │ │ │ └── F10BlPciTables.c │ │ │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ │ │ ├── F10DaCacheFlushOnHalt.c │ │ │ │ │ │ │ │ │ ├── F10DaEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10DaHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10DaLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10DaMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10DaMsrTables.c │ │ │ │ │ │ │ │ │ └── F10DaPciTables.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch01000085.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c6.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c7.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c8.c │ │ │ │ │ │ │ │ ├── F10RevCHtPhyTables.c │ │ │ │ │ │ │ │ ├── F10RevCHwC1e.c │ │ │ │ │ │ │ │ ├── F10RevCMsrTables.c │ │ │ │ │ │ │ │ ├── F10RevCPciTables.c │ │ │ │ │ │ │ │ ├── F10RevCSwC1e.c │ │ │ │ │ │ │ │ ├── F10RevCUtilities.c │ │ │ │ │ │ │ │ └── RB │ │ │ │ │ │ │ │ │ ├── F10RbEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10RbHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10RbLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10RbMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10RbMsrTables.c │ │ │ │ │ │ │ │ │ └── F10RbPciTables.c │ │ │ │ │ │ │ ├── RevD │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000c5.c │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000d9.c │ │ │ │ │ │ │ │ ├── F10RevDL3Features.c │ │ │ │ │ │ │ │ ├── F10RevDMsgBasedC1e.c │ │ │ │ │ │ │ │ ├── F10RevDUtilities.c │ │ │ │ │ │ │ │ └── HY │ │ │ │ │ │ │ │ │ ├── F10HyEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10HyHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10HyInitEarlyTable.c │ │ │ │ │ │ │ │ │ ├── F10HyLogicalIdTables.c │ │ │ │ │ │ │ │ │ ├── F10HyMicrocodePatchTables.c │ │ │ │ │ │ │ │ │ ├── F10HyMsrTables.c │ │ │ │ │ │ │ │ │ └── F10HyPciTables.c │ │ │ │ │ │ │ ├── RevE │ │ │ │ │ │ │ │ ├── F10MicrocodePatch010000bf.c │ │ │ │ │ │ │ │ ├── F10RevEHtPhyTables.c │ │ │ │ │ │ │ │ ├── F10RevEMsrTables.c │ │ │ │ │ │ │ │ ├── F10RevEPciTables.c │ │ │ │ │ │ │ │ ├── F10RevEUtilities.c │ │ │ │ │ │ │ │ └── PH │ │ │ │ │ │ │ │ │ ├── F10PhEquivalenceTable.c │ │ │ │ │ │ │ │ │ ├── F10PhHtPhyTables.c │ │ │ │ │ │ │ │ │ ├── F10PhLogicalIdTables.c │ │ │ │ │ │ │ │ │ └── F10PhMicrocodePatchTables.c │ │ │ │ │ │ │ ├── cpuCommonF10Utilities.c │ │ │ │ │ │ │ ├── cpuCommonF10Utilities.h │ │ │ │ │ │ │ ├── cpuF10BrandId.c │ │ │ │ │ │ │ ├── cpuF10BrandIdAm3.c │ │ │ │ │ │ │ ├── cpuF10BrandIdAsb2.c │ │ │ │ │ │ │ ├── cpuF10BrandIdC32.c │ │ │ │ │ │ │ ├── cpuF10BrandIdFr1207.c │ │ │ │ │ │ │ ├── cpuF10BrandIdG34.c │ │ │ │ │ │ │ ├── cpuF10BrandIdS1g3.c │ │ │ │ │ │ │ ├── cpuF10BrandIdS1g4.c │ │ │ │ │ │ │ ├── cpuF10CacheDefaults.c │ │ │ │ │ │ │ ├── cpuF10CacheFlushOnHalt.c │ │ │ │ │ │ │ ├── cpuF10Cpb.c │ │ │ │ │ │ │ ├── cpuF10Dmi.c │ │ │ │ │ │ │ ├── cpuF10EarlyInit.c │ │ │ │ │ │ │ ├── cpuF10EarlyInit.h │ │ │ │ │ │ │ ├── cpuF10FeatureLeveling.c │ │ │ │ │ │ │ ├── cpuF10FeatureLeveling.h │ │ │ │ │ │ │ ├── cpuF10HtPhyTables.c │ │ │ │ │ │ │ ├── cpuF10MsrTables.c │ │ │ │ │ │ │ ├── cpuF10PciTables.c │ │ │ │ │ │ │ ├── cpuF10PowerCheck.c │ │ │ │ │ │ │ ├── cpuF10PowerCheck.h │ │ │ │ │ │ │ ├── cpuF10PowerMgmt.h │ │ │ │ │ │ │ ├── cpuF10PowerMgmtSystemTables.c │ │ │ │ │ │ │ ├── cpuF10PowerPlane.c │ │ │ │ │ │ │ ├── cpuF10PowerPlane.h │ │ │ │ │ │ │ ├── cpuF10Pstate.c │ │ │ │ │ │ │ ├── cpuF10SoftwareThermal.c │ │ │ │ │ │ │ ├── cpuF10SoftwareThermal.h │ │ │ │ │ │ │ ├── cpuF10Utilities.c │ │ │ │ │ │ │ ├── cpuF10Utilities.h │ │ │ │ │ │ │ ├── cpuF10WheaInitDataTables.c │ │ │ │ │ │ │ └── cpuF10WorkaroundsTable.c │ │ │ │ │ │ ├── 0x15 │ │ │ │ │ │ │ ├── F15PackageType.h │ │ │ │ │ │ │ ├── F15PstateHpcMode.c │ │ │ │ │ │ │ ├── OR │ │ │ │ │ │ │ │ ├── F15OrC6State.c │ │ │ │ │ │ │ │ ├── F15OrCpb.c │ │ │ │ │ │ │ │ ├── F15OrEarlySamples.c │ │ │ │ │ │ │ │ ├── F15OrEquivalenceTable.c │ │ │ │ │ │ │ │ ├── F15OrHtPhyTables.c │ │ │ │ │ │ │ │ ├── F15OrInitEarlyTable.c │ │ │ │ │ │ │ │ ├── F15OrIoCstate.c │ │ │ │ │ │ │ │ ├── F15OrL3Features.c │ │ │ │ │ │ │ │ ├── F15OrLogicalIdTables.c │ │ │ │ │ │ │ │ ├── F15OrLowPwrPstate.c │ │ │ │ │ │ │ │ ├── F15OrMicrocodePatch06000425.c │ │ │ │ │ │ │ │ ├── F15OrMicrocodePatch0600050D_Enc.c │ │ │ │ │ │ │ │ ├── F15OrMicrocodePatch06000624_Enc.c │ │ │ │ │ │ │ │ ├── F15OrMicrocodePatchTables.c │ │ │ │ │ │ │ │ ├── F15OrMsgBasedC1e.c │ │ │ │ │ │ │ │ ├── F15OrMsrTables.c │ │ │ │ │ │ │ │ ├── F15OrMultiLinkPciTables.c │ │ │ │ │ │ │ │ ├── F15OrPciTables.c │ │ │ │ │ │ │ │ ├── F15OrPmNbCofVidInit.c │ │ │ │ │ │ │ │ ├── F15OrPmNbCofVidInit.h │ │ │ │ │ │ │ │ ├── F15OrPowerMgmtSystemTables.c │ │ │ │ │ │ │ │ ├── F15OrPowerPlane.c │ │ │ │ │ │ │ │ ├── F15OrPowerPlane.h │ │ │ │ │ │ │ │ ├── F15OrSharedMsrTable.c │ │ │ │ │ │ │ │ ├── F15OrSingleLinkPciTables.c │ │ │ │ │ │ │ │ ├── F15OrUtilities.c │ │ │ │ │ │ │ │ ├── F15OrUtilities.h │ │ │ │ │ │ │ │ ├── F15OrWorkaroundsTable.c │ │ │ │ │ │ │ │ ├── cpuF15OrCacheFlushOnHalt.c │ │ │ │ │ │ │ │ ├── cpuF15OrCoreAfterReset.c │ │ │ │ │ │ │ │ ├── cpuF15OrCoreAfterReset.h │ │ │ │ │ │ │ │ ├── cpuF15OrDmi.c │ │ │ │ │ │ │ │ ├── cpuF15OrFeatureLeveling.c │ │ │ │ │ │ │ │ ├── cpuF15OrFeatureLeveling.h │ │ │ │ │ │ │ │ ├── cpuF15OrNbAfterReset.c │ │ │ │ │ │ │ │ ├── cpuF15OrNbAfterReset.h │ │ │ │ │ │ │ │ ├── cpuF15OrPowerMgmt.h │ │ │ │ │ │ │ │ ├── cpuF15OrPstate.c │ │ │ │ │ │ │ │ ├── cpuF15OrSoftwareThermal.c │ │ │ │ │ │ │ │ └── cpuF15OrSoftwareThermal.h │ │ │ │ │ │ │ ├── cpuCommonF15Utilities.c │ │ │ │ │ │ │ ├── cpuCommonF15Utilities.h │ │ │ │ │ │ │ ├── cpuF15Apm.c │ │ │ │ │ │ │ ├── cpuF15BrandId.c │ │ │ │ │ │ │ ├── cpuF15CacheDefaults.c │ │ │ │ │ │ │ ├── cpuF15Dmi.c │ │ │ │ │ │ │ ├── cpuF15Dmi.h │ │ │ │ │ │ │ ├── cpuF15MsrTables.c │ │ │ │ │ │ │ ├── cpuF15PciTables.c │ │ │ │ │ │ │ ├── cpuF15PowerCheck.c │ │ │ │ │ │ │ ├── cpuF15PowerCheck.h │ │ │ │ │ │ │ ├── cpuF15PowerMgmt.h │ │ │ │ │ │ │ ├── cpuF15Utilities.c │ │ │ │ │ │ │ ├── cpuF15Utilities.h │ │ │ │ │ │ │ └── cpuF15WheaInitDataTables.c │ │ │ │ │ │ └── cpuFamRegisters.h │ │ │ │ │ ├── Feature │ │ │ │ │ │ ├── PreserveMailbox.c │ │ │ │ │ │ ├── PreserveMailbox.h │ │ │ │ │ │ ├── cpuApm.c │ │ │ │ │ │ ├── cpuApm.h │ │ │ │ │ │ ├── cpuC6State.c │ │ │ │ │ │ ├── cpuC6State.h │ │ │ │ │ │ ├── cpuCacheFlushOnHalt.c │ │ │ │ │ │ ├── cpuCacheInit.c │ │ │ │ │ │ ├── cpuCacheInit.h │ │ │ │ │ │ ├── cpuCoreLeveling.c │ │ │ │ │ │ ├── cpuCpb.c │ │ │ │ │ │ ├── cpuCpb.h │ │ │ │ │ │ ├── cpuDmi.c │ │ │ │ │ │ ├── cpuFeatureLeveling.c │ │ │ │ │ │ ├── cpuFeatures.c │ │ │ │ │ │ ├── cpuFeatures.h │ │ │ │ │ │ ├── cpuHwC1e.c │ │ │ │ │ │ ├── cpuHwC1e.h │ │ │ │ │ │ ├── cpuIoCstate.c │ │ │ │ │ │ ├── cpuIoCstate.h │ │ │ │ │ │ ├── cpuL3Features.c │ │ │ │ │ │ ├── cpuL3Features.h │ │ │ │ │ │ ├── cpuLowPwrPstate.c │ │ │ │ │ │ ├── cpuLowPwrPstate.h │ │ │ │ │ │ ├── cpuMsgBasedC1e.c │ │ │ │ │ │ ├── cpuMsgBasedC1e.h │ │ │ │ │ │ ├── cpuPstateGather.c │ │ │ │ │ │ ├── cpuPstateHpcMode.c │ │ │ │ │ │ ├── cpuPstateHpcMode.h │ │ │ │ │ │ ├── cpuPstateLeveling.c │ │ │ │ │ │ ├── cpuPstateTables.c │ │ │ │ │ │ ├── cpuPstateTables.h │ │ │ │ │ │ ├── cpuSlit.c │ │ │ │ │ │ ├── cpuSrat.c │ │ │ │ │ │ ├── cpuSwC1e.c │ │ │ │ │ │ ├── cpuSwC1e.h │ │ │ │ │ │ └── cpuWhea.c │ │ │ │ │ ├── S3.c │ │ │ │ │ ├── S3.h │ │ │ │ │ ├── Table.c │ │ │ │ │ ├── Table.h │ │ │ │ │ ├── cahalt.c │ │ │ │ │ ├── cahaltasm.S │ │ │ │ │ ├── cpuApicUtilities.c │ │ │ │ │ ├── cpuApicUtilities.h │ │ │ │ │ ├── cpuBist.c │ │ │ │ │ ├── cpuBrandId.c │ │ │ │ │ ├── cpuEarlyInit.c │ │ │ │ │ ├── cpuEarlyInit.h │ │ │ │ │ ├── cpuEnvInit.h │ │ │ │ │ ├── cpuEventLog.c │ │ │ │ │ ├── cpuFamilyTranslation.c │ │ │ │ │ ├── cpuFamilyTranslation.h │ │ │ │ │ ├── cpuGeneralServices.c │ │ │ │ │ ├── cpuInitEarlyTable.c │ │ │ │ │ ├── cpuLateInit.c │ │ │ │ │ ├── cpuLateInit.h │ │ │ │ │ ├── cpuMicrocodePatch.c │ │ │ │ │ ├── cpuPage.h │ │ │ │ │ ├── cpuPostInit.c │ │ │ │ │ ├── cpuPostInit.h │ │ │ │ │ ├── cpuPowerMgmt.c │ │ │ │ │ ├── cpuPowerMgmtMultiSocket.c │ │ │ │ │ ├── cpuPowerMgmtMultiSocket.h │ │ │ │ │ ├── cpuPowerMgmtSingleSocket.c │ │ │ │ │ ├── cpuPowerMgmtSingleSocket.h │ │ │ │ │ ├── cpuPowerMgmtSystemTables.h │ │ │ │ │ ├── cpuRegisters.h │ │ │ │ │ ├── cpuServices.h │ │ │ │ │ ├── cpuWarmReset.c │ │ │ │ │ ├── heapManager.c │ │ │ │ │ └── heapManager.h │ │ │ │ ├── Common │ │ │ │ │ ├── AmdFch.h │ │ │ │ │ ├── AmdInitEarly.c │ │ │ │ │ ├── AmdInitEnv.c │ │ │ │ │ ├── AmdInitLate.c │ │ │ │ │ ├── AmdInitMid.c │ │ │ │ │ ├── AmdInitPost.c │ │ │ │ │ ├── AmdInitRecovery.c │ │ │ │ │ ├── AmdInitReset.c │ │ │ │ │ ├── AmdInitResume.c │ │ │ │ │ ├── AmdLateRunApTask.c │ │ │ │ │ ├── AmdS3LateRestore.c │ │ │ │ │ ├── AmdS3Save.c │ │ │ │ │ ├── CommonInits.c │ │ │ │ │ ├── CommonInits.h │ │ │ │ │ ├── CommonPage.h │ │ │ │ │ ├── CommonReturns.c │ │ │ │ │ ├── CreateStruct.c │ │ │ │ │ ├── CreateStruct.h │ │ │ │ │ ├── S3RestoreState.c │ │ │ │ │ ├── S3SaveState.c │ │ │ │ │ └── S3SaveState.h │ │ │ │ ├── HT │ │ │ │ │ ├── Fam10 │ │ │ │ │ │ ├── htNbCoherentFam10.c │ │ │ │ │ │ ├── htNbCoherentFam10.h │ │ │ │ │ │ ├── htNbFam10.c │ │ │ │ │ │ ├── htNbNonCoherentFam10.c │ │ │ │ │ │ ├── htNbNonCoherentFam10.h │ │ │ │ │ │ ├── htNbOptimizationFam10.c │ │ │ │ │ │ ├── htNbOptimizationFam10.h │ │ │ │ │ │ ├── htNbSystemFam10.c │ │ │ │ │ │ ├── htNbSystemFam10.h │ │ │ │ │ │ ├── htNbUtilitiesFam10.c │ │ │ │ │ │ └── htNbUtilitiesFam10.h │ │ │ │ │ ├── Fam15 │ │ │ │ │ │ ├── htNbCoherentFam15.c │ │ │ │ │ │ ├── htNbCoherentFam15.h │ │ │ │ │ │ ├── htNbFam15.c │ │ │ │ │ │ ├── htNbNonCoherentFam15.c │ │ │ │ │ │ ├── htNbNonCoherentFam15.h │ │ │ │ │ │ ├── htNbOptimizationFam15.c │ │ │ │ │ │ ├── htNbOptimizationFam15.h │ │ │ │ │ │ ├── htNbSystemFam15.c │ │ │ │ │ │ ├── htNbSystemFam15.h │ │ │ │ │ │ ├── htNbUtilitiesFam15.c │ │ │ │ │ │ └── htNbUtilitiesFam15.h │ │ │ │ │ ├── Features │ │ │ │ │ │ ├── htFeatDynamicDiscovery.c │ │ │ │ │ │ ├── htFeatDynamicDiscovery.h │ │ │ │ │ │ ├── htFeatGanging.c │ │ │ │ │ │ ├── htFeatGanging.h │ │ │ │ │ │ ├── htFeatNoncoherent.c │ │ │ │ │ │ ├── htFeatNoncoherent.h │ │ │ │ │ │ ├── htFeatOptimization.c │ │ │ │ │ │ ├── htFeatOptimization.h │ │ │ │ │ │ ├── htFeatRouting.c │ │ │ │ │ │ ├── htFeatRouting.h │ │ │ │ │ │ ├── htFeatSets.c │ │ │ │ │ │ ├── htFeatSublinks.c │ │ │ │ │ │ ├── htFeatSublinks.h │ │ │ │ │ │ ├── htFeatTrafficDistribution.c │ │ │ │ │ │ ├── htFeatTrafficDistribution.h │ │ │ │ │ │ └── htIds.c │ │ │ │ │ ├── NbCommon │ │ │ │ │ │ ├── htNbCoherent.c │ │ │ │ │ │ ├── htNbCoherent.h │ │ │ │ │ │ ├── htNbNonCoherent.c │ │ │ │ │ │ ├── htNbNonCoherent.h │ │ │ │ │ │ ├── htNbOptimization.c │ │ │ │ │ │ ├── htNbOptimization.h │ │ │ │ │ │ ├── htNbUtilities.c │ │ │ │ │ │ └── htNbUtilities.h │ │ │ │ │ ├── htFeat.c │ │ │ │ │ ├── htFeat.h │ │ │ │ │ ├── htGraph.h │ │ │ │ │ ├── htGraph │ │ │ │ │ │ ├── htGraph.c │ │ │ │ │ │ ├── htGraph1.c │ │ │ │ │ │ ├── htGraph2.c │ │ │ │ │ │ ├── htGraph3Line.c │ │ │ │ │ │ ├── htGraph3Triangle.c │ │ │ │ │ │ ├── htGraph4Degenerate.c │ │ │ │ │ │ ├── htGraph4FullyConnected.c │ │ │ │ │ │ ├── htGraph4Kite.c │ │ │ │ │ │ ├── htGraph4Line.c │ │ │ │ │ │ ├── htGraph4Square.c │ │ │ │ │ │ ├── htGraph4Star.c │ │ │ │ │ │ ├── htGraph5FullyConnected.c │ │ │ │ │ │ ├── htGraph5TwistedLadder.c │ │ │ │ │ │ ├── htGraph6DoubloonLower.c │ │ │ │ │ │ ├── htGraph6DoubloonUpper.c │ │ │ │ │ │ ├── htGraph6FullyConnected.c │ │ │ │ │ │ ├── htGraph6TwinTriangles.c │ │ │ │ │ │ ├── htGraph6TwistedLadder.c │ │ │ │ │ │ ├── htGraph7FullyConnected.c │ │ │ │ │ │ ├── htGraph7TwistedLadder.c │ │ │ │ │ │ ├── htGraph8DoubloonM.c │ │ │ │ │ │ ├── htGraph8FullyConnected.c │ │ │ │ │ │ ├── htGraph8Ladder.c │ │ │ │ │ │ ├── htGraph8TwinFullyFourWays.c │ │ │ │ │ │ └── htGraph8TwistedLadder.c │ │ │ │ │ ├── htInterface.c │ │ │ │ │ ├── htInterface.h │ │ │ │ │ ├── htInterfaceCoherent.c │ │ │ │ │ ├── htInterfaceCoherent.h │ │ │ │ │ ├── htInterfaceGeneral.c │ │ │ │ │ ├── htInterfaceGeneral.h │ │ │ │ │ ├── htInterfaceNonCoherent.c │ │ │ │ │ ├── htInterfaceNonCoherent.h │ │ │ │ │ ├── htMain.c │ │ │ │ │ ├── htNb.c │ │ │ │ │ ├── htNb.h │ │ │ │ │ ├── htNbCommonHardware.h │ │ │ │ │ ├── htNotify.c │ │ │ │ │ ├── htNotify.h │ │ │ │ │ ├── htPage.h │ │ │ │ │ └── htTopologies.h │ │ │ │ ├── IDS │ │ │ │ │ ├── IdsLib.h │ │ │ │ │ ├── IdsPage.h │ │ │ │ │ └── OptionsIds.h │ │ │ │ ├── Mem │ │ │ │ │ ├── Ardk │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── marc32_3.c │ │ │ │ │ │ │ └── mauc32_3.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── masda2.c │ │ │ │ │ │ │ ├── masda3.c │ │ │ │ │ │ │ └── mauda3.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mardr2.c │ │ │ │ │ │ │ ├── mardr3.c │ │ │ │ │ │ │ └── maudr3.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── marhy3.c │ │ │ │ │ │ │ └── mauhy3.c │ │ │ │ │ │ ├── OR │ │ │ │ │ │ │ ├── maror3.c │ │ │ │ │ │ │ └── mauor3.c │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ ├── masph3.c │ │ │ │ │ │ │ └── mauPh3.c │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ ├── masRb3.c │ │ │ │ │ │ │ └── mauRb3.c │ │ │ │ │ │ └── ma.c │ │ │ │ │ ├── Feat │ │ │ │ │ │ ├── CHINTLV │ │ │ │ │ │ │ ├── mfchi.c │ │ │ │ │ │ │ └── mfchi.h │ │ │ │ │ │ ├── CSINTLV │ │ │ │ │ │ │ ├── mfcsi.c │ │ │ │ │ │ │ └── mfcsi.h │ │ │ │ │ │ ├── DMI │ │ │ │ │ │ │ └── mfDMI.c │ │ │ │ │ │ ├── ECC │ │ │ │ │ │ │ ├── mfecc.c │ │ │ │ │ │ │ ├── mfecc.h │ │ │ │ │ │ │ └── mfemp.c │ │ │ │ │ │ ├── EXCLUDIMM │ │ │ │ │ │ │ └── mfdimmexclud.c │ │ │ │ │ │ ├── IDENDIMM │ │ │ │ │ │ │ ├── mfidendimm.c │ │ │ │ │ │ │ └── mfidendimm.h │ │ │ │ │ │ ├── INTLVRN │ │ │ │ │ │ │ ├── mfintlvrn.c │ │ │ │ │ │ │ └── mfintlvrn.h │ │ │ │ │ │ ├── LVDDR3 │ │ │ │ │ │ │ ├── mflvddr3.c │ │ │ │ │ │ │ └── mflvddr3.h │ │ │ │ │ │ ├── MEMCLR │ │ │ │ │ │ │ └── mfmemclr.c │ │ │ │ │ │ ├── NDINTLV │ │ │ │ │ │ │ ├── mfndi.c │ │ │ │ │ │ │ └── mfndi.h │ │ │ │ │ │ ├── ODTHERMAL │ │ │ │ │ │ │ ├── mfodthermal.c │ │ │ │ │ │ │ └── mfodthermal.h │ │ │ │ │ │ ├── OLSPARE │ │ │ │ │ │ │ ├── mfspr.c │ │ │ │ │ │ │ └── mfspr.h │ │ │ │ │ │ ├── PARTRN │ │ │ │ │ │ │ ├── mfParallelTraining.c │ │ │ │ │ │ │ └── mfStandardTraining.c │ │ │ │ │ │ ├── S3 │ │ │ │ │ │ │ └── mfs3.c │ │ │ │ │ │ └── TABLE │ │ │ │ │ │ │ └── mftds.c │ │ │ │ │ ├── Main │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ └── mmflowC32.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ └── mmflowda.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ └── mmflowdr.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ └── mmflowhy.c │ │ │ │ │ │ ├── OR │ │ │ │ │ │ │ └── mmflowor.c │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ └── mmflowPh.c │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ └── mmflowRb.c │ │ │ │ │ │ ├── mdef.c │ │ │ │ │ │ ├── merrhdl.c │ │ │ │ │ │ ├── minit.c │ │ │ │ │ │ ├── mm.c │ │ │ │ │ │ ├── mmConditionalPso.c │ │ │ │ │ │ ├── mmEcc.c │ │ │ │ │ │ ├── mmExcludeDimm.c │ │ │ │ │ │ ├── mmLvDdr3.c │ │ │ │ │ │ ├── mmLvDdr3.h │ │ │ │ │ │ ├── mmMemClr.c │ │ │ │ │ │ ├── mmMemRestore.c │ │ │ │ │ │ ├── mmNodeInterleave.c │ │ │ │ │ │ ├── mmOnlineSpare.c │ │ │ │ │ │ ├── mmParallelTraining.c │ │ │ │ │ │ ├── mmStandardTraining.c │ │ │ │ │ │ ├── mmUmaAlloc.c │ │ │ │ │ │ ├── mmflow.c │ │ │ │ │ │ ├── mu.c │ │ │ │ │ │ └── muc.c │ │ │ │ │ ├── NB │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── mnParTrainc32.c │ │ │ │ │ │ │ ├── mnS3c32.c │ │ │ │ │ │ │ ├── mnS3c32.h │ │ │ │ │ │ │ ├── mnc32.c │ │ │ │ │ │ │ ├── mnc32.h │ │ │ │ │ │ │ ├── mndctc32.c │ │ │ │ │ │ │ ├── mnflowc32.c │ │ │ │ │ │ │ ├── mnidendimmc32.c │ │ │ │ │ │ │ ├── mnmctc32.c │ │ │ │ │ │ │ ├── mnotc32.c │ │ │ │ │ │ │ ├── mnphyc32.c │ │ │ │ │ │ │ ├── mnprotoc32.c │ │ │ │ │ │ │ └── mnregc32.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── mnParTrainDa.c │ │ │ │ │ │ │ ├── mnS3da.c │ │ │ │ │ │ │ ├── mnS3da.h │ │ │ │ │ │ │ ├── mnda.c │ │ │ │ │ │ │ ├── mnda.h │ │ │ │ │ │ │ ├── mndctda.c │ │ │ │ │ │ │ ├── mnflowda.c │ │ │ │ │ │ │ ├── mnidendimmda.c │ │ │ │ │ │ │ ├── mnmctda.c │ │ │ │ │ │ │ ├── mnotda.c │ │ │ │ │ │ │ ├── mnprotoda.c │ │ │ │ │ │ │ └── mnregda.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mnParTrainDr.c │ │ │ │ │ │ │ ├── mnS3dr.c │ │ │ │ │ │ │ ├── mnS3dr.h │ │ │ │ │ │ │ ├── mndctdr.c │ │ │ │ │ │ │ ├── mndr.c │ │ │ │ │ │ │ ├── mndr.h │ │ │ │ │ │ │ ├── mnflowdr.c │ │ │ │ │ │ │ ├── mnidendimmdr.c │ │ │ │ │ │ │ ├── mnmctdr.c │ │ │ │ │ │ │ ├── mnotdr.c │ │ │ │ │ │ │ ├── mnprotodr.c │ │ │ │ │ │ │ └── mnregdr.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── mnParTrainHy.c │ │ │ │ │ │ │ ├── mnS3hy.c │ │ │ │ │ │ │ ├── mnS3hy.h │ │ │ │ │ │ │ ├── mndcthy.c │ │ │ │ │ │ │ ├── mnflowhy.c │ │ │ │ │ │ │ ├── mnhy.c │ │ │ │ │ │ │ ├── mnhy.h │ │ │ │ │ │ │ ├── mnidendimmhy.c │ │ │ │ │ │ │ ├── mnmcthy.c │ │ │ │ │ │ │ ├── mnothy.c │ │ │ │ │ │ │ ├── mnphyhy.c │ │ │ │ │ │ │ ├── mnprotohy.c │ │ │ │ │ │ │ └── mnreghy.c │ │ │ │ │ │ ├── OR │ │ │ │ │ │ │ ├── mnS3or.h │ │ │ │ │ │ │ ├── mndctor.c │ │ │ │ │ │ │ ├── mnflowor.c │ │ │ │ │ │ │ ├── mnidendimmor.c │ │ │ │ │ │ │ ├── mnmctor.c │ │ │ │ │ │ │ ├── mnor.c │ │ │ │ │ │ │ ├── mnor.h │ │ │ │ │ │ │ ├── mnotor.c │ │ │ │ │ │ │ ├── mnpartrainor.c │ │ │ │ │ │ │ ├── mnphyor.c │ │ │ │ │ │ │ ├── mnprotoor.c │ │ │ │ │ │ │ ├── mnregor.c │ │ │ │ │ │ │ └── mns3or.c │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ ├── mnPh.c │ │ │ │ │ │ │ ├── mnPh.h │ │ │ │ │ │ │ ├── mnS3Ph.c │ │ │ │ │ │ │ ├── mnS3Ph.h │ │ │ │ │ │ │ ├── mnflowPh.c │ │ │ │ │ │ │ ├── mnidendimmPh.c │ │ │ │ │ │ │ └── mnmctPh.c │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ ├── mnRb.c │ │ │ │ │ │ │ ├── mnRb.h │ │ │ │ │ │ │ ├── mnS3Rb.c │ │ │ │ │ │ │ ├── mnS3Rb.h │ │ │ │ │ │ │ ├── mnflowRb.c │ │ │ │ │ │ │ └── mnidendimmRb.c │ │ │ │ │ │ ├── mn.c │ │ │ │ │ │ ├── mnS3.c │ │ │ │ │ │ ├── mndct.c │ │ │ │ │ │ ├── mnfeat.c │ │ │ │ │ │ ├── mnflow.c │ │ │ │ │ │ ├── mnmct.c │ │ │ │ │ │ ├── mnphy.c │ │ │ │ │ │ ├── mnreg.c │ │ │ │ │ │ ├── mntrain2.c │ │ │ │ │ │ └── mntrain3.c │ │ │ │ │ ├── Ps │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── mprc32_3.c │ │ │ │ │ │ │ └── mpuc32_3.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── mpsda2.c │ │ │ │ │ │ │ ├── mpsda3.c │ │ │ │ │ │ │ └── mpuda3.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mprdr2.c │ │ │ │ │ │ │ ├── mprdr3.c │ │ │ │ │ │ │ ├── mpsdr3.c │ │ │ │ │ │ │ ├── mpudr2.c │ │ │ │ │ │ │ └── mpudr3.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── mprhy3.c │ │ │ │ │ │ │ ├── mpshy3.c │ │ │ │ │ │ │ └── mpuhy3.c │ │ │ │ │ │ ├── OR │ │ │ │ │ │ │ ├── AM3 │ │ │ │ │ │ │ │ ├── mpSorA3.c │ │ │ │ │ │ │ │ └── mpUorA3.c │ │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ │ ├── mpLorC3.c │ │ │ │ │ │ │ │ ├── mpRorC3.c │ │ │ │ │ │ │ │ └── mpUorC3.c │ │ │ │ │ │ │ ├── G34 │ │ │ │ │ │ │ │ ├── mpLorG3.c │ │ │ │ │ │ │ │ ├── mpRorG3.c │ │ │ │ │ │ │ │ └── mpUorG3.c │ │ │ │ │ │ │ └── mpor3.c │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ ├── mpsph3.c │ │ │ │ │ │ │ └── mpuph3.c │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ ├── mpsRb3.c │ │ │ │ │ │ │ └── mpuRb3.c │ │ │ │ │ │ ├── mp.c │ │ │ │ │ │ ├── mplribt.c │ │ │ │ │ │ ├── mplrnlr.c │ │ │ │ │ │ ├── mplrnpr.c │ │ │ │ │ │ ├── mpmaxfreq.c │ │ │ │ │ │ ├── mpmr0.c │ │ │ │ │ │ ├── mpodtpat.c │ │ │ │ │ │ ├── mprc10opspd.c │ │ │ │ │ │ ├── mprc2ibt.c │ │ │ │ │ │ ├── mprtt.c │ │ │ │ │ │ ├── mps2d.c │ │ │ │ │ │ ├── mpsao.c │ │ │ │ │ │ └── mpseeds.c │ │ │ │ │ ├── Tech │ │ │ │ │ │ ├── DDR2 │ │ │ │ │ │ │ ├── mt2.c │ │ │ │ │ │ │ ├── mt2.h │ │ │ │ │ │ │ ├── mtot2.c │ │ │ │ │ │ │ ├── mtot2.h │ │ │ │ │ │ │ ├── mtspd2.c │ │ │ │ │ │ │ └── mtspd2.h │ │ │ │ │ │ ├── DDR3 │ │ │ │ │ │ │ ├── mt3.c │ │ │ │ │ │ │ ├── mt3.h │ │ │ │ │ │ │ ├── mtlrdimm3.c │ │ │ │ │ │ │ ├── mtlrdimm3.h │ │ │ │ │ │ │ ├── mtot3.c │ │ │ │ │ │ │ ├── mtot3.h │ │ │ │ │ │ │ ├── mtrci3.c │ │ │ │ │ │ │ ├── mtrci3.h │ │ │ │ │ │ │ ├── mtsdi3.c │ │ │ │ │ │ │ ├── mtsdi3.h │ │ │ │ │ │ │ ├── mtspd3.c │ │ │ │ │ │ │ ├── mtspd3.h │ │ │ │ │ │ │ ├── mttecc3.c │ │ │ │ │ │ │ └── mttwl3.c │ │ │ │ │ │ ├── mt.c │ │ │ │ │ │ ├── mthdi.c │ │ │ │ │ │ ├── mttEdgeDetect.c │ │ │ │ │ │ ├── mttEdgeDetect.h │ │ │ │ │ │ ├── mttdimbt.c │ │ │ │ │ │ ├── mttecc.c │ │ │ │ │ │ ├── mtthrc.c │ │ │ │ │ │ ├── mtthrcSeedTrain.c │ │ │ │ │ │ ├── mttml.c │ │ │ │ │ │ ├── mttoptsrc.c │ │ │ │ │ │ └── mttsrc.c │ │ │ │ │ ├── ma.h │ │ │ │ │ ├── memPage.h │ │ │ │ │ ├── merrhdl.h │ │ │ │ │ ├── mfParallelTraining.h │ │ │ │ │ ├── mfStandardTraining.h │ │ │ │ │ ├── mfmemclr.h │ │ │ │ │ ├── mfs3.h │ │ │ │ │ ├── mftds.h │ │ │ │ │ ├── mm.h │ │ │ │ │ ├── mn.h │ │ │ │ │ ├── mp.h │ │ │ │ │ ├── mport.h │ │ │ │ │ ├── mt.h │ │ │ │ │ └── mu.h │ │ │ │ └── Recovery │ │ │ │ │ ├── CPU │ │ │ │ │ ├── cpuRecovery.c │ │ │ │ │ └── cpuRecovery.h │ │ │ │ │ ├── HT │ │ │ │ │ ├── htInitRecovery.c │ │ │ │ │ └── htInitReset.c │ │ │ │ │ ├── Mem │ │ │ │ │ ├── NB │ │ │ │ │ │ ├── C32 │ │ │ │ │ │ │ ├── mrnc32.c │ │ │ │ │ │ │ ├── mrnc32.h │ │ │ │ │ │ │ ├── mrnmctc32.c │ │ │ │ │ │ │ └── mrnprotoc32.c │ │ │ │ │ │ ├── DA │ │ │ │ │ │ │ ├── mrnda.c │ │ │ │ │ │ │ ├── mrnda.h │ │ │ │ │ │ │ └── mrnmctda.c │ │ │ │ │ │ ├── DR │ │ │ │ │ │ │ ├── mrndr.c │ │ │ │ │ │ │ ├── mrndr.h │ │ │ │ │ │ │ └── mrnmctdr.c │ │ │ │ │ │ ├── HY │ │ │ │ │ │ │ ├── mrndcthy.c │ │ │ │ │ │ │ ├── mrnhy.c │ │ │ │ │ │ │ ├── mrnhy.h │ │ │ │ │ │ │ ├── mrnmcthy.c │ │ │ │ │ │ │ └── mrnprotohy.c │ │ │ │ │ │ ├── OR │ │ │ │ │ │ │ ├── mrndctor.c │ │ │ │ │ │ │ ├── mrnmctor.c │ │ │ │ │ │ │ ├── mrnor.c │ │ │ │ │ │ │ ├── mrnor.h │ │ │ │ │ │ │ └── mrnprotoor.c │ │ │ │ │ │ ├── PH │ │ │ │ │ │ │ ├── mrnPh.c │ │ │ │ │ │ │ └── mrnPh.h │ │ │ │ │ │ ├── RB │ │ │ │ │ │ │ ├── mrnRb.c │ │ │ │ │ │ │ └── mrnRb.h │ │ │ │ │ │ ├── mrn.c │ │ │ │ │ │ ├── mrndct.c │ │ │ │ │ │ ├── mrnmct.c │ │ │ │ │ │ └── mrntrain3.c │ │ │ │ │ ├── Ps │ │ │ │ │ │ ├── mrp.c │ │ │ │ │ │ ├── mrplribt.c │ │ │ │ │ │ ├── mrplrnlr.c │ │ │ │ │ │ ├── mrplrnpr.c │ │ │ │ │ │ ├── mrpmr0.c │ │ │ │ │ │ ├── mrpodtpat.c │ │ │ │ │ │ ├── mrprc10opspd.c │ │ │ │ │ │ ├── mrprc2ibt.c │ │ │ │ │ │ ├── mrprtt.c │ │ │ │ │ │ └── mrpsao.c │ │ │ │ │ ├── Tech │ │ │ │ │ │ ├── DDR3 │ │ │ │ │ │ │ ├── mrt3.c │ │ │ │ │ │ │ ├── mrtrci3.c │ │ │ │ │ │ │ ├── mrtsdi3.c │ │ │ │ │ │ │ ├── mrtspd3.c │ │ │ │ │ │ │ ├── mrtspd3.h │ │ │ │ │ │ │ └── mrttwl3.c │ │ │ │ │ │ ├── mrtthrc.c │ │ │ │ │ │ ├── mrtthrcSeedTrain.c │ │ │ │ │ │ ├── mrttpos.c │ │ │ │ │ │ └── mrttsrc.c │ │ │ │ │ ├── mrdef.c │ │ │ │ │ ├── mrinit.c │ │ │ │ │ ├── mrm.c │ │ │ │ │ ├── mrport.h │ │ │ │ │ ├── mrt3.h │ │ │ │ │ ├── mru.h │ │ │ │ │ └── mruc.c │ │ │ │ │ └── recoveryPage.h │ │ │ ├── errno.h │ │ │ └── gcccar.inc │ │ ├── f15tn │ │ │ ├── AGESA.h │ │ │ ├── AMD.h │ │ │ ├── Dispatcher.h │ │ │ ├── Include │ │ │ │ ├── AdvancedApi.h │ │ │ │ ├── CommonReturns.h │ │ │ │ ├── Filecode.h │ │ │ │ ├── GeneralServices.h │ │ │ │ ├── GnbInterface.h │ │ │ │ ├── GnbPage.h │ │ │ │ ├── Ids.h │ │ │ │ ├── IdsHt.h │ │ │ │ ├── OptionApmInstall.h │ │ │ │ ├── OptionC6Install.h │ │ │ │ ├── OptionCpbInstall.h │ │ │ │ ├── OptionCpuCacheFlushOnHaltInstall.h │ │ │ │ ├── OptionCpuCoreLevelingInstall.h │ │ │ │ ├── OptionCpuFamiliesInstall.h │ │ │ │ ├── OptionCpuFeaturesInstall.h │ │ │ │ ├── OptionDmi.h │ │ │ │ ├── OptionDmiInstall.h │ │ │ │ ├── OptionFamily15hInstall.h │ │ │ │ ├── OptionFchInstall.h │ │ │ │ ├── OptionGfxRecovery.h │ │ │ │ ├── OptionGfxRecoveryInstall.h │ │ │ │ ├── OptionGnb.h │ │ │ │ ├── OptionGnbInstall.h │ │ │ │ ├── OptionHtInstall.h │ │ │ │ ├── OptionHtcInstall.h │ │ │ │ ├── OptionHwC1eInstall.h │ │ │ │ ├── OptionIdsInstall.h │ │ │ │ ├── OptionIoCstateInstall.h │ │ │ │ ├── OptionL3FeaturesInstall.h │ │ │ │ ├── OptionLowPwrPstateInstall.h │ │ │ │ ├── OptionMemory.h │ │ │ │ ├── OptionMemoryInstall.h │ │ │ │ ├── OptionMemoryRecovery.h │ │ │ │ ├── OptionMemoryRecoveryInstall.h │ │ │ │ ├── OptionMmioMapInstall.h │ │ │ │ ├── OptionMsgBasedC1eInstall.h │ │ │ │ ├── OptionMultiSocket.h │ │ │ │ ├── OptionMultiSocketInstall.h │ │ │ │ ├── OptionPreserveMailboxInstall.h │ │ │ │ ├── OptionPsiInstall.h │ │ │ │ ├── OptionPstate.h │ │ │ │ ├── OptionPstateHpcModeInstall.h │ │ │ │ ├── OptionPstateInstall.h │ │ │ │ ├── OptionS3ScriptInstall.h │ │ │ │ ├── OptionSlit.h │ │ │ │ ├── OptionSlitInstall.h │ │ │ │ ├── OptionSrat.h │ │ │ │ ├── OptionSratInstall.h │ │ │ │ ├── OptionSwC1eInstall.h │ │ │ │ ├── OptionWhea.h │ │ │ │ ├── OptionWheaInstall.h │ │ │ │ ├── Options.h │ │ │ │ ├── OptionsHt.h │ │ │ │ ├── OptionsPage.h │ │ │ │ ├── PlatformInstall.h │ │ │ │ ├── PlatformMemoryConfiguration.h │ │ │ │ ├── Topology.h │ │ │ │ └── gcc-intrin.h │ │ │ ├── Legacy │ │ │ │ └── Proc │ │ │ │ │ ├── Dispatcher.c │ │ │ │ │ ├── agesaCallouts.c │ │ │ │ │ └── hobTransfer.c │ │ │ ├── MainPage.h │ │ │ ├── Makefile.inc │ │ │ ├── Proc │ │ │ │ ├── CPU │ │ │ │ │ ├── Family │ │ │ │ │ │ ├── 0x15 │ │ │ │ │ │ │ ├── F15PstateHpcMode.c │ │ │ │ │ │ │ ├── TN │ │ │ │ │ │ │ │ ├── F15TnC6State.c │ │ │ │ │ │ │ │ ├── F15TnCpb.c │ │ │ │ │ │ │ │ ├── F15TnEquivalenceTable.c │ │ │ │ │ │ │ │ ├── F15TnInitEarlyTable.c │ │ │ │ │ │ │ │ ├── F15TnIoCstate.c │ │ │ │ │ │ │ │ ├── F15TnLogicalIdTables.c │ │ │ │ │ │ │ │ ├── F15TnMicrocodePatch0600110F_Enc.c │ │ │ │ │ │ │ │ ├── F15TnMicrocodePatchTables.c │ │ │ │ │ │ │ │ ├── F15TnMsrTables.c │ │ │ │ │ │ │ │ ├── F15TnPackageType.h │ │ │ │ │ │ │ │ ├── F15TnPciTables.c │ │ │ │ │ │ │ │ ├── F15TnPowerMgmtSystemTables.c │ │ │ │ │ │ │ │ ├── F15TnPowerPlane.c │ │ │ │ │ │ │ │ ├── F15TnPowerPlane.h │ │ │ │ │ │ │ │ ├── F15TnSharedMsrTable.c │ │ │ │ │ │ │ │ ├── F15TnUtilities.c │ │ │ │ │ │ │ │ ├── F15TnUtilities.h │ │ │ │ │ │ │ │ ├── cpuF15TnCacheFlushOnHalt.c │ │ │ │ │ │ │ │ ├── cpuF15TnCoreAfterReset.c │ │ │ │ │ │ │ │ ├── cpuF15TnCoreAfterReset.h │ │ │ │ │ │ │ │ ├── cpuF15TnDmi.c │ │ │ │ │ │ │ │ ├── cpuF15TnHtc.c │ │ │ │ │ │ │ │ ├── cpuF15TnNbAfterReset.c │ │ │ │ │ │ │ │ ├── cpuF15TnNbAfterReset.h │ │ │ │ │ │ │ │ ├── cpuF15TnPowerCheck.c │ │ │ │ │ │ │ │ ├── cpuF15TnPowerCheck.h │ │ │ │ │ │ │ │ ├── cpuF15TnPowerMgmt.h │ │ │ │ │ │ │ │ ├── cpuF15TnPsi.c │ │ │ │ │ │ │ │ └── cpuF15TnPstate.c │ │ │ │ │ │ │ ├── cpuCommonF15Utilities.c │ │ │ │ │ │ │ ├── cpuCommonF15Utilities.h │ │ │ │ │ │ │ ├── cpuF15Apm.c │ │ │ │ │ │ │ ├── cpuF15BrandId.c │ │ │ │ │ │ │ ├── cpuF15CacheDefaults.c │ │ │ │ │ │ │ ├── cpuF15Crat.c │ │ │ │ │ │ │ ├── cpuF15Dmi.c │ │ │ │ │ │ │ ├── cpuF15Dmi.h │ │ │ │ │ │ │ ├── cpuF15MmioMap.c │ │ │ │ │ │ │ ├── cpuF15MmioMap.h │ │ │ │ │ │ │ ├── cpuF15MsrTables.c │ │ │ │ │ │ │ ├── cpuF15PciTables.c │ │ │ │ │ │ │ ├── cpuF15PowerCheck.c │ │ │ │ │ │ │ ├── cpuF15PowerCheck.h │ │ │ │ │ │ │ ├── cpuF15PowerMgmt.h │ │ │ │ │ │ │ ├── cpuF15Utilities.c │ │ │ │ │ │ │ ├── cpuF15Utilities.h │ │ │ │ │ │ │ └── cpuF15WheaInitDataTables.c │ │ │ │ │ │ └── cpuFamRegisters.h │ │ │ │ │ ├── Feature │ │ │ │ │ │ ├── PreserveMailbox.c │ │ │ │ │ │ ├── PreserveMailbox.h │ │ │ │ │ │ ├── cpuApm.c │ │ │ │ │ │ ├── cpuApm.h │ │ │ │ │ │ ├── cpuC6State.c │ │ │ │ │ │ ├── cpuC6State.h │ │ │ │ │ │ ├── cpuCacheFlushOnHalt.c │ │ │ │ │ │ ├── cpuCacheInit.c │ │ │ │ │ │ ├── cpuCacheInit.h │ │ │ │ │ │ ├── cpuCdit.c │ │ │ │ │ │ ├── cpuCoreLeveling.c │ │ │ │ │ │ ├── cpuCpb.c │ │ │ │ │ │ ├── cpuCpb.h │ │ │ │ │ │ ├── cpuCrat.c │ │ │ │ │ │ ├── cpuCrat.h │ │ │ │ │ │ ├── cpuDmi.c │ │ │ │ │ │ ├── cpuFeatureLeveling.c │ │ │ │ │ │ ├── cpuFeatures.c │ │ │ │ │ │ ├── cpuFeatures.h │ │ │ │ │ │ ├── cpuHtc.c │ │ │ │ │ │ ├── cpuHtc.h │ │ │ │ │ │ ├── cpuHwC1e.c │ │ │ │ │ │ ├── cpuHwC1e.h │ │ │ │ │ │ ├── cpuIoCstate.c │ │ │ │ │ │ ├── cpuIoCstate.h │ │ │ │ │ │ ├── cpuL3Features.c │ │ │ │ │ │ ├── cpuL3Features.h │ │ │ │ │ │ ├── cpuLowPwrPstate.c │ │ │ │ │ │ ├── cpuLowPwrPstate.h │ │ │ │ │ │ ├── cpuMsgBasedC1e.c │ │ │ │ │ │ ├── cpuMsgBasedC1e.h │ │ │ │ │ │ ├── cpuPsi.c │ │ │ │ │ │ ├── cpuPsi.h │ │ │ │ │ │ ├── cpuPstateGather.c │ │ │ │ │ │ ├── cpuPstateHpcMode.c │ │ │ │ │ │ ├── cpuPstateHpcMode.h │ │ │ │ │ │ ├── cpuPstateLeveling.c │ │ │ │ │ │ ├── cpuPstateTables.c │ │ │ │ │ │ ├── cpuPstateTables.h │ │ │ │ │ │ ├── cpuSlit.c │ │ │ │ │ │ ├── cpuSrat.c │ │ │ │ │ │ ├── cpuSwC1e.c │ │ │ │ │ │ ├── cpuSwC1e.h │ │ │ │ │ │ └── cpuWhea.c │ │ │ │ │ ├── S3.c │ │ │ │ │ ├── S3.h │ │ │ │ │ ├── Table.c │ │ │ │ │ ├── Table.h │ │ │ │ │ ├── TableHt.c │ │ │ │ │ ├── cahalt.c │ │ │ │ │ ├── cahaltasm.S │ │ │ │ │ ├── cpuApicUtilities.c │ │ │ │ │ ├── cpuApicUtilities.h │ │ │ │ │ ├── cpuBist.c │ │ │ │ │ ├── cpuBrandId.c │ │ │ │ │ ├── cpuEarlyInit.c │ │ │ │ │ ├── cpuEarlyInit.h │ │ │ │ │ ├── cpuEnvInit.h │ │ │ │ │ ├── cpuEventLog.c │ │ │ │ │ ├── cpuFamilyTranslation.c │ │ │ │ │ ├── cpuFamilyTranslation.h │ │ │ │ │ ├── cpuGeneralServices.c │ │ │ │ │ ├── cpuInitEarlyTable.c │ │ │ │ │ ├── cpuLateInit.c │ │ │ │ │ ├── cpuLateInit.h │ │ │ │ │ ├── cpuMicrocodePatch.c │ │ │ │ │ ├── cpuPage.h │ │ │ │ │ ├── cpuPostInit.c │ │ │ │ │ ├── cpuPostInit.h │ │ │ │ │ ├── cpuPowerMgmt.c │ │ │ │ │ ├── cpuPowerMgmtMultiSocket.c │ │ │ │ │ ├── cpuPowerMgmtMultiSocket.h │ │ │ │ │ ├── cpuPowerMgmtSingleSocket.c │ │ │ │ │ ├── cpuPowerMgmtSingleSocket.h │ │ │ │ │ ├── cpuPowerMgmtSystemTables.h │ │ │ │ │ ├── cpuRegisters.h │ │ │ │ │ ├── cpuServices.h │ │ │ │ │ ├── cpuWarmReset.c │ │ │ │ │ ├── heapManager.c │ │ │ │ │ ├── heapManager.h │ │ │ │ │ ├── mmioMapManager.c │ │ │ │ │ └── mmioMapManager.h │ │ │ │ ├── Common │ │ │ │ │ ├── AmdFch.h │ │ │ │ │ ├── AmdInitEarly.c │ │ │ │ │ ├── AmdInitEnv.c │ │ │ │ │ ├── AmdInitLate.c │ │ │ │ │ ├── AmdInitMid.c │ │ │ │ │ ├── AmdInitPost.c │ │ │ │ │ ├── AmdInitRecovery.c │ │ │ │ │ ├── AmdInitReset.c │ │ │ │ │ ├── AmdInitResume.c │ │ │ │ │ ├── AmdLateRunApTask.c │ │ │ │ │ ├── AmdS3LateRestore.c │ │ │ │ │ ├── AmdS3Save.c │ │ │ │ │ ├── CommonInits.c │ │ │ │ │ ├── CommonInits.h │ │ │ │ │ ├── CommonPage.h │ │ │ │ │ ├── CommonReturns.c │ │ │ │ │ ├── CreateStruct.c │ │ │ │ │ ├── CreateStruct.h │ │ │ │ │ ├── S3RestoreState.c │ │ │ │ │ ├── S3SaveState.c │ │ │ │ │ └── S3SaveState.h │ │ │ │ ├── Fch │ │ │ │ │ ├── Azalia │ │ │ │ │ │ ├── AzaliaEnv.c │ │ │ │ │ │ ├── AzaliaLate.c │ │ │ │ │ │ ├── AzaliaMid.c │ │ │ │ │ │ └── AzaliaReset.c │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── AcpiLib.c │ │ │ │ │ │ ├── AcpiLib.h │ │ │ │ │ │ ├── FchBiosRamUsage.h │ │ │ │ │ │ ├── FchCommon.c │ │ │ │ │ │ ├── FchCommonCfg.h │ │ │ │ │ │ ├── FchCommonSmm.c │ │ │ │ │ │ ├── FchDef.h │ │ │ │ │ │ ├── FchLib.c │ │ │ │ │ │ ├── FchPeLib.c │ │ │ │ │ │ ├── MemLib.c │ │ │ │ │ │ └── PciLib.c │ │ │ │ │ ├── Fch.h │ │ │ │ │ ├── FchPage.h │ │ │ │ │ ├── FchPlatform.h │ │ │ │ │ ├── Gec │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── Hudson2GecEnvService.c │ │ │ │ │ │ │ │ └── Hudson2GecService.c │ │ │ │ │ │ ├── GecEnv.c │ │ │ │ │ │ ├── GecLate.c │ │ │ │ │ │ ├── GecMid.c │ │ │ │ │ │ └── GecReset.c │ │ │ │ │ ├── HwAcpi │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── Hudson2HwAcpiEnvService.c │ │ │ │ │ │ │ │ ├── Hudson2HwAcpiLateService.c │ │ │ │ │ │ │ │ ├── Hudson2HwAcpiMidService.c │ │ │ │ │ │ │ │ └── Hudson2SSService.c │ │ │ │ │ │ ├── HwAcpiEnv.c │ │ │ │ │ │ ├── HwAcpiLate.c │ │ │ │ │ │ ├── HwAcpiMid.c │ │ │ │ │ │ └── HwAcpiReset.c │ │ │ │ │ ├── Hwm │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── Hudson2HwmEnvService.c │ │ │ │ │ │ │ │ ├── Hudson2HwmLateService.c │ │ │ │ │ │ │ │ └── Hudson2HwmMidService.c │ │ │ │ │ │ ├── HwmEnv.c │ │ │ │ │ │ ├── HwmLate.c │ │ │ │ │ │ ├── HwmMid.c │ │ │ │ │ │ └── HwmReset.c │ │ │ │ │ ├── Ide │ │ │ │ │ │ ├── IdeEnv.c │ │ │ │ │ │ ├── IdeLate.c │ │ │ │ │ │ └── IdeMid.c │ │ │ │ │ ├── Imc │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ └── Hudson2ImcService.c │ │ │ │ │ │ ├── FchEcEnv.c │ │ │ │ │ │ ├── FchEcLate.c │ │ │ │ │ │ ├── FchEcMid.c │ │ │ │ │ │ ├── FchEcReset.c │ │ │ │ │ │ ├── ImcEnv.c │ │ │ │ │ │ ├── ImcLate.c │ │ │ │ │ │ ├── ImcLib.c │ │ │ │ │ │ ├── ImcMid.c │ │ │ │ │ │ └── ImcReset.c │ │ │ │ │ ├── Interface │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── EnvDefHudson2.c │ │ │ │ │ │ │ │ └── ResetDefHudson2.c │ │ │ │ │ │ ├── FchInitEnv.c │ │ │ │ │ │ ├── FchInitLate.c │ │ │ │ │ │ ├── FchInitMid.c │ │ │ │ │ │ ├── FchInitReset.c │ │ │ │ │ │ ├── FchInitS3.c │ │ │ │ │ │ ├── FchTaskLauncher.c │ │ │ │ │ │ ├── FchTaskLauncher.h │ │ │ │ │ │ ├── InitEnvDef.c │ │ │ │ │ │ └── InitResetDef.c │ │ │ │ │ ├── Ir │ │ │ │ │ │ ├── IrEnv.c │ │ │ │ │ │ ├── IrLate.c │ │ │ │ │ │ └── IrMid.c │ │ │ │ │ ├── Pcib │ │ │ │ │ │ ├── PcibEnv.c │ │ │ │ │ │ ├── PcibLate.c │ │ │ │ │ │ ├── PcibMid.c │ │ │ │ │ │ └── PcibReset.c │ │ │ │ │ ├── Pcie │ │ │ │ │ │ ├── AbEnv.c │ │ │ │ │ │ ├── AbLate.c │ │ │ │ │ │ ├── AbMid.c │ │ │ │ │ │ ├── AbReset.c │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── Hudson2AbEnvService.c │ │ │ │ │ │ │ │ ├── Hudson2AbResetService.c │ │ │ │ │ │ │ │ ├── Hudson2AbService.c │ │ │ │ │ │ │ │ ├── Hudson2GppResetService.c │ │ │ │ │ │ │ │ ├── Hudson2GppService.c │ │ │ │ │ │ │ │ ├── Hudson2PcieEnvService.c │ │ │ │ │ │ │ │ └── Hudson2PcieService.c │ │ │ │ │ │ ├── GppEnv.c │ │ │ │ │ │ ├── GppHp.c │ │ │ │ │ │ ├── GppLate.c │ │ │ │ │ │ ├── GppLib.c │ │ │ │ │ │ ├── GppMid.c │ │ │ │ │ │ ├── GppPortInit.c │ │ │ │ │ │ ├── GppReset.c │ │ │ │ │ │ ├── PcieEnv.c │ │ │ │ │ │ ├── PcieLate.c │ │ │ │ │ │ ├── PcieMid.c │ │ │ │ │ │ └── PcieReset.c │ │ │ │ │ ├── Sata │ │ │ │ │ │ ├── AhciEnv.c │ │ │ │ │ │ ├── AhciLate.c │ │ │ │ │ │ ├── AhciLib.c │ │ │ │ │ │ ├── AhciMid.c │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── Hudson2SataEnvService.c │ │ │ │ │ │ │ │ ├── Hudson2SataResetService.c │ │ │ │ │ │ │ │ └── Hudson2SataService.c │ │ │ │ │ │ ├── Ide2AhciEnv.c │ │ │ │ │ │ ├── Ide2AhciLate.c │ │ │ │ │ │ ├── Ide2AhciLib.c │ │ │ │ │ │ ├── Ide2AhciMid.c │ │ │ │ │ │ ├── RaidEnv.c │ │ │ │ │ │ ├── RaidLate.c │ │ │ │ │ │ ├── RaidLib.c │ │ │ │ │ │ ├── RaidMid.c │ │ │ │ │ │ ├── SataEnv.c │ │ │ │ │ │ ├── SataEnvLib.c │ │ │ │ │ │ ├── SataIdeEnv.c │ │ │ │ │ │ ├── SataIdeLate.c │ │ │ │ │ │ ├── SataIdeLib.c │ │ │ │ │ │ ├── SataIdeMid.c │ │ │ │ │ │ ├── SataLate.c │ │ │ │ │ │ ├── SataLib.c │ │ │ │ │ │ ├── SataMid.c │ │ │ │ │ │ └── SataReset.c │ │ │ │ │ ├── Sd │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── Hudson2SdEnvService.c │ │ │ │ │ │ │ │ ├── Hudson2SdResetService.c │ │ │ │ │ │ │ │ └── Hudson2SdService.c │ │ │ │ │ │ ├── SdEnv.c │ │ │ │ │ │ ├── SdLate.c │ │ │ │ │ │ └── SdMid.c │ │ │ │ │ ├── Spi │ │ │ │ │ │ ├── Family │ │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ │ ├── Hudson2LpcEnvService.c │ │ │ │ │ │ │ │ └── Hudson2LpcResetService.c │ │ │ │ │ │ ├── LpcEnv.c │ │ │ │ │ │ ├── LpcLate.c │ │ │ │ │ │ ├── LpcMid.c │ │ │ │ │ │ ├── LpcReset.c │ │ │ │ │ │ ├── SpiEnv.c │ │ │ │ │ │ ├── SpiLate.c │ │ │ │ │ │ ├── SpiMid.c │ │ │ │ │ │ └── SpiReset.c │ │ │ │ │ └── Usb │ │ │ │ │ │ ├── EhciEnv.c │ │ │ │ │ │ ├── EhciLate.c │ │ │ │ │ │ ├── EhciMid.c │ │ │ │ │ │ ├── EhciReset.c │ │ │ │ │ │ ├── Family │ │ │ │ │ │ └── Hudson2 │ │ │ │ │ │ │ ├── Hudson2EhciEnvService.c │ │ │ │ │ │ │ ├── Hudson2EhciLateService.c │ │ │ │ │ │ │ ├── Hudson2EhciMidService.c │ │ │ │ │ │ │ ├── Hudson2OhciEnvService.c │ │ │ │ │ │ │ ├── Hudson2OhciLateService.c │ │ │ │ │ │ │ ├── Hudson2OhciMidService.c │ │ │ │ │ │ │ ├── Hudson2XhciEnvService.c │ │ │ │ │ │ │ ├── Hudson2XhciLateService.c │ │ │ │ │ │ │ ├── Hudson2XhciMidService.c │ │ │ │ │ │ │ └── Hudson2XhciResetService.c │ │ │ │ │ │ ├── OhciEnv.c │ │ │ │ │ │ ├── OhciLate.c │ │ │ │ │ │ ├── OhciMid.c │ │ │ │ │ │ ├── OhciReset.c │ │ │ │ │ │ ├── UsbEnv.c │ │ │ │ │ │ ├── UsbLate.c │ │ │ │ │ │ ├── UsbMid.c │ │ │ │ │ │ ├── UsbReset.c │ │ │ │ │ │ ├── XhciEnv.c │ │ │ │ │ │ ├── XhciLate.c │ │ │ │ │ │ ├── XhciMid.c │ │ │ │ │ │ ├── XhciRecovery.c │ │ │ │ │ │ └── XhciReset.c │ │ │ │ ├── GNB │ │ │ │ │ ├── Common │ │ │ │ │ │ ├── Gnb.h │ │ │ │ │ │ ├── GnbFamServices.h │ │ │ │ │ │ ├── GnbFuseTable.h │ │ │ │ │ │ ├── GnbGfx.h │ │ │ │ │ │ ├── GnbGfxFamServices.h │ │ │ │ │ │ ├── GnbIommu.h │ │ │ │ │ │ ├── GnbLibFeatures.c │ │ │ │ │ │ ├── GnbLibFeatures.h │ │ │ │ │ │ ├── GnbPcie.h │ │ │ │ │ │ ├── GnbPcieFamServices.h │ │ │ │ │ │ ├── GnbRegistersLN.h │ │ │ │ │ │ └── GnbRegistersTN.h │ │ │ │ │ ├── GnbInitAtEarly.c │ │ │ │ │ ├── GnbInitAtEnv.c │ │ │ │ │ ├── GnbInitAtLate.c │ │ │ │ │ ├── GnbInitAtMid.c │ │ │ │ │ ├── GnbInitAtPost.c │ │ │ │ │ ├── GnbInitAtReset.c │ │ │ │ │ ├── GnbInitAtS3Save.c │ │ │ │ │ ├── Include │ │ │ │ │ │ └── Library │ │ │ │ │ │ │ └── GnbTimerLib.h │ │ │ │ │ ├── Library │ │ │ │ │ │ └── GnbTimerLibWrap0 │ │ │ │ │ │ │ └── GnbTimerLibWrap0.c │ │ │ │ │ └── Modules │ │ │ │ │ │ ├── GnbCommonLib │ │ │ │ │ │ ├── GnbCommonLib.h │ │ │ │ │ │ ├── GnbLib.c │ │ │ │ │ │ ├── GnbLib.h │ │ │ │ │ │ ├── GnbLibCpuAcc.c │ │ │ │ │ │ ├── GnbLibCpuAcc.h │ │ │ │ │ │ ├── GnbLibHeap.c │ │ │ │ │ │ ├── GnbLibHeap.h │ │ │ │ │ │ ├── GnbLibIoAcc.c │ │ │ │ │ │ ├── GnbLibIoAcc.h │ │ │ │ │ │ ├── GnbLibMemAcc.c │ │ │ │ │ │ ├── GnbLibMemAcc.h │ │ │ │ │ │ ├── GnbLibPci.c │ │ │ │ │ │ ├── GnbLibPci.h │ │ │ │ │ │ ├── GnbLibPciAcc.c │ │ │ │ │ │ └── GnbLibPciAcc.h │ │ │ │ │ │ ├── GnbFamTranslation │ │ │ │ │ │ ├── GnbPcieTranslation.c │ │ │ │ │ │ └── GnbTranslation.c │ │ │ │ │ │ ├── GnbGfxConfig │ │ │ │ │ │ ├── GfxConfigEnv.c │ │ │ │ │ │ ├── GfxConfigLib.c │ │ │ │ │ │ ├── GfxConfigLib.h │ │ │ │ │ │ ├── GfxConfigMid.c │ │ │ │ │ │ ├── GfxConfigPost.c │ │ │ │ │ │ └── GnbGfxConfig.h │ │ │ │ │ │ ├── GnbGfxInitLibV1 │ │ │ │ │ │ ├── GfxCardInfo.c │ │ │ │ │ │ ├── GfxCardInfo.h │ │ │ │ │ │ ├── GfxEnumConnectors.c │ │ │ │ │ │ ├── GfxEnumConnectors.h │ │ │ │ │ │ ├── GfxPowerPlayTable.c │ │ │ │ │ │ ├── GfxPowerPlayTable.h │ │ │ │ │ │ ├── GnbGfxInitLibV1.c │ │ │ │ │ │ └── GnbGfxInitLibV1.h │ │ │ │ │ │ ├── GnbInitTN │ │ │ │ │ │ ├── GfxEnvInitTN.c │ │ │ │ │ │ ├── GfxGmcInitTN.c │ │ │ │ │ │ ├── GfxGmcInitTN.h │ │ │ │ │ │ ├── GfxIntegratedInfoTableTN.c │ │ │ │ │ │ ├── GfxLibTN.c │ │ │ │ │ │ ├── GfxLibTN.h │ │ │ │ │ │ ├── GfxMidInitTN.c │ │ │ │ │ │ ├── GfxPostInitTN.c │ │ │ │ │ │ ├── GfxTablesTN.c │ │ │ │ │ │ ├── GnbBapmCoeffCalcTN.c │ │ │ │ │ │ ├── GnbBapmCoeffCalcTN.h │ │ │ │ │ │ ├── GnbCacWeightsTN.h │ │ │ │ │ │ ├── GnbEarlyInitTN.c │ │ │ │ │ │ ├── GnbEnvInitTN.c │ │ │ │ │ │ ├── GnbFuseTableTN.c │ │ │ │ │ │ ├── GnbFuseTableTN.h │ │ │ │ │ │ ├── GnbInitTN.h │ │ │ │ │ │ ├── GnbInitTNInstall.h │ │ │ │ │ │ ├── GnbIommuIvrsTN.c │ │ │ │ │ │ ├── GnbMidInitTN.c │ │ │ │ │ │ ├── GnbPostInitTN.c │ │ │ │ │ │ ├── GnbRegisterAccTN.c │ │ │ │ │ │ ├── GnbRegisterAccTN.h │ │ │ │ │ │ ├── GnbSmuFirmwareTN.h │ │ │ │ │ │ ├── GnbTablesTN.c │ │ │ │ │ │ ├── PcieAlibSsdtTNFM2.h │ │ │ │ │ │ ├── PcieAlibSsdtTNFS1.h │ │ │ │ │ │ ├── PcieAlibTNFM2.c │ │ │ │ │ │ ├── PcieAlibTNFM2.esl │ │ │ │ │ │ ├── PcieAlibTNFS1.c │ │ │ │ │ │ ├── PcieComplexDataTN.c │ │ │ │ │ │ ├── PcieComplexDataTN.h │ │ │ │ │ │ ├── PcieConfigTN.c │ │ │ │ │ │ ├── PcieEarlyInitTN.c │ │ │ │ │ │ ├── PcieEnvInitTN.c │ │ │ │ │ │ ├── PcieLibTN.c │ │ │ │ │ │ ├── PcieLibTN.h │ │ │ │ │ │ ├── PcieMidInitTN.c │ │ │ │ │ │ ├── PciePostInitTN.c │ │ │ │ │ │ ├── PciePowerGateTN.c │ │ │ │ │ │ ├── PciePowerGateTN.h │ │ │ │ │ │ └── PcieTablesTN.c │ │ │ │ │ │ ├── GnbIommuIvrs │ │ │ │ │ │ ├── GnbIommuIvrs.c │ │ │ │ │ │ └── GnbIommuIvrs.h │ │ │ │ │ │ ├── GnbIommuScratch │ │ │ │ │ │ ├── GnbIommuScratch.c │ │ │ │ │ │ └── GnbIommuScratch.h │ │ │ │ │ │ ├── GnbIvrsLib │ │ │ │ │ │ ├── GnbIvrsLib.c │ │ │ │ │ │ └── GnbIvrsLib.h │ │ │ │ │ │ ├── GnbMSocketLib │ │ │ │ │ │ └── GnbMSocketLib.c │ │ │ │ │ │ ├── GnbNbInitLibV1 │ │ │ │ │ │ ├── GnbNbInitLibV1.c │ │ │ │ │ │ └── GnbNbInitLibV1.h │ │ │ │ │ │ ├── GnbNbInitLibV4 │ │ │ │ │ │ ├── GnbNbInitLibV4.c │ │ │ │ │ │ └── GnbNbInitLibV4.h │ │ │ │ │ │ ├── GnbPcieAlibV1 │ │ │ │ │ │ ├── PcieAlib.c │ │ │ │ │ │ ├── PcieAlib.h │ │ │ │ │ │ ├── PcieAlibConfig.esl │ │ │ │ │ │ ├── PcieAlibCore.esl │ │ │ │ │ │ ├── PcieAlibDebugLib.esl │ │ │ │ │ │ ├── PcieAlibHotplug.esl │ │ │ │ │ │ ├── PcieAlibMmioData.esl │ │ │ │ │ │ ├── PcieAlibPciLib.esl │ │ │ │ │ │ ├── PcieAlibPortData.esl │ │ │ │ │ │ └── PcieAlibPspp.esl │ │ │ │ │ │ ├── GnbPcieAspm │ │ │ │ │ │ ├── PcieAspm.c │ │ │ │ │ │ └── PcieAspm.h │ │ │ │ │ │ ├── GnbPcieClkPm │ │ │ │ │ │ ├── PcieClkPm.c │ │ │ │ │ │ └── PcieClkPm.h │ │ │ │ │ │ ├── GnbPcieConfig │ │ │ │ │ │ ├── GnbHandleLib.c │ │ │ │ │ │ ├── GnbHandleLib.h │ │ │ │ │ │ ├── GnbPcieConfig.h │ │ │ │ │ │ ├── PcieConfigData.c │ │ │ │ │ │ ├── PcieConfigData.h │ │ │ │ │ │ ├── PcieConfigLib.c │ │ │ │ │ │ ├── PcieConfigLib.h │ │ │ │ │ │ ├── PcieInputParser.c │ │ │ │ │ │ ├── PcieInputParser.h │ │ │ │ │ │ ├── PcieMapTopology.c │ │ │ │ │ │ └── PcieMapTopology.h │ │ │ │ │ │ ├── GnbPcieInitLibV1 │ │ │ │ │ │ ├── GnbPcieInitLibV1.h │ │ │ │ │ │ ├── PcieAspmBlackList.c │ │ │ │ │ │ ├── PcieAspmBlackList.h │ │ │ │ │ │ ├── PcieAspmExitLatency.c │ │ │ │ │ │ ├── PcieAspmExitLatency.h │ │ │ │ │ │ ├── PciePhyServices.c │ │ │ │ │ │ ├── PciePhyServices.h │ │ │ │ │ │ ├── PciePifServices.c │ │ │ │ │ │ ├── PciePifServices.h │ │ │ │ │ │ ├── PciePortRegAcc.c │ │ │ │ │ │ ├── PciePortRegAcc.h │ │ │ │ │ │ ├── PciePortServices.c │ │ │ │ │ │ ├── PciePortServices.h │ │ │ │ │ │ ├── PciePowerMgmt.c │ │ │ │ │ │ ├── PciePowerMgmt.h │ │ │ │ │ │ ├── PcieService.esl │ │ │ │ │ │ ├── PcieSiliconServices.c │ │ │ │ │ │ ├── PcieSiliconServices.h │ │ │ │ │ │ ├── PcieSmuLib.esl │ │ │ │ │ │ ├── PcieSmuVidReq.esl │ │ │ │ │ │ ├── PcieTimer.c │ │ │ │ │ │ ├── PcieTimer.h │ │ │ │ │ │ ├── PcieTopologyServices.c │ │ │ │ │ │ ├── PcieTopologyServices.h │ │ │ │ │ │ ├── PcieUtilityLib.c │ │ │ │ │ │ ├── PcieUtilityLib.h │ │ │ │ │ │ ├── PcieWrapperRegAcc.c │ │ │ │ │ │ └── PcieWrapperRegAcc.h │ │ │ │ │ │ ├── GnbPcieInitLibV4 │ │ │ │ │ │ ├── GnbPcieInitLibV4.h │ │ │ │ │ │ ├── PcieMaxPayloadV4.c │ │ │ │ │ │ ├── PcieMaxPayloadV4.h │ │ │ │ │ │ ├── PciePortServicesV4.c │ │ │ │ │ │ ├── PciePortServicesV4.h │ │ │ │ │ │ ├── PciePowerMgmtV4.c │ │ │ │ │ │ ├── PciePowerMgmtV4.h │ │ │ │ │ │ ├── PcieServiceV4.esl │ │ │ │ │ │ ├── PcieSmuServiceV4.esl │ │ │ │ │ │ ├── PcieSmuVidReqV4.esl │ │ │ │ │ │ ├── PcieWrapperServicesV4.c │ │ │ │ │ │ └── PcieWrapperServicesV4.h │ │ │ │ │ │ ├── GnbPcieTrainingV1 │ │ │ │ │ │ ├── GnbPcieTrainingV1.h │ │ │ │ │ │ ├── PcieTraining.c │ │ │ │ │ │ ├── PcieTraining.h │ │ │ │ │ │ ├── PcieWorkarounds.c │ │ │ │ │ │ └── PcieWorkarounds.h │ │ │ │ │ │ ├── GnbSSocketLib │ │ │ │ │ │ └── GnbSSocketLib.c │ │ │ │ │ │ ├── GnbSbIommuLib │ │ │ │ │ │ ├── GnbSbIommuLib.c │ │ │ │ │ │ └── GnbSbIommuLib.h │ │ │ │ │ │ ├── GnbSbLib │ │ │ │ │ │ ├── GnbSbLib.c │ │ │ │ │ │ ├── GnbSbLib.h │ │ │ │ │ │ └── GnbSbPcie.c │ │ │ │ │ │ ├── GnbSview │ │ │ │ │ │ └── GnbSview.c │ │ │ │ │ │ └── GnbTable │ │ │ │ │ │ ├── GnbTable.c │ │ │ │ │ │ └── GnbTable.h │ │ │ │ ├── HT │ │ │ │ │ ├── Fam15Mod1x │ │ │ │ │ │ ├── htNbFam15Mod1x.c │ │ │ │ │ │ ├── htNbUtilitiesFam15Mod1x.c │ │ │ │ │ │ └── htNbUtilitiesFam15Mod1x.h │ │ │ │ │ ├── htFeat.c │ │ │ │ │ ├── htFeat.h │ │ │ │ │ ├── htGraph.h │ │ │ │ │ ├── htInterface.c │ │ │ │ │ ├── htInterface.h │ │ │ │ │ ├── htInterfaceCoherent.c │ │ │ │ │ ├── htInterfaceCoherent.h │ │ │ │ │ ├── htInterfaceGeneral.c │ │ │ │ │ ├── htInterfaceGeneral.h │ │ │ │ │ ├── htInterfaceNonCoherent.c │ │ │ │ │ ├── htInterfaceNonCoherent.h │ │ │ │ │ ├── htMain.c │ │ │ │ │ ├── htNb.c │ │ │ │ │ ├── htNb.h │ │ │ │ │ ├── htNbCommonHardware.h │ │ │ │ │ ├── htNotify.c │ │ │ │ │ ├── htNotify.h │ │ │ │ │ ├── htPage.h │ │ │ │ │ └── htTopologies.h │ │ │ │ ├── IDS │ │ │ │ │ ├── Control │ │ │ │ │ │ ├── IdsCtrl.c │ │ │ │ │ │ ├── IdsNvToCmos.c │ │ │ │ │ │ └── IdsNvToCmos.h │ │ │ │ │ ├── Debug │ │ │ │ │ │ ├── IdsDebug.c │ │ │ │ │ │ ├── IdsDebugPrint.c │ │ │ │ │ │ ├── IdsDebugPrint.h │ │ │ │ │ │ ├── IdsDpHdtout.c │ │ │ │ │ │ ├── IdsDpHdtout.h │ │ │ │ │ │ ├── IdsDpRedirectIo.c │ │ │ │ │ │ ├── IdsDpSerial.c │ │ │ │ │ │ └── IdsIdtTable.c │ │ │ │ │ ├── Family │ │ │ │ │ │ └── 0x15 │ │ │ │ │ │ │ ├── IdsF15AllService.c │ │ │ │ │ │ │ ├── IdsF15AllService.h │ │ │ │ │ │ │ └── TN │ │ │ │ │ │ │ ├── IdsF15TnAllService.c │ │ │ │ │ │ │ ├── IdsF15TnAllService.h │ │ │ │ │ │ │ └── IdsF15TnNvDef.h │ │ │ │ │ ├── IdsLib.h │ │ │ │ │ ├── IdsPage.h │ │ │ │ │ ├── Library │ │ │ │ │ │ ├── IdsLib.c │ │ │ │ │ │ ├── IdsRegAcc.c │ │ │ │ │ │ └── IdsRegAcc.h │ │ │ │ │ ├── OptionsIds.h │ │ │ │ │ └── Perf │ │ │ │ │ │ └── IdsPerf.c │ │ │ │ └── Mem │ │ │ │ │ ├── Ardk │ │ │ │ │ └── ma.c │ │ │ │ │ ├── Feat │ │ │ │ │ ├── CHINTLV │ │ │ │ │ │ ├── mfchi.c │ │ │ │ │ │ └── mfchi.h │ │ │ │ │ ├── CRAT │ │ │ │ │ │ ├── mfCrat.c │ │ │ │ │ │ └── mfCrat.h │ │ │ │ │ ├── CSINTLV │ │ │ │ │ │ ├── mfcsi.c │ │ │ │ │ │ └── mfcsi.h │ │ │ │ │ ├── DMI │ │ │ │ │ │ └── mfDMI.c │ │ │ │ │ ├── ECC │ │ │ │ │ │ ├── mfecc.c │ │ │ │ │ │ ├── mfecc.h │ │ │ │ │ │ └── mfemp.c │ │ │ │ │ ├── EXCLUDIMM │ │ │ │ │ │ └── mfdimmexclud.c │ │ │ │ │ ├── IDENDIMM │ │ │ │ │ │ ├── mfidendimm.c │ │ │ │ │ │ └── mfidendimm.h │ │ │ │ │ ├── INTLVRN │ │ │ │ │ │ ├── mfintlvrn.c │ │ │ │ │ │ └── mfintlvrn.h │ │ │ │ │ ├── LVDDR3 │ │ │ │ │ │ ├── mflvddr3.c │ │ │ │ │ │ └── mflvddr3.h │ │ │ │ │ ├── MEMCLR │ │ │ │ │ │ └── mfmemclr.c │ │ │ │ │ ├── ODTHERMAL │ │ │ │ │ │ ├── mfodthermal.c │ │ │ │ │ │ └── mfodthermal.h │ │ │ │ │ ├── PARTRN │ │ │ │ │ │ ├── mfParallelTraining.c │ │ │ │ │ │ └── mfStandardTraining.c │ │ │ │ │ ├── S3 │ │ │ │ │ │ └── mfs3.c │ │ │ │ │ └── TABLE │ │ │ │ │ │ └── mftds.c │ │ │ │ │ ├── Main │ │ │ │ │ ├── TN │ │ │ │ │ │ └── mmflowtn.c │ │ │ │ │ ├── mdef.c │ │ │ │ │ ├── merrhdl.c │ │ │ │ │ ├── minit.c │ │ │ │ │ ├── mm.c │ │ │ │ │ ├── mmConditionalPso.c │ │ │ │ │ ├── mmEcc.c │ │ │ │ │ ├── mmExcludeDimm.c │ │ │ │ │ ├── mmLvDdr3.c │ │ │ │ │ ├── mmMemClr.c │ │ │ │ │ ├── mmMemRestore.c │ │ │ │ │ ├── mmNodeInterleave.c │ │ │ │ │ ├── mmOnlineSpare.c │ │ │ │ │ ├── mmParallelTraining.c │ │ │ │ │ ├── mmStandardTraining.c │ │ │ │ │ ├── mmUmaAlloc.c │ │ │ │ │ ├── mmflow.c │ │ │ │ │ ├── mmlvddr3.h │ │ │ │ │ ├── mu.c │ │ │ │ │ └── muc.c │ │ │ │ │ ├── NB │ │ │ │ │ ├── TN │ │ │ │ │ │ ├── mnS3tn.h │ │ │ │ │ │ ├── mndcttn.c │ │ │ │ │ │ ├── mnflowtn.c │ │ │ │ │ │ ├── mnidendimmtn.c │ │ │ │ │ │ ├── mnmcttn.c │ │ │ │ │ │ ├── mnottn.c │ │ │ │ │ │ ├── mnphytn.c │ │ │ │ │ │ ├── mnregtn.c │ │ │ │ │ │ ├── mns3tn.c │ │ │ │ │ │ ├── mntn.c │ │ │ │ │ │ └── mntn.h │ │ │ │ │ ├── mn.c │ │ │ │ │ ├── mnS3.c │ │ │ │ │ ├── mndct.c │ │ │ │ │ ├── mnfeat.c │ │ │ │ │ ├── mnflow.c │ │ │ │ │ ├── mnmct.c │ │ │ │ │ ├── mnphy.c │ │ │ │ │ ├── mnreg.c │ │ │ │ │ └── mntrain3.c │ │ │ │ │ ├── Ps │ │ │ │ │ ├── TN │ │ │ │ │ │ ├── FM2 │ │ │ │ │ │ │ └── mpUtnfm2.c │ │ │ │ │ │ ├── FP2 │ │ │ │ │ │ │ └── mpStnfp2.c │ │ │ │ │ │ ├── FS1 │ │ │ │ │ │ │ └── mpStnfs1.c │ │ │ │ │ │ ├── mpStn3.c │ │ │ │ │ │ ├── mpUtn3.c │ │ │ │ │ │ └── mptn3.c │ │ │ │ │ ├── mp.c │ │ │ │ │ ├── mplribt.c │ │ │ │ │ ├── mplrnlr.c │ │ │ │ │ ├── mplrnpr.c │ │ │ │ │ ├── mpmaxfreq.c │ │ │ │ │ ├── mpmr0.c │ │ │ │ │ ├── mpodtpat.c │ │ │ │ │ ├── mprc10opspd.c │ │ │ │ │ ├── mprc2ibt.c │ │ │ │ │ ├── mprtt.c │ │ │ │ │ ├── mpsao.c │ │ │ │ │ └── mpseeds.c │ │ │ │ │ ├── Tech │ │ │ │ │ ├── DDR3 │ │ │ │ │ │ ├── mt3.c │ │ │ │ │ │ ├── mt3.h │ │ │ │ │ │ ├── mtlrdimm3.c │ │ │ │ │ │ ├── mtlrdimm3.h │ │ │ │ │ │ ├── mtot3.c │ │ │ │ │ │ ├── mtot3.h │ │ │ │ │ │ ├── mtrci3.c │ │ │ │ │ │ ├── mtrci3.h │ │ │ │ │ │ ├── mtsdi3.c │ │ │ │ │ │ ├── mtsdi3.h │ │ │ │ │ │ ├── mtspd3.c │ │ │ │ │ │ ├── mtspd3.h │ │ │ │ │ │ ├── mttecc3.c │ │ │ │ │ │ └── mttwl3.c │ │ │ │ │ ├── mt.c │ │ │ │ │ ├── mthdi.c │ │ │ │ │ ├── mttEdgeDetect.c │ │ │ │ │ ├── mttEdgeDetect.h │ │ │ │ │ ├── mttdimbt.c │ │ │ │ │ ├── mttecc.c │ │ │ │ │ ├── mtthrc.c │ │ │ │ │ ├── mtthrcSeedTrain.c │ │ │ │ │ ├── mttml.c │ │ │ │ │ ├── mttoptsrc.c │ │ │ │ │ └── mttsrc.c │ │ │ │ │ ├── ma.h │ │ │ │ │ ├── memPage.h │ │ │ │ │ ├── merrhdl.h │ │ │ │ │ ├── mfParallelTraining.h │ │ │ │ │ ├── mfStandardTraining.h │ │ │ │ │ ├── mfmemclr.h │ │ │ │ │ ├── mfs3.h │ │ │ │ │ ├── mftds.h │ │ │ │ │ ├── mm.h │ │ │ │ │ ├── mn.h │ │ │ │ │ ├── mnreg.h │ │ │ │ │ ├── mp.h │ │ │ │ │ ├── mport.h │ │ │ │ │ ├── mt.h │ │ │ │ │ └── mu.h │ │ │ └── gcccar.inc │ │ └── f16kb │ │ │ ├── AGESA.h │ │ │ ├── AMD.h │ │ │ ├── Dispatcher.h │ │ │ ├── Include │ │ │ ├── AdvancedApi.h │ │ │ ├── CommonReturns.h │ │ │ ├── Filecode.h │ │ │ ├── GeneralServices.h │ │ │ ├── GnbInterface.h │ │ │ ├── Ids.h │ │ │ ├── IdsHt.h │ │ │ ├── IdsPerf.h │ │ │ ├── OptionApmInstall.h │ │ │ ├── OptionC6Install.h │ │ │ ├── OptionCdit.h │ │ │ ├── OptionCditInstall.h │ │ │ ├── OptionCpbInstall.h │ │ │ ├── OptionCpuCacheFlushOnHaltInstall.h │ │ │ ├── OptionCpuCoreLevelingInstall.h │ │ │ ├── OptionCpuFamiliesInstall.h │ │ │ ├── OptionCpuFeaturesInstall.h │ │ │ ├── OptionCpuSpecificServicesInstall.h │ │ │ ├── OptionCpuSpecificServicesInstallReset.h │ │ │ ├── OptionCrat.h │ │ │ ├── OptionCratInstall.h │ │ │ ├── OptionDmi.h │ │ │ ├── OptionDmiInstall.h │ │ │ ├── OptionFamily16hEarlySample.h │ │ │ ├── OptionFamily16hInstall.h │ │ │ ├── OptionFchInstall.h │ │ │ ├── OptionGfxRecovery.h │ │ │ ├── OptionGfxRecoveryInstall.h │ │ │ ├── OptionGnb.h │ │ │ ├── OptionGnbInstall.h │ │ │ ├── OptionHtInstall.h │ │ │ ├── OptionHtcInstall.h │ │ │ ├── OptionIdsInstall.h │ │ │ ├── OptionIoCstateInstall.h │ │ │ ├── OptionL3FeaturesInstall.h │ │ │ ├── OptionLowPwrPstateInstall.h │ │ │ ├── OptionMemory.h │ │ │ ├── OptionMemoryInstall.h │ │ │ ├── OptionMemoryRecovery.h │ │ │ ├── OptionMemoryRecoveryInstall.h │ │ │ ├── OptionMmioMapInstall.h │ │ │ ├── OptionMsgBasedC1eInstall.h │ │ │ ├── OptionMultiSocket.h │ │ │ ├── OptionMultiSocketInstall.h │ │ │ ├── OptionPrefetchModeInstall.h │ │ │ ├── OptionPreserveMailboxInstall.h │ │ │ ├── OptionPsiInstall.h │ │ │ ├── OptionPstate.h │ │ │ ├── OptionPstateHpcModeInstall.h │ │ │ ├── OptionPstateInstall.h │ │ │ ├── OptionS3ScriptInstall.h │ │ │ ├── OptionSlit.h │ │ │ ├── OptionSlitInstall.h │ │ │ ├── OptionSrat.h │ │ │ ├── OptionSratInstall.h │ │ │ ├── OptionTdpLimitingInstall.h │ │ │ ├── OptionWhea.h │ │ │ ├── OptionWheaInstall.h │ │ │ ├── Options.h │ │ │ ├── OptionsHt.h │ │ │ ├── PlatformInstall.h │ │ │ ├── PlatformMemoryConfiguration.h │ │ │ ├── Topology.h │ │ │ └── gcc-intrin.h │ │ │ ├── Legacy │ │ │ └── Proc │ │ │ │ ├── Dispatcher.c │ │ │ │ ├── agesaCallouts.c │ │ │ │ └── hobTransfer.c │ │ │ ├── Makefile.inc │ │ │ ├── Proc │ │ │ ├── CPU │ │ │ │ ├── Family │ │ │ │ │ ├── 0x16 │ │ │ │ │ │ ├── KB │ │ │ │ │ │ │ ├── F16KbC6State.c │ │ │ │ │ │ │ ├── F16KbCacheFlushOnHalt.c │ │ │ │ │ │ │ ├── F16KbCoreAfterReset.c │ │ │ │ │ │ │ ├── F16KbCoreAfterReset.h │ │ │ │ │ │ │ ├── F16KbCpb.c │ │ │ │ │ │ │ ├── F16KbDmi.c │ │ │ │ │ │ │ ├── F16KbEquivalenceTable.c │ │ │ │ │ │ │ ├── F16KbHtc.c │ │ │ │ │ │ │ ├── F16KbId7001MicrocodePatch.c │ │ │ │ │ │ │ ├── F16KbInitEarlyTable.c │ │ │ │ │ │ │ ├── F16KbIoCstate.c │ │ │ │ │ │ │ ├── F16KbLogicalIdTables.c │ │ │ │ │ │ │ ├── F16KbMicrocodePatchTables.c │ │ │ │ │ │ │ ├── F16KbMsrTables.c │ │ │ │ │ │ │ ├── F16KbNbAfterReset.c │ │ │ │ │ │ │ ├── F16KbNbAfterReset.h │ │ │ │ │ │ │ ├── F16KbPciTables.c │ │ │ │ │ │ │ ├── F16KbPowerCheck.c │ │ │ │ │ │ │ ├── F16KbPowerCheck.h │ │ │ │ │ │ │ ├── F16KbPowerMgmt.h │ │ │ │ │ │ │ ├── F16KbPowerMgmtSystemTables.c │ │ │ │ │ │ │ ├── F16KbPsi.c │ │ │ │ │ │ │ ├── F16KbPstate.c │ │ │ │ │ │ │ ├── F16KbSharedMsrTable.c │ │ │ │ │ │ │ ├── F16KbUtilities.c │ │ │ │ │ │ │ └── F16KbUtilities.h │ │ │ │ │ │ ├── cpuF16Apm.c │ │ │ │ │ │ ├── cpuF16BrandId.c │ │ │ │ │ │ ├── cpuF16CacheDefaults.c │ │ │ │ │ │ ├── cpuF16Dmi.c │ │ │ │ │ │ ├── cpuF16Dmi.h │ │ │ │ │ │ ├── cpuF16MmioMap.c │ │ │ │ │ │ ├── cpuF16MmioMap.h │ │ │ │ │ │ ├── cpuF16MsrUnknownTables.c │ │ │ │ │ │ ├── cpuF16PciUnknownTables.c │ │ │ │ │ │ ├── cpuF16PowerMgmt.h │ │ │ │ │ │ ├── cpuF16Utilities.c │ │ │ │ │ │ ├── cpuF16Utilities.h │ │ │ │ │ │ └── cpuF16WheaInitDataTables.c │ │ │ │ │ └── cpuFamRegisters.h │ │ │ │ ├── Feature │ │ │ │ │ ├── PreserveMailbox.h │ │ │ │ │ ├── cpuApm.c │ │ │ │ │ ├── cpuApm.h │ │ │ │ │ ├── cpuC6State.c │ │ │ │ │ ├── cpuC6State.h │ │ │ │ │ ├── cpuCacheFlushOnHalt.c │ │ │ │ │ ├── cpuCacheInit.c │ │ │ │ │ ├── cpuCacheInit.h │ │ │ │ │ ├── cpuCdit.c │ │ │ │ │ ├── cpuCoreLeveling.c │ │ │ │ │ ├── cpuCpb.c │ │ │ │ │ ├── cpuCpb.h │ │ │ │ │ ├── cpuCrat.c │ │ │ │ │ ├── cpuCrat.h │ │ │ │ │ ├── cpuDmi.c │ │ │ │ │ ├── cpuFeatureLeveling.c │ │ │ │ │ ├── cpuFeatures.c │ │ │ │ │ ├── cpuFeatures.h │ │ │ │ │ ├── cpuHtc.c │ │ │ │ │ ├── cpuHtc.h │ │ │ │ │ ├── cpuIoCstate.c │ │ │ │ │ ├── cpuIoCstate.h │ │ │ │ │ ├── cpuL3Features.h │ │ │ │ │ ├── cpuMsgBasedC1e.h │ │ │ │ │ ├── cpuPrefetchMode.h │ │ │ │ │ ├── cpuPsi.c │ │ │ │ │ ├── cpuPsi.h │ │ │ │ │ ├── cpuPstateGather.c │ │ │ │ │ ├── cpuPstateHpcMode.h │ │ │ │ │ ├── cpuPstateLeveling.c │ │ │ │ │ ├── cpuPstateTables.c │ │ │ │ │ ├── cpuPstateTables.h │ │ │ │ │ ├── cpuSlit.c │ │ │ │ │ ├── cpuSrat.c │ │ │ │ │ ├── cpuTdpLimiting.h │ │ │ │ │ └── cpuWhea.c │ │ │ │ ├── S3.c │ │ │ │ ├── S3.h │ │ │ │ ├── Table.c │ │ │ │ ├── Table.h │ │ │ │ ├── cahalt.c │ │ │ │ ├── cahaltasm.S │ │ │ │ ├── cpuApicUtilities.c │ │ │ │ ├── cpuApicUtilities.h │ │ │ │ ├── cpuBist.c │ │ │ │ ├── cpuEarlyInit.c │ │ │ │ ├── cpuEarlyInit.h │ │ │ │ ├── cpuEnvInit.h │ │ │ │ ├── cpuEventLog.c │ │ │ │ ├── cpuFamilyTranslation.c │ │ │ │ ├── cpuFamilyTranslation.h │ │ │ │ ├── cpuGeneralServices.c │ │ │ │ ├── cpuLateInit.c │ │ │ │ ├── cpuLateInit.h │ │ │ │ ├── cpuMicrocodePatch.c │ │ │ │ ├── cpuPostInit.c │ │ │ │ ├── cpuPostInit.h │ │ │ │ ├── cpuPowerMgmt.c │ │ │ │ ├── cpuPowerMgmtSingleSocket.c │ │ │ │ ├── cpuPowerMgmtSingleSocket.h │ │ │ │ ├── cpuPowerMgmtSystemTables.h │ │ │ │ ├── cpuRegisters.h │ │ │ │ ├── cpuServices.h │ │ │ │ ├── cpuWarmReset.c │ │ │ │ ├── heapManager.c │ │ │ │ ├── heapManager.h │ │ │ │ └── mmioMapManager.h │ │ │ ├── Common │ │ │ │ ├── AmdFch.h │ │ │ │ ├── AmdInitEarly.c │ │ │ │ ├── AmdInitEnv.c │ │ │ │ ├── AmdInitLate.c │ │ │ │ ├── AmdInitMid.c │ │ │ │ ├── AmdInitPost.c │ │ │ │ ├── AmdInitReset.c │ │ │ │ ├── AmdInitResume.c │ │ │ │ ├── AmdLateRunApTask.c │ │ │ │ ├── AmdS3LateRestore.c │ │ │ │ ├── AmdS3Save.c │ │ │ │ ├── CommonInits.c │ │ │ │ ├── CommonInits.h │ │ │ │ ├── CommonReturns.c │ │ │ │ ├── CreateStruct.c │ │ │ │ ├── CreateStruct.h │ │ │ │ ├── S3RestoreState.c │ │ │ │ ├── S3SaveState.c │ │ │ │ └── S3SaveState.h │ │ │ ├── Fch │ │ │ │ ├── Azalia │ │ │ │ │ ├── AzaliaEnv.c │ │ │ │ │ ├── AzaliaLate.c │ │ │ │ │ ├── AzaliaMid.c │ │ │ │ │ └── AzaliaReset.c │ │ │ │ ├── Common │ │ │ │ │ ├── AcpiLib.c │ │ │ │ │ ├── AcpiLib.h │ │ │ │ │ ├── FchBiosRamUsage.h │ │ │ │ │ ├── FchCommon.c │ │ │ │ │ ├── FchCommonCfg.h │ │ │ │ │ ├── FchDef.h │ │ │ │ │ ├── FchLib.c │ │ │ │ │ ├── FchPeLib.c │ │ │ │ │ ├── MemLib.c │ │ │ │ │ └── PciLib.c │ │ │ │ ├── Fch.h │ │ │ │ ├── FchPlatform.h │ │ │ │ ├── HwAcpi │ │ │ │ │ ├── Family │ │ │ │ │ │ └── Yangtze │ │ │ │ │ │ │ ├── YangtzeHwAcpiEnvService.c │ │ │ │ │ │ │ ├── YangtzeHwAcpiLateService.c │ │ │ │ │ │ │ ├── YangtzeHwAcpiMidService.c │ │ │ │ │ │ │ └── YangtzeSSService.c │ │ │ │ │ ├── HwAcpiEnv.c │ │ │ │ │ ├── HwAcpiLate.c │ │ │ │ │ ├── HwAcpiMid.c │ │ │ │ │ └── HwAcpiReset.c │ │ │ │ ├── Hwm │ │ │ │ │ ├── Family │ │ │ │ │ │ └── Yangtze │ │ │ │ │ │ │ ├── YangtzeHwmEnvService.c │ │ │ │ │ │ │ └── YangtzeHwmLateService.c │ │ │ │ │ └── HwmLate.c │ │ │ │ ├── Ide │ │ │ │ │ ├── IdeEnv.c │ │ │ │ │ ├── IdeLate.c │ │ │ │ │ └── IdeMid.c │ │ │ │ ├── Imc │ │ │ │ │ ├── Family │ │ │ │ │ │ └── Yangtze │ │ │ │ │ │ │ └── YangtzeImcService.c │ │ │ │ │ ├── FchEcEnv.c │ │ │ │ │ ├── FchEcLate.c │ │ │ │ │ ├── FchEcMid.c │ │ │ │ │ ├── ImcEnv.c │ │ │ │ │ ├── ImcLate.c │ │ │ │ │ ├── ImcLib.c │ │ │ │ │ ├── ImcMid.c │ │ │ │ │ └── ImcReset.c │ │ │ │ ├── Interface │ │ │ │ │ ├── Family │ │ │ │ │ │ └── Yangtze │ │ │ │ │ │ │ ├── EnvDefYangtze.c │ │ │ │ │ │ │ └── ResetDefYangtze.c │ │ │ │ │ ├── FchInitEnv.c │ │ │ │ │ ├── FchInitLate.c │ │ │ │ │ ├── FchInitMid.c │ │ │ │ │ ├── FchInitReset.c │ │ │ │ │ ├── FchInitS3.c │ │ │ │ │ ├── FchTaskLauncher.c │ │ │ │ │ ├── FchTaskLauncher.h │ │ │ │ │ ├── InitEnvDef.c │ │ │ │ │ └── InitResetDef.c │ │ │ │ ├── Pcie │ │ │ │ │ ├── AbEnv.c │ │ │ │ │ ├── AbLate.c │ │ │ │ │ ├── AbMid.c │ │ │ │ │ ├── AbReset.c │ │ │ │ │ ├── Family │ │ │ │ │ │ └── Yangtze │ │ │ │ │ │ │ ├── YangtzeAbEnvService.c │ │ │ │ │ │ │ ├── YangtzeAbResetService.c │ │ │ │ │ │ │ └── YangtzeAbService.c │ │ │ │ │ ├── PcieEnv.c │ │ │ │ │ ├── PcieLate.c │ │ │ │ │ ├── PcieMid.c │ │ │ │ │ └── PcieReset.c │ │ │ │ ├── Sata │ │ │ │ │ ├── AhciEnv.c │ │ │ │ │ ├── AhciLate.c │ │ │ │ │ ├── AhciLib.c │ │ │ │ │ ├── AhciMid.c │ │ │ │ │ ├── Family │ │ │ │ │ │ └── Yangtze │ │ │ │ │ │ │ ├── YangtzeSataEnvService.c │ │ │ │ │ │ │ ├── YangtzeSataResetService.c │ │ │ │ │ │ │ └── YangtzeSataService.c │ │ │ │ │ ├── Ide2AhciEnv.c │ │ │ │ │ ├── Ide2AhciLate.c │ │ │ │ │ ├── Ide2AhciLib.c │ │ │ │ │ ├── Ide2AhciMid.c │ │ │ │ │ ├── RaidEnv.c │ │ │ │ │ ├── RaidLate.c │ │ │ │ │ ├── RaidLib.c │ │ │ │ │ ├── RaidMid.c │ │ │ │ │ ├── SataEnv.c │ │ │ │ │ ├── SataEnvLib.c │ │ │ │ │ ├── SataIdeEnv.c │ │ │ │ │ ├── SataIdeLate.c │ │ │ │ │ ├── SataIdeLib.c │ │ │ │ │ ├── SataIdeMid.c │ │ │ │ │ ├── SataLate.c │ │ │ │ │ ├── SataLib.c │ │ │ │ │ ├── SataMid.c │ │ │ │ │ └── SataReset.c │ │ │ │ ├── Sd │ │ │ │ │ ├── Family │ │ │ │ │ │ └── Yangtze │ │ │ │ │ │ │ ├── YangtzeSdEnvService.c │ │ │ │ │ │ │ ├── YangtzeSdResetService.c │ │ │ │ │ │ │ └── YangtzeSdService.c │ │ │ │ │ ├── SdEnv.c │ │ │ │ │ ├── SdLate.c │ │ │ │ │ └── SdMid.c │ │ │ │ ├── Spi │ │ │ │ │ ├── Family │ │ │ │ │ │ └── Yangtze │ │ │ │ │ │ │ ├── YangtzeLpcEnvService.c │ │ │ │ │ │ │ └── YangtzeLpcResetService.c │ │ │ │ │ ├── LpcEnv.c │ │ │ │ │ ├── LpcLate.c │ │ │ │ │ ├── LpcMid.c │ │ │ │ │ ├── LpcReset.c │ │ │ │ │ ├── SpiEnv.c │ │ │ │ │ ├── SpiLate.c │ │ │ │ │ ├── SpiMid.c │ │ │ │ │ └── SpiReset.c │ │ │ │ └── Usb │ │ │ │ │ ├── EhciEnv.c │ │ │ │ │ ├── EhciLate.c │ │ │ │ │ ├── EhciMid.c │ │ │ │ │ ├── EhciReset.c │ │ │ │ │ ├── Family │ │ │ │ │ └── Yangtze │ │ │ │ │ │ ├── YangtzeEhciEnvService.c │ │ │ │ │ │ ├── YangtzeEhciLateService.c │ │ │ │ │ │ ├── YangtzeEhciMidService.c │ │ │ │ │ │ ├── YangtzeOhciEnvService.c │ │ │ │ │ │ ├── YangtzeOhciLateService.c │ │ │ │ │ │ ├── YangtzeOhciMidService.c │ │ │ │ │ │ ├── YangtzeXhciEnvService.c │ │ │ │ │ │ ├── YangtzeXhciLateService.c │ │ │ │ │ │ ├── YangtzeXhciMidService.c │ │ │ │ │ │ └── YangtzeXhciResetService.c │ │ │ │ │ ├── OhciEnv.c │ │ │ │ │ ├── OhciLate.c │ │ │ │ │ ├── OhciMid.c │ │ │ │ │ ├── OhciReset.c │ │ │ │ │ ├── UsbEnv.c │ │ │ │ │ ├── UsbLate.c │ │ │ │ │ ├── UsbMid.c │ │ │ │ │ ├── UsbReset.c │ │ │ │ │ ├── XhciEnv.c │ │ │ │ │ ├── XhciLate.c │ │ │ │ │ ├── XhciMid.c │ │ │ │ │ └── XhciReset.c │ │ │ ├── GNB │ │ │ │ ├── Common │ │ │ │ │ ├── Gnb.h │ │ │ │ │ ├── GnbF1Table.h │ │ │ │ │ ├── GnbFamServices.h │ │ │ │ │ ├── GnbGfx.h │ │ │ │ │ ├── GnbGfxFamServices.h │ │ │ │ │ ├── GnbIommu.h │ │ │ │ │ ├── GnbLibFeatures.c │ │ │ │ │ ├── GnbLibFeatures.h │ │ │ │ │ ├── GnbPcie.h │ │ │ │ │ ├── GnbPcieFamServices.h │ │ │ │ │ ├── GnbRegistersCommon.h │ │ │ │ │ ├── GnbRegistersCommonV2.h │ │ │ │ │ ├── GnbRegistersKB.h │ │ │ │ │ ├── GnbUra.h │ │ │ │ │ ├── GnbUraServices.h │ │ │ │ │ └── GnbUraToken.h │ │ │ │ ├── GnbInitAtEarly.c │ │ │ │ ├── GnbInitAtEnv.c │ │ │ │ ├── GnbInitAtLate.c │ │ │ │ ├── GnbInitAtMid.c │ │ │ │ ├── GnbInitAtPost.c │ │ │ │ ├── GnbInitAtReset.c │ │ │ │ ├── GnbInitAtS3Save.c │ │ │ │ └── Modules │ │ │ │ │ ├── GnbCommonLib │ │ │ │ │ ├── GnbCommonLib.h │ │ │ │ │ ├── GnbLib.c │ │ │ │ │ ├── GnbLib.h │ │ │ │ │ ├── GnbLibCpuAcc.c │ │ │ │ │ ├── GnbLibCpuAcc.h │ │ │ │ │ ├── GnbLibHeap.c │ │ │ │ │ ├── GnbLibHeap.h │ │ │ │ │ ├── GnbLibIoAcc.c │ │ │ │ │ ├── GnbLibIoAcc.h │ │ │ │ │ ├── GnbLibMemAcc.c │ │ │ │ │ ├── GnbLibMemAcc.h │ │ │ │ │ ├── GnbLibPci.c │ │ │ │ │ ├── GnbLibPci.h │ │ │ │ │ ├── GnbLibPciAcc.c │ │ │ │ │ ├── GnbLibPciAcc.h │ │ │ │ │ ├── GnbTimerLib.c │ │ │ │ │ └── GnbTimerLib.h │ │ │ │ │ ├── GnbFamTranslation │ │ │ │ │ ├── GnbPcieTranslation.c │ │ │ │ │ └── GnbTranslation.c │ │ │ │ │ ├── GnbGfxConfig │ │ │ │ │ ├── GfxConfigEnv.c │ │ │ │ │ ├── GfxConfigLib.c │ │ │ │ │ ├── GfxConfigLib.h │ │ │ │ │ ├── GfxConfigMid.c │ │ │ │ │ ├── GfxConfigPost.c │ │ │ │ │ └── GnbGfxConfig.h │ │ │ │ │ ├── GnbGfxInitLibV1 │ │ │ │ │ ├── GfxCardInfo.c │ │ │ │ │ ├── GfxCardInfo.h │ │ │ │ │ ├── GfxEnumConnectors.c │ │ │ │ │ ├── GfxEnumConnectors.h │ │ │ │ │ ├── GnbGfxInitLibV1.c │ │ │ │ │ └── GnbGfxInitLibV1.h │ │ │ │ │ ├── GnbGfxIntTableV3 │ │ │ │ │ ├── GfxIntegratedInfoTable.c │ │ │ │ │ ├── GfxIntegratedInfoTable.h │ │ │ │ │ ├── GfxLibV3.c │ │ │ │ │ ├── GfxLibV3.h │ │ │ │ │ ├── GfxPwrPlayTable.c │ │ │ │ │ └── GfxPwrPlayTable.h │ │ │ │ │ ├── GnbInitKB │ │ │ │ │ ├── AlibKB.c │ │ │ │ │ ├── AlibSsdtKB.h │ │ │ │ │ ├── GfxEnvInitKB.c │ │ │ │ │ ├── GfxGmcInitKB.c │ │ │ │ │ ├── GfxGmcInitKB.h │ │ │ │ │ ├── GfxIntegratedInfoTableKB.c │ │ │ │ │ ├── GfxLibKB.c │ │ │ │ │ ├── GfxLibKB.h │ │ │ │ │ ├── GfxMidInitKB.c │ │ │ │ │ ├── GfxPostInitKB.c │ │ │ │ │ ├── GfxSamuInitKB.c │ │ │ │ │ ├── GfxSamuInitKB.h │ │ │ │ │ ├── GfxTablesKB.c │ │ │ │ │ ├── GnbEarlyInitKB.c │ │ │ │ │ ├── GnbEnvInitKB.c │ │ │ │ │ ├── GnbF1TableKB.c │ │ │ │ │ ├── GnbF1TableKB.h │ │ │ │ │ ├── GnbInitKBInstall.h │ │ │ │ │ ├── GnbIommuTablesKB.c │ │ │ │ │ ├── GnbMidInitKB.c │ │ │ │ │ ├── GnbPostInitKB.c │ │ │ │ │ ├── GnbRegisterAccKB.c │ │ │ │ │ ├── GnbRegisterAccKB.h │ │ │ │ │ ├── GnbSamuPatchKB.h │ │ │ │ │ ├── GnbSmuFirmwareKB.h │ │ │ │ │ ├── GnbTablesKB.c │ │ │ │ │ ├── GnbUraKB.c │ │ │ │ │ ├── GnbUraTokenMapKB.c │ │ │ │ │ ├── PcieComplexDataKB.c │ │ │ │ │ ├── PcieComplexDataKB.h │ │ │ │ │ ├── PcieConfigKB.c │ │ │ │ │ ├── PcieEarlyInitKB.c │ │ │ │ │ ├── PcieEnvInitKB.c │ │ │ │ │ ├── PcieLibKB.c │ │ │ │ │ ├── PcieLibKB.h │ │ │ │ │ ├── PcieMidInitKB.c │ │ │ │ │ ├── PciePostInitKB.c │ │ │ │ │ ├── PcieTablesKB.c │ │ │ │ │ └── excel925.h │ │ │ │ │ ├── GnbIoapic │ │ │ │ │ └── GnbIoapic.c │ │ │ │ │ ├── GnbNbInitLibV1 │ │ │ │ │ └── GnbNbInitLibV1.h │ │ │ │ │ ├── GnbNbInitLibV4 │ │ │ │ │ ├── GnbNbInitLibV4.c │ │ │ │ │ └── GnbNbInitLibV4.h │ │ │ │ │ ├── GnbNbInitLibV5 │ │ │ │ │ ├── GnbNbInitLibV5.c │ │ │ │ │ └── GnbNbInitLibV5.h │ │ │ │ │ ├── GnbPcieAlibV2 │ │ │ │ │ ├── PcieAlibV2.c │ │ │ │ │ └── PcieAlibV2.h │ │ │ │ │ ├── GnbPcieAspm │ │ │ │ │ ├── PcieAspm.c │ │ │ │ │ └── PcieAspm.h │ │ │ │ │ ├── GnbPcieClkPm │ │ │ │ │ ├── PcieClkPm.c │ │ │ │ │ └── PcieClkPm.h │ │ │ │ │ ├── GnbPcieConfig │ │ │ │ │ ├── GnbHandleLib.c │ │ │ │ │ ├── GnbHandleLib.h │ │ │ │ │ ├── GnbPcieConfig.h │ │ │ │ │ ├── PcieConfigData.c │ │ │ │ │ ├── PcieConfigData.h │ │ │ │ │ ├── PcieConfigLib.c │ │ │ │ │ ├── PcieConfigLib.h │ │ │ │ │ ├── PcieInputParser.c │ │ │ │ │ ├── PcieInputParser.h │ │ │ │ │ ├── PcieMapTopology.c │ │ │ │ │ └── PcieMapTopology.h │ │ │ │ │ ├── GnbPcieInitLibV1 │ │ │ │ │ ├── GnbPcieInitLibV1.h │ │ │ │ │ ├── PcieAspmBlackList.c │ │ │ │ │ ├── PcieAspmBlackList.h │ │ │ │ │ ├── PcieAspmExitLatency.h │ │ │ │ │ ├── PciePhyServices.h │ │ │ │ │ ├── PciePifServices.c │ │ │ │ │ ├── PciePifServices.h │ │ │ │ │ ├── PciePortRegAcc.c │ │ │ │ │ ├── PciePortRegAcc.h │ │ │ │ │ ├── PciePortServices.c │ │ │ │ │ ├── PciePortServices.h │ │ │ │ │ ├── PciePowerMgmt.h │ │ │ │ │ ├── PcieSiliconServices.h │ │ │ │ │ ├── PcieTimer.c │ │ │ │ │ ├── PcieTimer.h │ │ │ │ │ ├── PcieTopologyServices.c │ │ │ │ │ ├── PcieTopologyServices.h │ │ │ │ │ ├── PcieUtilityLib.c │ │ │ │ │ ├── PcieUtilityLib.h │ │ │ │ │ ├── PcieWrapperRegAcc.c │ │ │ │ │ └── PcieWrapperRegAcc.h │ │ │ │ │ ├── GnbPcieInitLibV4 │ │ │ │ │ ├── GnbPcieInitLibV4.h │ │ │ │ │ ├── PciePortServicesV4.c │ │ │ │ │ ├── PciePortServicesV4.h │ │ │ │ │ ├── PciePowerMgmtV4.h │ │ │ │ │ ├── PcieWrapperServicesV4.c │ │ │ │ │ └── PcieWrapperServicesV4.h │ │ │ │ │ ├── GnbPcieInitLibV5 │ │ │ │ │ ├── GnbPcieInitLibV5.h │ │ │ │ │ ├── PciePhyServicesV5.c │ │ │ │ │ ├── PciePifServicesV5.c │ │ │ │ │ ├── PciePortServicesV5.c │ │ │ │ │ ├── PcieSiliconServicesV5.c │ │ │ │ │ ├── PcieTopologyServicesV5.c │ │ │ │ │ └── PcieWrapperServicesV5.c │ │ │ │ │ ├── GnbPcieMaxPayload │ │ │ │ │ ├── PcieMaxPayload.c │ │ │ │ │ └── PcieMaxPayload.h │ │ │ │ │ ├── GnbPcieTrainingV2 │ │ │ │ │ ├── GnbPcieTrainingV2.h │ │ │ │ │ ├── PcieTrainingV2.c │ │ │ │ │ ├── PcieTrainingV2.h │ │ │ │ │ ├── PcieWorkaroundsV2.c │ │ │ │ │ └── PcieWorkaroundsV2.h │ │ │ │ │ ├── GnbSSocketLib │ │ │ │ │ └── GnbSSocketLib.c │ │ │ │ │ ├── GnbSbLib │ │ │ │ │ ├── GnbSbLib.c │ │ │ │ │ ├── GnbSbLib.h │ │ │ │ │ └── GnbSbPcie.c │ │ │ │ │ ├── GnbScsLibV1 │ │ │ │ │ └── GnbScsLibV1.c │ │ │ │ │ ├── GnbSmuLibV7 │ │ │ │ │ ├── GnbSmuInitLibV7.c │ │ │ │ │ └── GnbSmuInitLibV7.h │ │ │ │ │ ├── GnbSview │ │ │ │ │ └── GnbSview.c │ │ │ │ │ ├── GnbTable │ │ │ │ │ ├── GnbTable.c │ │ │ │ │ └── GnbTable.h │ │ │ │ │ └── GnbUraLibV1 │ │ │ │ │ └── GnbUraLibV1.c │ │ │ ├── HT │ │ │ │ ├── Fam16 │ │ │ │ │ ├── htNbFam16.c │ │ │ │ │ ├── htNbUtilitiesFam16.c │ │ │ │ │ └── htNbUtilitiesFam16.h │ │ │ │ ├── htFeat.c │ │ │ │ ├── htFeat.h │ │ │ │ ├── htInterface.c │ │ │ │ ├── htInterface.h │ │ │ │ ├── htInterfaceCoherent.c │ │ │ │ ├── htInterfaceCoherent.h │ │ │ │ ├── htInterfaceGeneral.c │ │ │ │ ├── htInterfaceGeneral.h │ │ │ │ ├── htInterfaceNonCoherent.c │ │ │ │ ├── htInterfaceNonCoherent.h │ │ │ │ ├── htMain.c │ │ │ │ ├── htNb.c │ │ │ │ ├── htNb.h │ │ │ │ ├── htNbCommonHardware.h │ │ │ │ ├── htNotify.c │ │ │ │ ├── htNotify.h │ │ │ │ └── htTopologies.h │ │ │ ├── IDS │ │ │ │ ├── Debug │ │ │ │ │ ├── IdsDebug.c │ │ │ │ │ ├── IdsDebugPrint.c │ │ │ │ │ ├── IdsDebugPrint.h │ │ │ │ │ ├── IdsDpHdtout.c │ │ │ │ │ ├── IdsDpHdtout.h │ │ │ │ │ └── IdsDpSerial.c │ │ │ │ ├── Family │ │ │ │ │ └── 0x16 │ │ │ │ │ │ └── KB │ │ │ │ │ │ ├── IdsF16KbAllService.c │ │ │ │ │ │ ├── IdsF16KbAllService.h │ │ │ │ │ │ └── IdsF16KbNvDef.h │ │ │ │ ├── IdsLib.h │ │ │ │ ├── Library │ │ │ │ │ ├── IdsLib.c │ │ │ │ │ └── IdsRegAcc.h │ │ │ │ └── OptionsIds.h │ │ │ └── Mem │ │ │ │ ├── Ardk │ │ │ │ └── ma.c │ │ │ │ ├── Feat │ │ │ │ ├── CRAT │ │ │ │ │ └── mfCrat.h │ │ │ │ ├── CSINTLV │ │ │ │ │ ├── mfcsi.c │ │ │ │ │ └── mfcsi.h │ │ │ │ ├── DMI │ │ │ │ │ └── mfDMI.c │ │ │ │ ├── ECC │ │ │ │ │ ├── mfecc.c │ │ │ │ │ ├── mfecc.h │ │ │ │ │ └── mfemp.c │ │ │ │ ├── EXCLUDIMM │ │ │ │ │ └── mfdimmexclud.c │ │ │ │ ├── IDENDIMM │ │ │ │ │ ├── mfidendimm.c │ │ │ │ │ └── mfidendimm.h │ │ │ │ ├── LVDDR3 │ │ │ │ │ ├── mflvddr3.c │ │ │ │ │ └── mflvddr3.h │ │ │ │ ├── MEMCLR │ │ │ │ │ └── mfmemclr.c │ │ │ │ ├── ODTHERMAL │ │ │ │ │ ├── mfodthermal.c │ │ │ │ │ └── mfodthermal.h │ │ │ │ ├── PARTRN │ │ │ │ │ ├── mfParallelTraining.c │ │ │ │ │ └── mfStandardTraining.c │ │ │ │ ├── RDWR2DTRAINING │ │ │ │ │ ├── KB │ │ │ │ │ │ └── mfRdWr2DKb.c │ │ │ │ │ ├── mfRdDqs2DTraining.c │ │ │ │ │ ├── mfRdWr2DEyeRimSearch.c │ │ │ │ │ ├── mfRdWr2DPatternGeneration.c │ │ │ │ │ ├── mfRdWr2DTraining.c │ │ │ │ │ └── mfRdWr2DTraining.h │ │ │ │ ├── S3 │ │ │ │ │ └── mfs3.c │ │ │ │ └── TABLE │ │ │ │ │ └── mftds.c │ │ │ │ ├── Main │ │ │ │ ├── KB │ │ │ │ │ └── mmflowkb.c │ │ │ │ ├── mdef.c │ │ │ │ ├── merrhdl.c │ │ │ │ ├── minit.c │ │ │ │ ├── mm.c │ │ │ │ ├── mmConditionalPso.c │ │ │ │ ├── mmEcc.c │ │ │ │ ├── mmExcludeDimm.c │ │ │ │ ├── mmLvDdr3.c │ │ │ │ ├── mmMemClr.c │ │ │ │ ├── mmMemRestore.c │ │ │ │ ├── mmNodeInterleave.c │ │ │ │ ├── mmOnlineSpare.c │ │ │ │ ├── mmParallelTraining.c │ │ │ │ ├── mmStandardTraining.c │ │ │ │ ├── mmUmaAlloc.c │ │ │ │ ├── mmflow.c │ │ │ │ ├── mmlvddr3.h │ │ │ │ ├── mu.c │ │ │ │ └── muc.c │ │ │ │ ├── NB │ │ │ │ ├── KB │ │ │ │ │ ├── mnS3kb.h │ │ │ │ │ ├── mndctkb.c │ │ │ │ │ ├── mnflowkb.c │ │ │ │ │ ├── mnidendimmkb.c │ │ │ │ │ ├── mnkb.c │ │ │ │ │ ├── mnkb.h │ │ │ │ │ ├── mnmctkb.c │ │ │ │ │ ├── mnotkb.c │ │ │ │ │ ├── mnphykb.c │ │ │ │ │ ├── mnregkb.c │ │ │ │ │ └── mns3kb.c │ │ │ │ ├── mn.c │ │ │ │ ├── mnS3.c │ │ │ │ ├── mndct.c │ │ │ │ ├── mnfeat.c │ │ │ │ ├── mnflow.c │ │ │ │ ├── mnmct.c │ │ │ │ ├── mnphy.c │ │ │ │ ├── mnreg.c │ │ │ │ └── mntrain3.c │ │ │ │ ├── Ps │ │ │ │ ├── KB │ │ │ │ │ ├── FT3 │ │ │ │ │ │ └── mpSkbft3.c │ │ │ │ │ ├── mpSkb3.c │ │ │ │ │ ├── mpUkb3.c │ │ │ │ │ └── mpkb3.c │ │ │ │ ├── mp.c │ │ │ │ ├── mpmaxfreq.c │ │ │ │ ├── mpmr0.c │ │ │ │ ├── mpodtpat.c │ │ │ │ ├── mprtt.c │ │ │ │ ├── mps2d.c │ │ │ │ └── mpsao.c │ │ │ │ ├── Tech │ │ │ │ ├── DDR3 │ │ │ │ │ ├── mt3.c │ │ │ │ │ ├── mt3.h │ │ │ │ │ ├── mtlrdimm3.h │ │ │ │ │ ├── mtot3.c │ │ │ │ │ ├── mtot3.h │ │ │ │ │ ├── mtrci3.c │ │ │ │ │ ├── mtrci3.h │ │ │ │ │ ├── mtsdi3.c │ │ │ │ │ ├── mtsdi3.h │ │ │ │ │ ├── mtspd3.c │ │ │ │ │ ├── mtspd3.h │ │ │ │ │ ├── mttecc3.c │ │ │ │ │ └── mttwl3.c │ │ │ │ ├── mt.c │ │ │ │ ├── mthdi.c │ │ │ │ ├── mttEdgeDetect.c │ │ │ │ ├── mttEdgeDetect.h │ │ │ │ ├── mttRdDqs2DEyeRimSearch.c │ │ │ │ ├── mttRdDqs2DTraining.c │ │ │ │ ├── mttdimbt.c │ │ │ │ ├── mttecc.c │ │ │ │ ├── mtthrc.c │ │ │ │ ├── mtthrcSeedTrain.c │ │ │ │ ├── mttml.c │ │ │ │ ├── mttoptsrc.c │ │ │ │ └── mttsrc.c │ │ │ │ ├── ma.h │ │ │ │ ├── merrhdl.h │ │ │ │ ├── mfParallelTraining.h │ │ │ │ ├── mfStandardTraining.h │ │ │ │ ├── mfmemclr.h │ │ │ │ ├── mfs3.h │ │ │ │ ├── mftds.h │ │ │ │ ├── mm.h │ │ │ │ ├── mn.h │ │ │ │ ├── mnpmu.h │ │ │ │ ├── mnreg.h │ │ │ │ ├── mp.h │ │ │ │ ├── mport.h │ │ │ │ ├── mt.h │ │ │ │ └── mu.h │ │ │ └── gcccar.inc │ ├── cimx │ │ ├── Makefile.inc │ │ ├── rd890 │ │ │ ├── HotplugFirmware.h │ │ │ ├── Makefile.inc │ │ │ ├── amdAcpiIvrs.c │ │ │ ├── amdAcpiIvrs.h │ │ │ ├── amdAcpiLib.c │ │ │ ├── amdAcpiLib.h │ │ │ ├── amdAcpiMadt.c │ │ │ ├── amdAcpiMadt.h │ │ │ ├── amdDebugOutLib.c │ │ │ ├── amdDebugOutLib.h │ │ │ ├── amdSbLib.c │ │ │ ├── amdSbLib.h │ │ │ ├── nbDef.h │ │ │ ├── nbDispatcher.c │ │ │ ├── nbEventLog.c │ │ │ ├── nbEventLog.h │ │ │ ├── nbHtInit.c │ │ │ ├── nbHtInit.h │ │ │ ├── nbHtInterface.c │ │ │ ├── nbInit.c │ │ │ ├── nbInit.h │ │ │ ├── nbInitializer.c │ │ │ ├── nbInitializer.h │ │ │ ├── nbInterface.c │ │ │ ├── nbIoApic.c │ │ │ ├── nbIoApic.h │ │ │ ├── nbIommu.c │ │ │ ├── nbIommu.h │ │ │ ├── nbLib.c │ │ │ ├── nbLib.h │ │ │ ├── nbMaskedMemoryInit.c │ │ │ ├── nbMaskedMemoryInit.h │ │ │ ├── nbMaskedMemoryInit32.S │ │ │ ├── nbMiscInit.c │ │ │ ├── nbMiscInit.h │ │ │ ├── nbModuleInfo.c │ │ │ ├── nbPcie.h │ │ │ ├── nbPcieAspm.c │ │ │ ├── nbPcieAspm.h │ │ │ ├── nbPcieCplBuffers.c │ │ │ ├── nbPcieCplBuffers.h │ │ │ ├── nbPcieEarlyHwLib.c │ │ │ ├── nbPcieHotplug.c │ │ │ ├── nbPcieHotplug.h │ │ │ ├── nbPcieInitEarly.c │ │ │ ├── nbPcieInitLate.c │ │ │ ├── nbPcieLateHwLib.c │ │ │ ├── nbPcieLib.c │ │ │ ├── nbPcieLinkWidth.c │ │ │ ├── nbPcieLinkWidth.h │ │ │ ├── nbPciePllControl.c │ │ │ ├── nbPciePllControl.h │ │ │ ├── nbPciePortRemap.c │ │ │ ├── nbPciePortRemap.h │ │ │ ├── nbPcieRecovery.c │ │ │ ├── nbPcieSb.c │ │ │ ├── nbPcieSb.h │ │ │ ├── nbPcieWorkarounds.c │ │ │ ├── nbPcieWorkarounds.h │ │ │ ├── nbPowerOnReset.c │ │ │ ├── nbRecovery.c │ │ │ ├── nbRecovery.h │ │ │ ├── nbRecoveryInitializer.c │ │ │ ├── nbRegisters.h │ │ │ └── nbType.h │ │ ├── sb700 │ │ │ ├── ACPILIB.c │ │ │ ├── ACPILIB.h │ │ │ ├── AMDLIB.c │ │ │ ├── AMDSBLIB.c │ │ │ ├── AZALIA.c │ │ │ ├── DEBUG.c │ │ │ ├── DISPATCHER.c │ │ │ ├── EC.c │ │ │ ├── FLASH.c │ │ │ ├── LEGACY.c │ │ │ ├── Makefile.inc │ │ │ ├── OEM.h │ │ │ ├── SATA.c │ │ │ ├── SB700.h │ │ │ ├── SBCMN.c │ │ │ ├── SBCMNLIB.c │ │ │ ├── SBCMNLIB.h │ │ │ ├── SBDEF.h │ │ │ ├── SBMAIN.c │ │ │ ├── SBPort.c │ │ │ ├── SBTYPE.h │ │ │ ├── SMM.c │ │ │ ├── USB.c │ │ │ └── sbAMDLIB.h │ │ ├── sb800 │ │ │ ├── ACPILIB.c │ │ │ ├── ACPILIB.h │ │ │ ├── AMDLIB.c │ │ │ ├── AMDSBLIB.c │ │ │ ├── AMDSBLIB.h │ │ │ ├── AZALIA.c │ │ │ ├── DISPATCHER.c │ │ │ ├── EC.c │ │ │ ├── ECLIB.c │ │ │ ├── ECfan.h │ │ │ ├── ECfanLIB.c │ │ │ ├── ECfanc.c │ │ │ ├── GEC.c │ │ │ ├── Gpp.c │ │ │ ├── IOLIB.c │ │ │ ├── LEGACY.c │ │ │ ├── MEMLIB.c │ │ │ ├── Makefile.inc │ │ │ ├── OEM.h │ │ │ ├── PCILIB.c │ │ │ ├── PMIO2LIB.c │ │ │ ├── PMIOLIB.c │ │ │ ├── SATA.c │ │ │ ├── SB800.h │ │ │ ├── SBCMN.c │ │ │ ├── SBDEF.h │ │ │ ├── SBMAIN.c │ │ │ ├── SBPELIB.c │ │ │ ├── SBPort.c │ │ │ ├── SBSUBFUN.h │ │ │ ├── SBTYPE.h │ │ │ ├── SMM.c │ │ │ ├── SbModInf.c │ │ │ └── USB.c │ │ └── sb900 │ │ │ ├── AcpiLib.c │ │ │ ├── AcpiLib.h │ │ │ ├── AmdLib.c │ │ │ ├── AmdSbLib.c │ │ │ ├── AmdSbLib.h │ │ │ ├── Azalia.c │ │ │ ├── Debug.c │ │ │ ├── Dispatcher.c │ │ │ ├── Ec.c │ │ │ ├── EcFan.h │ │ │ ├── EcFanLib.c │ │ │ ├── EcFanc.c │ │ │ ├── EcLib.c │ │ │ ├── Gec.c │ │ │ ├── Gpp.c │ │ │ ├── GppHp.c │ │ │ ├── Hudson-2.h │ │ │ ├── Hwm.c │ │ │ ├── IoLib.c │ │ │ ├── Legacy.c │ │ │ ├── Makefile.inc │ │ │ ├── MemLib.c │ │ │ ├── OEM.h │ │ │ ├── PciLib.c │ │ │ ├── Pmio2Lib.c │ │ │ ├── PmioLib.c │ │ │ ├── SBPort.c │ │ │ ├── Sata.c │ │ │ ├── SbBiosRamUsage.h │ │ │ ├── SbCmn.c │ │ │ ├── SbDef.h │ │ │ ├── SbMain.c │ │ │ ├── SbModInf.c │ │ │ ├── SbPeLib.c │ │ │ ├── SbSubFun.h │ │ │ ├── SbType.h │ │ │ ├── Smm.c │ │ │ └── Usb.c │ └── pi │ │ ├── 00630F01 │ │ ├── AGESA.h │ │ ├── AMD.h │ │ ├── Dispatcher.h │ │ ├── Include │ │ │ ├── Filecode.h │ │ │ ├── Ids.h │ │ │ ├── IdsPerf.h │ │ │ ├── Options.h │ │ │ ├── PlatformMemoryConfiguration.h │ │ │ └── Topology.h │ │ ├── Porting.h │ │ ├── Proc │ │ │ ├── CPU │ │ │ │ ├── Family │ │ │ │ │ └── cpuFamRegisters.h │ │ │ │ ├── Feature │ │ │ │ │ └── cpuCacheInit.h │ │ │ │ ├── cpuApicUtilities.h │ │ │ │ ├── cpuEarlyInit.h │ │ │ │ ├── cpuLateInit.h │ │ │ │ ├── cpuRegisters.h │ │ │ │ └── heapManager.h │ │ │ ├── Common │ │ │ │ └── AmdFch.h │ │ │ ├── Fch │ │ │ │ ├── Common │ │ │ │ │ ├── AcpiLib.h │ │ │ │ │ ├── FchBiosRamUsage.h │ │ │ │ │ ├── FchCommonCfg.h │ │ │ │ │ └── FchDef.h │ │ │ │ ├── Fch.h │ │ │ │ └── FchPlatform.h │ │ │ └── IDS │ │ │ │ ├── Debug │ │ │ │ ├── IdsDebugPrint.h │ │ │ │ ├── IdsDpHdtout.h │ │ │ │ └── IdsDpRam.h │ │ │ │ ├── Family │ │ │ │ └── 0x15 │ │ │ │ │ ├── IdsF15AllService.h │ │ │ │ │ ├── KV │ │ │ │ │ ├── IdsF15KvAllService.h │ │ │ │ │ └── IdsF15KvNvDef.h │ │ │ │ │ └── TN │ │ │ │ │ ├── IdsF15TnAllService.h │ │ │ │ │ └── IdsF15TnNvDef.h │ │ │ │ ├── IdsLib.h │ │ │ │ └── OptionsIds.h │ │ └── binaryPI │ │ │ ├── AGESA.c │ │ │ ├── FieldAccessors.h │ │ │ ├── gcc-intrin.h │ │ │ └── gcccar.inc │ │ ├── 00660F01 │ │ ├── AGESA.h │ │ ├── AMD.h │ │ ├── Dispatcher.h │ │ ├── Include │ │ │ ├── Filecode.h │ │ │ ├── GeneralServices.h │ │ │ ├── Ids.h │ │ │ ├── IdsPerf.h │ │ │ ├── Options.h │ │ │ ├── PlatformMemoryConfiguration.h │ │ │ └── Topology.h │ │ ├── Porting.h │ │ ├── Proc │ │ │ ├── CPU │ │ │ │ ├── Family │ │ │ │ │ └── cpuFamRegisters.h │ │ │ │ ├── Feature │ │ │ │ │ └── cpuCacheInit.h │ │ │ │ ├── cpuEarlyInit.h │ │ │ │ ├── cpuLateInit.h │ │ │ │ ├── cpuRegisters.h │ │ │ │ └── heapManager.h │ │ │ ├── Common │ │ │ │ └── AmdFch.h │ │ │ ├── Fch │ │ │ │ ├── Common │ │ │ │ │ ├── AcpiLib.h │ │ │ │ │ ├── FchBiosRamUsage.h │ │ │ │ │ ├── FchCommonCfg.h │ │ │ │ │ ├── FchDef.h │ │ │ │ │ ├── FchLib.c │ │ │ │ │ ├── FchPeLib.c │ │ │ │ │ ├── MemLib.c │ │ │ │ │ └── PciLib.c │ │ │ │ ├── Fch.h │ │ │ │ ├── FchPlatform.h │ │ │ │ └── Kern │ │ │ │ │ └── KernFch.h │ │ │ └── Psp │ │ │ │ └── PspBaseLib │ │ │ │ ├── PspBaseLib.c │ │ │ │ ├── PspBaseLib.h │ │ │ │ └── PspDirectory.h │ │ └── binaryPI │ │ │ ├── AGESA.c │ │ │ ├── FieldAccessors.h │ │ │ ├── OptionsIds.h │ │ │ ├── gcc-intrin.h │ │ │ └── gcccar.inc │ │ ├── 00670F00 │ │ ├── AGESA.h │ │ ├── AMD.h │ │ ├── Dispatcher.h │ │ ├── Include │ │ │ ├── Filecode.h │ │ │ ├── GeneralServices.h │ │ │ ├── Ids.h │ │ │ ├── IdsPerf.h │ │ │ ├── Options.h │ │ │ ├── PlatformMemoryConfiguration.h │ │ │ └── Topology.h │ │ ├── Porting.h │ │ ├── Proc │ │ │ ├── CPU │ │ │ │ ├── Family │ │ │ │ │ └── cpuFamRegisters.h │ │ │ │ ├── Feature │ │ │ │ │ └── cpuCacheInit.h │ │ │ │ ├── Table.h │ │ │ │ ├── cpuEarlyInit.h │ │ │ │ ├── cpuFamilyTranslation.c │ │ │ │ ├── cpuFamilyTranslation.h │ │ │ │ ├── cpuLateInit.h │ │ │ │ ├── cpuRegisters.h │ │ │ │ ├── cpuServices.h │ │ │ │ └── heapManager.h │ │ │ ├── Common │ │ │ │ └── AmdFch.h │ │ │ ├── Fch │ │ │ │ ├── Common │ │ │ │ │ ├── AcpiLib.h │ │ │ │ │ ├── FchBiosRamUsage.h │ │ │ │ │ ├── FchCommonCfg.h │ │ │ │ │ ├── FchDef.h │ │ │ │ │ ├── FchLib.c │ │ │ │ │ ├── FchPeLib.c │ │ │ │ │ ├── MemLib.c │ │ │ │ │ └── PciLib.c │ │ │ │ ├── Fch.h │ │ │ │ ├── FchPlatform.h │ │ │ │ └── Kern │ │ │ │ │ └── KernFch.h │ │ │ └── Psp │ │ │ │ └── PspBaseLib │ │ │ │ ├── PspBaseLib.c │ │ │ │ ├── PspBaseLib.h │ │ │ │ └── PspDirectory.h │ │ └── binaryPI │ │ │ ├── AGESA.c │ │ │ ├── FieldAccessors.h │ │ │ ├── OptionsIds.h │ │ │ ├── gcc-intrin.h │ │ │ └── gcccar.inc │ │ ├── 00730F01 │ │ ├── AGESA.h │ │ ├── AMD.h │ │ ├── Dispatcher.h │ │ ├── Include │ │ │ ├── Filecode.h │ │ │ ├── Ids.h │ │ │ ├── IdsPerf.h │ │ │ ├── Options.h │ │ │ ├── PlatformMemoryConfiguration.h │ │ │ └── Topology.h │ │ ├── Porting.h │ │ ├── Proc │ │ │ ├── CPU │ │ │ │ ├── Family │ │ │ │ │ └── cpuFamRegisters.h │ │ │ │ ├── Feature │ │ │ │ │ └── cpuCacheInit.h │ │ │ │ ├── cpuApicUtilities.h │ │ │ │ ├── cpuEarlyInit.h │ │ │ │ ├── cpuLateInit.h │ │ │ │ ├── cpuRegisters.h │ │ │ │ └── heapManager.h │ │ │ ├── Common │ │ │ │ └── AmdFch.h │ │ │ └── Fch │ │ │ │ ├── Common │ │ │ │ ├── AcpiLib.h │ │ │ │ ├── FchBiosRamUsage.h │ │ │ │ ├── FchCommonCfg.h │ │ │ │ └── FchDef.h │ │ │ │ ├── Fch.h │ │ │ │ └── FchPlatform.h │ │ └── binaryPI │ │ │ ├── AGESA.c │ │ │ ├── FieldAccessors.h │ │ │ ├── OptionsIds.h │ │ │ ├── gcc-intrin.h │ │ │ └── gcccar.inc │ │ ├── Kconfig │ │ ├── Lib │ │ ├── amdlib.c │ │ ├── amdlib.h │ │ └── imc │ │ │ ├── HwmLateService.c │ │ │ └── ImcLib.c │ │ └── Makefile.inc │ ├── google │ ├── Kconfig │ ├── Makefile.inc │ ├── chromeos │ │ ├── Kconfig │ │ ├── Makefile.inc │ │ ├── acpi.c │ │ ├── acpi │ │ │ ├── chromeos.asl │ │ │ ├── gnvs.asl │ │ │ └── ramoops.asl │ │ ├── build-snow.sh │ │ ├── chromeos.h │ │ ├── cros_vpd.c │ │ ├── cros_vpd.h │ │ ├── elog.c │ │ ├── gnvs.c │ │ ├── gnvs.h │ │ ├── lib_vpd.h │ │ ├── ramoops.c │ │ ├── sar.c │ │ ├── symbols.h │ │ ├── tpm2.c │ │ ├── vpd_calibration.c │ │ ├── vpd_decode.c │ │ ├── vpd_mac.c │ │ ├── vpd_serialno.c │ │ ├── vpd_tables.h │ │ ├── watchdog.c │ │ └── wrdd.c │ └── smbios.c │ ├── intel │ ├── Kconfig │ ├── Makefile.inc │ ├── edk2 │ │ ├── UDK2015 │ │ │ ├── IntelFsp2Pkg │ │ │ │ └── Include │ │ │ │ │ ├── FspDataTable.h │ │ │ │ │ ├── FspEas.h │ │ │ │ │ ├── FspEas │ │ │ │ │ └── FspApi.h │ │ │ │ │ ├── FspGlobalData.h │ │ │ │ │ ├── FspMeasurePointId.h │ │ │ │ │ ├── FspStatusCode.h │ │ │ │ │ └── Guid │ │ │ │ │ ├── FspHeaderFile.h │ │ │ │ │ └── GuidHobFspEas.h │ │ │ └── MdePkg │ │ │ │ └── Include │ │ │ │ ├── Base.h │ │ │ │ ├── Guid │ │ │ │ ├── FirmwareFileSystem2.h │ │ │ │ ├── HiiFormMapMethodGuid.h │ │ │ │ ├── PcAnsi.h │ │ │ │ └── WinCertificate.h │ │ │ │ ├── Ia32 │ │ │ │ └── ProcessorBind.h │ │ │ │ ├── IndustryStandard │ │ │ │ ├── Acpi.h │ │ │ │ ├── Acpi10.h │ │ │ │ ├── Acpi20.h │ │ │ │ ├── Acpi30.h │ │ │ │ ├── Acpi40.h │ │ │ │ ├── Acpi50.h │ │ │ │ ├── Acpi51.h │ │ │ │ ├── Acpi60.h │ │ │ │ ├── AcpiAml.h │ │ │ │ ├── Bluetooth.h │ │ │ │ └── PeImage.h │ │ │ │ ├── Library │ │ │ │ └── HobLib.h │ │ │ │ ├── Pi │ │ │ │ ├── PiBootMode.h │ │ │ │ ├── PiFirmwareFile.h │ │ │ │ ├── PiFirmwareVolume.h │ │ │ │ └── PiHob.h │ │ │ │ ├── Protocol │ │ │ │ ├── DevicePath.h │ │ │ │ ├── GraphicsOutput.h │ │ │ │ ├── SimpleTextIn.h │ │ │ │ ├── SimpleTextInEx.h │ │ │ │ └── SimpleTextOut.h │ │ │ │ ├── Uefi.h │ │ │ │ ├── Uefi │ │ │ │ ├── UefiBaseType.h │ │ │ │ ├── UefiGpt.h │ │ │ │ ├── UefiInternalFormRepresentation.h │ │ │ │ ├── UefiMultiPhase.h │ │ │ │ ├── UefiPxe.h │ │ │ │ └── UefiSpec.h │ │ │ │ └── X64 │ │ │ │ └── ProcessorBind.h │ │ └── uefi_2.4 │ │ │ ├── MdePkg │ │ │ └── Include │ │ │ │ ├── Base.h │ │ │ │ ├── Guid │ │ │ │ ├── FirmwareFileSystem2.h │ │ │ │ └── WinCertificate.h │ │ │ │ ├── Ia32 │ │ │ │ └── ProcessorBind.h │ │ │ │ ├── IndustryStandard │ │ │ │ └── PeImage.h │ │ │ │ ├── Library │ │ │ │ └── HobLib.h │ │ │ │ ├── Pi │ │ │ │ ├── PiBootMode.h │ │ │ │ ├── PiFirmwareFile.h │ │ │ │ ├── PiFirmwareVolume.h │ │ │ │ └── PiHob.h │ │ │ │ ├── Protocol │ │ │ │ └── GraphicsOutput.h │ │ │ │ ├── Uefi │ │ │ │ ├── UefiBaseType.h │ │ │ │ └── UefiMultiPhase.h │ │ │ │ └── X64 │ │ │ │ └── ProcessorBind.h │ │ │ └── uefi_types.h │ ├── fsp │ │ ├── fsp1_1 │ │ │ ├── IntelFspPkg │ │ │ │ └── Include │ │ │ │ │ ├── FspApi.h │ │ │ │ │ └── FspInfoHeader.h │ │ │ ├── braswell │ │ │ │ └── FspUpdVpd.h │ │ │ ├── checklist │ │ │ │ ├── bootblock_complete.dat │ │ │ │ ├── bootblock_optional.dat │ │ │ │ ├── ramstage_complete.dat │ │ │ │ ├── ramstage_optional.dat │ │ │ │ ├── romstage_complete.dat │ │ │ │ ├── romstage_optional.dat │ │ │ │ ├── verstage_complete.dat │ │ │ │ └── verstage_optional.dat │ │ │ ├── quark │ │ │ │ └── FspUpdVpd.h │ │ │ └── skylake │ │ │ │ └── FspUpdVpd.h │ │ └── fsp2_0 │ │ │ ├── apollolake │ │ │ ├── FspUpd.h │ │ │ ├── FspmUpd.h │ │ │ └── FspsUpd.h │ │ │ ├── quark │ │ │ ├── FspUpd.h │ │ │ ├── FspmUpd.h │ │ │ ├── FspsUpd.h │ │ │ └── FsptUpd.h │ │ │ └── skykabylake │ │ │ ├── ConfigBlock │ │ │ └── CpuConfigFspData.h │ │ │ ├── FspUpd.h │ │ │ ├── FspmUpd.h │ │ │ ├── FspsUpd.h │ │ │ └── MemInfoHob.h │ └── fsp1_0 │ │ ├── baytrail │ │ ├── absf │ │ │ ├── minnowmax_1gb.absf │ │ │ └── minnowmax_2gb.absf │ │ ├── include │ │ │ ├── azalia.h │ │ │ ├── fsp.h │ │ │ ├── fspapi.h │ │ │ ├── fspffs.h │ │ │ ├── fspfv.h │ │ │ ├── fsphob.h │ │ │ ├── fspinfoheader.h │ │ │ ├── fspplatform.h │ │ │ ├── fsptypes.h │ │ │ └── fspvpd.h │ │ └── srx │ │ │ ├── board_fsp.c │ │ │ └── fsphob.c │ │ ├── broadwell_de │ │ ├── include │ │ │ ├── fsp.h │ │ │ ├── fspapi.h │ │ │ ├── fspbootmode.h │ │ │ ├── fspffs.h │ │ │ ├── fspfv.h │ │ │ ├── fsphob.h │ │ │ ├── fspinfoheader.h │ │ │ ├── fspplatform.h │ │ │ ├── fspsupport.h │ │ │ ├── fsptypes.h │ │ │ └── fspvpd.h │ │ └── srx │ │ │ └── fspsupport.c │ │ ├── ivybridge_bd82x6x │ │ ├── include │ │ │ ├── fspapi.h │ │ │ ├── fspffs.h │ │ │ ├── fspfv.h │ │ │ ├── fsphob.h │ │ │ ├── fspinfoheader.h │ │ │ ├── fspplatform.h │ │ │ ├── fsptypes.h │ │ │ ├── mem_config.h │ │ │ └── peifsp.h │ │ └── srx │ │ │ └── fsphob.c │ │ ├── ivybridge_i89xx │ │ ├── include │ │ │ ├── fsp_vpd.h │ │ │ ├── fspapi.h │ │ │ ├── fspffs.h │ │ │ ├── fspfv.h │ │ │ ├── fsphob.h │ │ │ ├── fspinfoheader.h │ │ │ ├── fspplatform.h │ │ │ ├── fsptypes.h │ │ │ ├── mem_config.h │ │ │ └── peifsp.h │ │ └── srx │ │ │ └── fsphob.c │ │ └── rangeley │ │ ├── include │ │ ├── fspapi.h │ │ ├── fspbootmode.h │ │ ├── fspffs.h │ │ ├── fspfv.h │ │ ├── fspguid.h │ │ ├── fsphob.h │ │ ├── fspinfoheader.h │ │ ├── fspplatform.h │ │ ├── fspsupport.h │ │ ├── fsptypes.h │ │ └── fspvpd.h │ │ └── srx │ │ ├── fsp_support.c │ │ └── fsphob.c │ └── siemens │ ├── Kconfig │ ├── Makefile.inc │ └── hwilib │ ├── Makefile.inc │ ├── hwilib.c │ └── hwilib.h ├── toolchain.inc └── util ├── abuild ├── abuild ├── abuild.1 └── getopt.c ├── acpi └── acpidump-all ├── amdfwtool ├── Makefile └── amdfwtool.c ├── amdtools ├── README ├── example_input │ ├── coreboot-48G-667MHz-memsettings │ ├── coreboot-48G-667MHz-memsettings-20090909h │ ├── lspci-cb-48G-667MHz-18.2-20090909e │ └── lspci-prop-48G-667MHz-18.2 ├── k8-compare-pci-space.pl ├── k8-interpret-extended-memory-settings.pl ├── k8-read-mem-settings.sh └── parse-bkdg.pl ├── archive ├── Makefile ├── archive.c └── archive.h ├── arm_boot_tools └── mksunxiboot │ └── mksunxiboot.c ├── autoport ├── azalia.go ├── bd82x6x.go ├── ec_fixme.go ├── ec_lenovo.go ├── ec_none.go ├── log_maker.go ├── log_reader.go ├── main.go ├── rce823.go ├── readme.md ├── root.go └── sandybridge.go ├── bimgtool ├── Makefile └── bimgtool.c ├── blobtool ├── Makefile ├── Makefile.inc ├── blobtool.l ├── blobtool.lex.c_shipped ├── blobtool.tab.c_shipped ├── blobtool.tab.h_shipped ├── blobtool.y ├── gbe-ich9m.set ├── gbe-ich9m.spec ├── ifd-x200.set ├── ifd-x200.spec └── it8718f-ec.spec ├── board_status ├── README ├── board_status.sh ├── getrevision.sh ├── go │ └── src │ │ ├── cbfs │ │ └── cbfs.go │ │ ├── cbtables │ │ └── cbtables.go │ │ ├── kconfig │ │ └── kconfig.go │ │ └── main │ │ └── board_status.go ├── set_up_live_image.sh └── to-wiki │ ├── README │ ├── bucketize.sh │ ├── foreword.wiki │ ├── push-to-wiki.sh │ ├── status-to-wiki.sh │ └── towiki.sh ├── broadcom ├── Makefile.inc ├── khmacsha256 ├── secimage │ ├── Makefile │ ├── Makefile.inc │ ├── crypto.c │ ├── io.c │ ├── misc.c │ ├── sbi.c │ └── secimage.h └── unauth.cfg ├── cbfstool ├── EXAMPLE ├── Makefile ├── Makefile.inc ├── ProcessorBind.h ├── README.fmaptool ├── cbfs-mkpayload.c ├── cbfs-mkstage.c ├── cbfs-payload-linux.c ├── cbfs.h ├── cbfs_image.c ├── cbfs_image.h ├── cbfs_sections.c ├── cbfs_sections.h ├── cbfscomptool.c ├── cbfstool.c ├── coff.h ├── common.c ├── common.h ├── compress.c ├── console │ └── console.h ├── default-x86.fmd ├── default.fmd ├── elf.h ├── elfheaders.c ├── elfparsing.h ├── fit.c ├── fit.h ├── flashmap │ ├── fmap.c │ ├── fmap.h │ ├── kv_pair.c │ ├── kv_pair.h │ ├── valstr.c │ └── valstr.h ├── flashmap_tests.c ├── fmap_from_fmd.c ├── fmap_from_fmd.h ├── fmaptool.c ├── fmd.c ├── fmd.h ├── fmd_parser.c_shipped ├── fmd_parser.h_shipped ├── fmd_parser.y ├── fmd_scanner.c_shipped ├── fmd_scanner.h_shipped ├── fmd_scanner.l ├── fv.h ├── ifwitool.c ├── linux.h ├── linux_trampoline.S ├── linux_trampoline.c ├── linux_trampoline.h ├── lz4 │ ├── Makefile │ ├── NEWS │ ├── README.md │ ├── lib │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── liblz4.pc.in │ │ ├── lz4.c │ │ ├── lz4.h │ │ ├── lz4frame.c │ │ ├── lz4frame.h │ │ ├── lz4frame_static.h │ │ ├── lz4hc.c │ │ ├── lz4hc.h │ │ ├── xxhash.c │ │ └── xxhash.h │ ├── lz4_Block_format.md │ └── lz4_Frame_format.md ├── lzma │ ├── C │ │ ├── LzFind.c │ │ ├── LzFind.h │ │ ├── LzHash.h │ │ ├── LzmaDec.c │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.c │ │ ├── LzmaEnc.h │ │ └── Types.h │ └── lzma.c ├── option.h ├── partitioned_file.c ├── partitioned_file.h ├── rmodtool.c ├── rmodule.c ├── rmodule.h ├── swab.h └── xdr.c ├── cbmem ├── Makefile └── cbmem.c ├── checklist └── Makefile.inc ├── chromeos ├── README.md ├── crosfirmware.sh └── extract_blobs.sh ├── crossgcc ├── Dockerfile ├── Makefile ├── Makefile.inc ├── README ├── buildgcc ├── getopt.c ├── patches │ ├── acpica-unix2-20161222_iasl.patch │ ├── binutils-2.28_mips-gold.patch │ ├── binutils-2.28_no-bfd-doc.patch │ ├── cfe-3.9.1.src_frontend.patch │ ├── gcc-6.3.0_elf_biarch.patch │ ├── gcc-6.3.0_gnat.patch │ ├── gcc-6.3.0_libgcc.patch │ ├── gcc-6.3.0_memmodel.patch │ ├── gcc-6.3.0_nds32.patch │ ├── gcc-6.3.0_riscv.patch │ ├── gdb-7.12_amd64.patch │ ├── gdb-7.12_no-doc.patch │ ├── gdb-7.12_pythonhome.patch │ └── gmp-6.1.2_freebsd-configure.patch └── sum │ ├── Python-3.5.1.tar.xz.cksum │ ├── acpica-unix2-20161222.tar.gz.cksum │ ├── binutils-2.28.tar.bz2.cksum │ ├── cfe-3.9.1.src.tar.xz.cksum │ ├── clang-tools-extra-3.9.1.src.tar.xz.cksum │ ├── compiler-rt-3.9.1.src.tar.xz.cksum │ ├── expat-2.1.1.tar.bz2.cksum │ ├── gcc-6.3.0.tar.bz2.cksum │ ├── gdb-7.12.tar.xz.cksum │ ├── gmp-6.1.2.tar.xz.cksum │ ├── libelf-0.8.13.tar.gz.cksum │ ├── llvm-3.9.1.src.tar.xz.cksum │ ├── make-4.2.1.tar.bz2.cksum │ ├── mpc-1.0.3.tar.gz.cksum │ └── mpfr-3.1.5.tar.xz.cksum ├── docker ├── Makefile ├── coreboot-jenkins-node │ ├── Dockerfile │ ├── README.md │ └── authorized_keys └── coreboot-sdk │ └── Dockerfile ├── dtd_parser └── dtd_parser.py ├── ectool ├── Makefile ├── ec.c ├── ec.h └── ectool.c ├── exynos ├── fixed_cksum.py └── variable_cksum.py ├── futility ├── Makefile └── Makefile.inc ├── fuzz-tests ├── Makefile ├── README ├── jpeg-test-cases │ ├── coreboot.jpg │ └── coreboot_2.jpg └── jpeg-test.c ├── genbuild_h └── genbuild_h.sh ├── genprof ├── Makefile ├── README ├── genprof.c └── log2dress ├── gitconfig ├── cborg2cros.py ├── commit-msg └── pre-commit ├── ifdfake ├── Makefile └── ifdfake.c ├── ifdtool ├── Makefile ├── ifdtool.c └── ifdtool.h ├── intelmetool ├── Makefile ├── intelmetool.c ├── intelmetool.h ├── me.c ├── me.h ├── me_status.c ├── mmap.c └── mmap.h ├── inteltool ├── Makefile ├── ahci.c ├── amb.c ├── cpu.c ├── gfx.c ├── gpio.c ├── inteltool.8 ├── inteltool.c ├── inteltool.h ├── ivy_memory.c ├── memory.c ├── pcie.c ├── powermgt.c ├── rootcmplx.c └── spi.c ├── intelvbttool ├── Makefile └── intelvbttool.c ├── ipqheader ├── createxbl.py ├── ipqheader.py ├── mbn_tools.py └── mbncat.py ├── k8resdump ├── Makefile └── k8resdump.c ├── kconfig ├── Makefile ├── POTFILES.in ├── check.sh ├── conf.c ├── confdata.c ├── expr.c ├── expr.h ├── gconf.c ├── gconf.glade ├── images.c ├── kxgettext.c ├── list.h ├── lkc.h ├── lkc_proto.h ├── lxdialog │ ├── .gitignore │ ├── BIG.FAT.WARNING │ ├── check-lxdialog.sh │ ├── checklist.c │ ├── dialog.h │ ├── inputbox.c │ ├── menubox.c │ ├── textbox.c │ ├── util.c │ └── yesno.c ├── mconf.c ├── menu.c ├── miniconfig ├── nconf.c ├── nconf.gui.c ├── nconf.h ├── qconf.cc ├── qconf.h ├── regex.c ├── regex.h ├── symbol.c ├── util.c ├── zconf.gperf ├── zconf.hash.c_shipped ├── zconf.l ├── zconf.lex.c_shipped ├── zconf.tab.c_shipped └── zconf.y ├── lint ├── check_lint_tests ├── checkpatch.pl ├── kconfig_lint ├── kconfig_lint_README ├── lint ├── lint-000-license-headers ├── lint-001-no-global-config-in-romstage ├── lint-007-checkpatch ├── lint-008-kconfig ├── lint-014-qualified-types ├── lint-015-final-newlines ├── lint-016-non-ascii ├── lint-stable-000-license-headers ├── lint-stable-003-whitespace ├── lint-stable-004-style-labels ├── lint-stable-005-board-status ├── lint-stable-006-board-name ├── lint-stable-008-kconfig ├── lint-stable-009-old-licenses ├── lint-stable-010-asm-syntax ├── lint-stable-012-executable-bit ├── lint-stable-013-site-local ├── lint-stable-017-configs ├── lint-stable-018-symlinks ├── lint-stable-019-header-files ├── lint-stable-020-signed-off-by ├── remccoms3.sed └── spelling.txt ├── marvell ├── Makefile.inc └── doimage_mv │ ├── Makefile.inc │ ├── bootstrap_def.h │ ├── bootstrap_os.h │ ├── doimage.c │ └── doimage.h ├── me_cleaner ├── README.md └── me_cleaner.py ├── mma ├── mma.conf ├── mma_automated_test.sh ├── mma_get_result.sh └── mma_setup_test.sh ├── msrtool ├── COPYING ├── Makefile.in ├── README ├── TODO ├── configure ├── cs5536.c ├── darwin.c ├── freebsd.c ├── geodegx2.c ├── geodelx.c ├── intel_atom.c ├── intel_core1.c ├── intel_core2_early.c ├── intel_core2_later.c ├── intel_nehalem.c ├── intel_pentium3.c ├── intel_pentium3_early.c ├── intel_pentium4_early.c ├── intel_pentium4_later.c ├── k8.c ├── linux.c ├── msrtool.c ├── msrtool.h ├── msrutils.c └── sys.c ├── mtkheader └── gen-bl-img.py ├── nvidia └── Makefile.inc ├── nvramtool ├── COPYING ├── ChangeLog ├── DISCLAIMER ├── Makefile ├── Makefile.inc ├── README ├── accessors │ ├── cmos-hw-unix.c │ ├── cmos-mem.c │ ├── layout-bin.c │ ├── layout-common.c │ ├── layout-text.c │ └── layout-text.h ├── cbfs.c ├── cbfs.h ├── cli │ ├── nvramtool.8 │ ├── nvramtool.c │ ├── opts.c │ └── opts.h ├── cmos_lowlevel.c ├── cmos_lowlevel.h ├── cmos_ops.c ├── cmos_ops.h ├── common.c ├── common.h ├── compute_ip_checksum.c ├── coreboot_tables.h ├── hexdump.c ├── hexdump.h ├── input_file.c ├── input_file.h ├── ip_checksum.h ├── layout.c ├── layout.h ├── lbtable.c ├── lbtable.h ├── nvramtool.spec ├── reg_expr.c ├── reg_expr.h └── win32mmap.c ├── optionlist ├── Makefile ├── README └── kconfig2wiki ├── post ├── .gitignore ├── Makefile ├── README └── post.c ├── release ├── build-release └── genrelnotes ├── riscvtools ├── make-spike-elf.sh └── spike-elf.ld ├── rockchip ├── LICENSE └── make_idb.py ├── romcc ├── COPYING ├── Makefile ├── results │ ├── linux_test1.out │ ├── linux_test10.out │ ├── linux_test11.out │ ├── linux_test12.out │ ├── linux_test13.out │ ├── linux_test2.out │ ├── linux_test3.out │ ├── linux_test4.out │ ├── linux_test5.out │ ├── linux_test6.out │ ├── linux_test7.out │ ├── linux_test8.out │ └── linux_test9.out ├── romcc.1 ├── romcc.c ├── test.sh └── tests │ ├── fail_test1.c │ ├── fail_test10.c │ ├── fail_test11.c │ ├── fail_test2.c │ ├── fail_test3.c │ ├── fail_test4.c │ ├── fail_test5.c │ ├── fail_test6.c │ ├── fail_test7.c │ ├── fail_test8.c │ ├── fail_test9.c │ ├── hello_world.c │ ├── hello_world1.c │ ├── hello_world2.c │ ├── include │ ├── linux_console.h │ ├── linux_syscall.h │ └── linuxi386_syscall.h │ ├── ldscript.ld │ ├── linux_console.h │ ├── linux_syscall.h │ ├── linux_test1.c │ ├── linux_test10.c │ ├── linux_test11.c │ ├── linux_test12.c │ ├── linux_test13.c │ ├── linux_test2.c │ ├── linux_test3.c │ ├── linux_test4.c │ ├── linux_test5.c │ ├── linux_test6.c │ ├── linux_test7.c │ ├── linux_test8.c │ ├── linux_test9.c │ ├── linuxi386_syscall.h │ ├── raminit_test.c │ ├── raminit_test1.c │ ├── raminit_test2.c │ ├── raminit_test3.c │ ├── raminit_test4.c │ ├── raminit_test5.c │ ├── raminit_test6.c │ ├── raminit_test7.c │ ├── simple_test.c │ ├── simple_test1.c │ ├── simple_test10.c │ ├── simple_test11.c │ ├── simple_test12.c │ ├── simple_test13.c │ ├── simple_test14.c │ ├── simple_test15.c │ ├── simple_test16.c │ ├── simple_test17.c │ ├── simple_test18.c │ ├── simple_test19.c │ ├── simple_test2.c │ ├── simple_test20.c │ ├── simple_test21.c │ ├── simple_test22.c │ ├── simple_test23.c │ ├── simple_test24.c │ ├── simple_test25.c │ ├── simple_test26.c │ ├── simple_test27.c │ ├── simple_test28.c │ ├── simple_test29.c │ ├── simple_test3.c │ ├── simple_test30.c │ ├── simple_test31.c │ ├── simple_test32.c │ ├── simple_test33.c │ ├── simple_test34.c │ ├── simple_test35.c │ ├── simple_test36.c │ ├── simple_test37.c │ ├── simple_test38.c │ ├── simple_test39.c │ ├── simple_test4.c │ ├── simple_test40.c │ ├── simple_test41.c │ ├── simple_test43.c │ ├── simple_test45.c │ ├── simple_test46.c │ ├── simple_test47.c │ ├── simple_test48.c │ ├── simple_test49.c │ ├── simple_test5.c │ ├── simple_test50.c │ ├── simple_test51.c │ ├── simple_test52.c │ ├── simple_test53.c │ ├── simple_test54.c │ ├── simple_test55.c │ ├── simple_test56.c │ ├── simple_test57.c │ ├── simple_test58.c │ ├── simple_test59.c │ ├── simple_test6.c │ ├── simple_test60.c │ ├── simple_test61.c │ ├── simple_test62.c │ ├── simple_test63.c │ ├── simple_test64.c │ ├── simple_test65.c │ ├── simple_test66.c │ ├── simple_test67.c │ ├── simple_test68.c │ ├── simple_test69.c │ ├── simple_test7.c │ ├── simple_test70.c │ ├── simple_test71.c │ ├── simple_test72.c │ ├── simple_test73.c │ ├── simple_test74.c │ ├── simple_test75.c │ ├── simple_test76.c │ ├── simple_test77.c │ ├── simple_test78.c │ ├── simple_test79.c │ ├── simple_test8.c │ ├── simple_test80.c │ ├── simple_test81.c │ ├── simple_test82.c │ ├── simple_test83.c │ ├── simple_test84.c │ ├── simple_test85.c │ ├── simple_test86.c │ └── simple_test9.c ├── sconfig ├── Makefile.inc ├── lex.yy.c_shipped ├── main.c ├── sconfig.h ├── sconfig.l ├── sconfig.tab.c_shipped ├── sconfig.tab.h_shipped └── sconfig.y ├── scripts ├── cross-repo-cherrypick ├── dts-to-fmd.sh ├── find-unused-kconfig-symbols.sh ├── gerrit-rebase ├── get_maintainer.pl ├── maintainers.go ├── no-fsf-addresses.sh └── ucode_h_to_bin.sh ├── showdevicetree └── showdt.c ├── spkmodem_recv └── spkmodem-recv.c ├── superiotool ├── COPYING ├── Makefile ├── README ├── ali.c ├── amd.c ├── exar.c ├── fintek.c ├── infineon.c ├── ite.c ├── nsc.c ├── nuvoton.c ├── pci.c ├── serverengines.c ├── smsc.c ├── superiotool.8 ├── superiotool.c ├── superiotool.h ├── via.c └── winbond.c ├── uio_usbdebug ├── Makefile ├── README ├── console │ └── printk.c ├── drivers │ └── usb │ │ └── pci_ehci.c ├── include │ └── device │ │ └── device.h ├── lib │ └── cbmem.c ├── linux │ ├── Makefile │ └── uio_ehci_pci.c ├── uio_usbdebug.c └── uio_usbdebug_intel.c ├── vgabios ├── Makefile ├── device.c ├── include │ ├── arch │ │ └── byteorder.h │ ├── config.h │ ├── console │ │ └── console.h │ ├── stdtypes.h │ └── swab.h ├── pci-userspace.c ├── pci-userspace.h ├── testbios.c └── testbios.h ├── viatool ├── Makefile ├── README ├── cpu.c ├── quirks │ ├── quirks.c │ ├── quirks.h │ └── vx900_quirks.c ├── viatool.c └── viatool.h └── xcompile └── xcompile /.checkpatch.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/.checkpatch.conf -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/.gitreview -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/COPYING -------------------------------------------------------------------------------- /Documentation/AMD-S3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/Documentation/AMD-S3.txt -------------------------------------------------------------------------------- /Documentation/Kconfig.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/Documentation/Kconfig.tex -------------------------------------------------------------------------------- /Documentation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/Documentation/Makefile -------------------------------------------------------------------------------- /Documentation/POSTCODES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/Documentation/POSTCODES -------------------------------------------------------------------------------- /Documentation/RFC/chip.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/Documentation/RFC/chip.tex -------------------------------------------------------------------------------- /Documentation/acpi/gpio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/Documentation/acpi/gpio.md -------------------------------------------------------------------------------- /Documentation/beginverbatim.tex: -------------------------------------------------------------------------------- 1 | \begin{verbatim} 2 | -------------------------------------------------------------------------------- /Documentation/cbfs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/Documentation/cbfs.txt -------------------------------------------------------------------------------- /Documentation/codeflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/Documentation/codeflow.svg -------------------------------------------------------------------------------- /Documentation/endverbatim.tex: -------------------------------------------------------------------------------- 1 | \end{verbatim} 2 | -------------------------------------------------------------------------------- /Documentation/gcov.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/Documentation/gcov.txt -------------------------------------------------------------------------------- /Documentation/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/Documentation/index.html -------------------------------------------------------------------------------- /Documentation/timestamp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/Documentation/timestamp.md -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/Makefile.inc -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/README -------------------------------------------------------------------------------- /configs/a_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/configs/a_defconfig -------------------------------------------------------------------------------- /configs/config.sentinel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/configs/config.sentinel -------------------------------------------------------------------------------- /configs/r_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/configs/r_defconfig -------------------------------------------------------------------------------- /configs/x_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/configs/x_defconfig -------------------------------------------------------------------------------- /gnat.adc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/gnat.adc -------------------------------------------------------------------------------- /payloads/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/Kconfig -------------------------------------------------------------------------------- /payloads/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/Makefile.inc -------------------------------------------------------------------------------- /payloads/bayou/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/bayou/Doxyfile -------------------------------------------------------------------------------- /payloads/bayou/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/bayou/Makefile -------------------------------------------------------------------------------- /payloads/bayou/bayou.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/bayou/bayou.h -------------------------------------------------------------------------------- /payloads/bayou/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/bayou/config.c -------------------------------------------------------------------------------- /payloads/bayou/lzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/bayou/lzma.c -------------------------------------------------------------------------------- /payloads/bayou/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/bayou/main.c -------------------------------------------------------------------------------- /payloads/bayou/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/bayou/menu.c -------------------------------------------------------------------------------- /payloads/bayou/nrv2b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/bayou/nrv2b.c -------------------------------------------------------------------------------- /payloads/bayou/payload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/bayou/payload.c -------------------------------------------------------------------------------- /payloads/bayou/self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/bayou/self.c -------------------------------------------------------------------------------- /payloads/bayou/self.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/bayou/self.h -------------------------------------------------------------------------------- /payloads/coreinfo/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/coreinfo/COPYING -------------------------------------------------------------------------------- /payloads/coreinfo/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/coreinfo/Kconfig -------------------------------------------------------------------------------- /payloads/coreinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/coreinfo/Makefile -------------------------------------------------------------------------------- /payloads/coreinfo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/coreinfo/README -------------------------------------------------------------------------------- /payloads/coreinfo/cpuid.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/coreinfo/cpuid.S -------------------------------------------------------------------------------- /payloads/libpayload/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/libpayload/README -------------------------------------------------------------------------------- /payloads/libpayload/include/malloc.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /payloads/nvramcui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/payloads/nvramcui/Makefile -------------------------------------------------------------------------------- /src/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/Kconfig -------------------------------------------------------------------------------- /src/acpi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/acpi/Kconfig -------------------------------------------------------------------------------- /src/acpi/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_ACPI_SATA_GENERATOR) += sata.c 2 | -------------------------------------------------------------------------------- /src/acpi/sata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/acpi/sata.c -------------------------------------------------------------------------------- /src/acpi/sata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/acpi/sata.h -------------------------------------------------------------------------------- /src/arch/arm/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/Kconfig -------------------------------------------------------------------------------- /src/arch/arm/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/Makefile.inc -------------------------------------------------------------------------------- /src/arch/arm/armv4/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/armv4/Kconfig -------------------------------------------------------------------------------- /src/arch/arm/armv4/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/armv4/cache.c -------------------------------------------------------------------------------- /src/arch/arm/armv7/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/armv7/Kconfig -------------------------------------------------------------------------------- /src/arch/arm/armv7/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/armv7/cache.c -------------------------------------------------------------------------------- /src/arch/arm/armv7/cpu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/armv7/cpu.S -------------------------------------------------------------------------------- /src/arch/arm/armv7/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/armv7/mmu.c -------------------------------------------------------------------------------- /src/arch/arm/asmlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/asmlib.h -------------------------------------------------------------------------------- /src/arch/arm/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/boot.c -------------------------------------------------------------------------------- /src/arch/arm/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/clock.c -------------------------------------------------------------------------------- /src/arch/arm/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/cpu.c -------------------------------------------------------------------------------- /src/arch/arm/div0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/div0.c -------------------------------------------------------------------------------- /src/arch/arm/eabi_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/eabi_compat.c -------------------------------------------------------------------------------- /src/arch/arm/id.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/id.S -------------------------------------------------------------------------------- /src/arch/arm/memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/memcpy.S -------------------------------------------------------------------------------- /src/arch/arm/memmove.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/memmove.S -------------------------------------------------------------------------------- /src/arch/arm/memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/memset.S -------------------------------------------------------------------------------- /src/arch/arm/stages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/stages.c -------------------------------------------------------------------------------- /src/arch/arm/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm/tables.c -------------------------------------------------------------------------------- /src/arch/arm64/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm64/Kconfig -------------------------------------------------------------------------------- /src/arch/arm64/arm_tf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm64/arm_tf.c -------------------------------------------------------------------------------- /src/arch/arm64/armv8/cpu.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm64/armv8/cpu.S -------------------------------------------------------------------------------- /src/arch/arm64/armv8/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm64/armv8/mmu.c -------------------------------------------------------------------------------- /src/arch/arm64/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm64/boot.c -------------------------------------------------------------------------------- /src/arch/arm64/div0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm64/div0.c -------------------------------------------------------------------------------- /src/arch/arm64/id.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm64/id.S -------------------------------------------------------------------------------- /src/arch/arm64/memcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm64/memcpy.S -------------------------------------------------------------------------------- /src/arch/arm64/memmove.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm64/memmove.S -------------------------------------------------------------------------------- /src/arch/arm64/memset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm64/memset.S -------------------------------------------------------------------------------- /src/arch/arm64/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/arm64/tables.c -------------------------------------------------------------------------------- /src/arch/mips/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/mips/Kconfig -------------------------------------------------------------------------------- /src/arch/mips/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/mips/Makefile.inc -------------------------------------------------------------------------------- /src/arch/mips/ashldi3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/mips/ashldi3.c -------------------------------------------------------------------------------- /src/arch/mips/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/mips/boot.c -------------------------------------------------------------------------------- /src/arch/mips/bootblock.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/mips/bootblock.S -------------------------------------------------------------------------------- /src/arch/mips/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/mips/cache.c -------------------------------------------------------------------------------- /src/arch/mips/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/mips/mmu.c -------------------------------------------------------------------------------- /src/arch/mips/stages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/mips/stages.c -------------------------------------------------------------------------------- /src/arch/mips/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/mips/tables.c -------------------------------------------------------------------------------- /src/arch/power8/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/power8/Kconfig -------------------------------------------------------------------------------- /src/arch/power8/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/power8/boot.c -------------------------------------------------------------------------------- /src/arch/power8/id.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/power8/id.ld -------------------------------------------------------------------------------- /src/arch/power8/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/power8/misc.c -------------------------------------------------------------------------------- /src/arch/power8/stages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/power8/stages.c -------------------------------------------------------------------------------- /src/arch/power8/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/power8/tables.c -------------------------------------------------------------------------------- /src/arch/riscv/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/riscv/Kconfig -------------------------------------------------------------------------------- /src/arch/riscv/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/riscv/boot.c -------------------------------------------------------------------------------- /src/arch/riscv/bootblock.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/riscv/bootblock.S -------------------------------------------------------------------------------- /src/arch/riscv/id.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/riscv/id.S -------------------------------------------------------------------------------- /src/arch/riscv/id.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/riscv/id.ld -------------------------------------------------------------------------------- /src/arch/riscv/mcall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/riscv/mcall.c -------------------------------------------------------------------------------- /src/arch/riscv/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/riscv/misc.c -------------------------------------------------------------------------------- /src/arch/riscv/payload.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/riscv/payload.S -------------------------------------------------------------------------------- /src/arch/riscv/sbi.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/riscv/sbi.S -------------------------------------------------------------------------------- /src/arch/riscv/stages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/riscv/stages.c -------------------------------------------------------------------------------- /src/arch/riscv/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/riscv/tables.c -------------------------------------------------------------------------------- /src/arch/riscv/trap_util.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/riscv/trap_util.S -------------------------------------------------------------------------------- /src/arch/x86/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/Kconfig -------------------------------------------------------------------------------- /src/arch/x86/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/Makefile.inc -------------------------------------------------------------------------------- /src/arch/x86/acpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/acpi.c -------------------------------------------------------------------------------- /src/arch/x86/acpi_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/acpi_device.c -------------------------------------------------------------------------------- /src/arch/x86/acpi_s3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/acpi_s3.c -------------------------------------------------------------------------------- /src/arch/x86/acpigen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/acpigen.c -------------------------------------------------------------------------------- /src/arch/x86/acpigen_dsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/acpigen_dsm.c -------------------------------------------------------------------------------- /src/arch/x86/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/boot.c -------------------------------------------------------------------------------- /src/arch/x86/bootblock.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/bootblock.ld -------------------------------------------------------------------------------- /src/arch/x86/c_start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/c_start.S -------------------------------------------------------------------------------- /src/arch/x86/car.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/car.ld -------------------------------------------------------------------------------- /src/arch/x86/cbmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/cbmem.c -------------------------------------------------------------------------------- /src/arch/x86/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/cpu.c -------------------------------------------------------------------------------- /src/arch/x86/cpu_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/cpu_common.c -------------------------------------------------------------------------------- /src/arch/x86/ebda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/ebda.c -------------------------------------------------------------------------------- /src/arch/x86/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/exception.c -------------------------------------------------------------------------------- /src/arch/x86/exit_car.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/exit_car.S -------------------------------------------------------------------------------- /src/arch/x86/failover.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/failover.ld -------------------------------------------------------------------------------- /src/arch/x86/gdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/gdt.c -------------------------------------------------------------------------------- /src/arch/x86/id.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/id.S -------------------------------------------------------------------------------- /src/arch/x86/id.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/id.ld -------------------------------------------------------------------------------- /src/arch/x86/ioapic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/ioapic.c -------------------------------------------------------------------------------- /src/arch/x86/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/memcpy.c -------------------------------------------------------------------------------- /src/arch/x86/memlayout.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/memlayout.ld -------------------------------------------------------------------------------- /src/arch/x86/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/memmove.c -------------------------------------------------------------------------------- /src/arch/x86/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/memset.c -------------------------------------------------------------------------------- /src/arch/x86/mmap_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/mmap_boot.c -------------------------------------------------------------------------------- /src/arch/x86/mpspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/mpspec.c -------------------------------------------------------------------------------- /src/arch/x86/postcar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/postcar.c -------------------------------------------------------------------------------- /src/arch/x86/prologue.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/prologue.inc -------------------------------------------------------------------------------- /src/arch/x86/rdrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/rdrand.c -------------------------------------------------------------------------------- /src/arch/x86/smbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/smbios.c -------------------------------------------------------------------------------- /src/arch/x86/stages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/stages.c -------------------------------------------------------------------------------- /src/arch/x86/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/tables.c -------------------------------------------------------------------------------- /src/arch/x86/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/thread.c -------------------------------------------------------------------------------- /src/arch/x86/timestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/timestamp.c -------------------------------------------------------------------------------- /src/arch/x86/verstage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/verstage.c -------------------------------------------------------------------------------- /src/arch/x86/wakeup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/wakeup.S -------------------------------------------------------------------------------- /src/arch/x86/walkcbfs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/arch/x86/walkcbfs.S -------------------------------------------------------------------------------- /src/commonlib/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/commonlib/Makefile.inc -------------------------------------------------------------------------------- /src/commonlib/cbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/commonlib/cbfs.c -------------------------------------------------------------------------------- /src/commonlib/iobuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/commonlib/iobuf.c -------------------------------------------------------------------------------- /src/commonlib/lz4.c.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/commonlib/lz4.c.inc -------------------------------------------------------------------------------- /src/commonlib/mem_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/commonlib/mem_pool.c -------------------------------------------------------------------------------- /src/commonlib/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/commonlib/region.c -------------------------------------------------------------------------------- /src/console/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/console/Kconfig -------------------------------------------------------------------------------- /src/console/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/console/Makefile.inc -------------------------------------------------------------------------------- /src/console/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/console/console.c -------------------------------------------------------------------------------- /src/console/die.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/console/die.c -------------------------------------------------------------------------------- /src/console/early_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/console/early_print.c -------------------------------------------------------------------------------- /src/console/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/console/init.c -------------------------------------------------------------------------------- /src/console/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/console/post.c -------------------------------------------------------------------------------- /src/console/printk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/console/printk.c -------------------------------------------------------------------------------- /src/console/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/console/vsprintf.c -------------------------------------------------------------------------------- /src/console/vtxprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/console/vtxprintf.c -------------------------------------------------------------------------------- /src/cpu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/Kconfig -------------------------------------------------------------------------------- /src/cpu/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/Makefile.inc -------------------------------------------------------------------------------- /src/cpu/allwinner/Kconfig: -------------------------------------------------------------------------------- 1 | source src/cpu/allwinner/a10/Kconfig 2 | -------------------------------------------------------------------------------- /src/cpu/allwinner/Makefile.inc: -------------------------------------------------------------------------------- 1 | subdirs-$(CONFIG_CPU_ALLWINNER_A10) += a10 2 | -------------------------------------------------------------------------------- /src/cpu/amd/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/amd/Kconfig -------------------------------------------------------------------------------- /src/cpu/amd/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/amd/Makefile.inc -------------------------------------------------------------------------------- /src/cpu/amd/agesa/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/amd/agesa/Kconfig -------------------------------------------------------------------------------- /src/cpu/amd/mtrr/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-y += amd_mtrr.c 2 | -------------------------------------------------------------------------------- /src/cpu/amd/pi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/amd/pi/Kconfig -------------------------------------------------------------------------------- /src/cpu/amd/pi/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/amd/pi/spi.c -------------------------------------------------------------------------------- /src/cpu/amd/quadcore/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-y += amd_sibling.c 2 | -------------------------------------------------------------------------------- /src/cpu/amd/smm/Makefile.inc: -------------------------------------------------------------------------------- 1 | 2 | ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smm_init.c 3 | -------------------------------------------------------------------------------- /src/cpu/amd/smm/smm_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/amd/smm/smm_init.c -------------------------------------------------------------------------------- /src/cpu/armltd/Kconfig: -------------------------------------------------------------------------------- 1 | source src/cpu/armltd/cortex-a9/Kconfig 2 | -------------------------------------------------------------------------------- /src/cpu/armltd/Makefile.inc: -------------------------------------------------------------------------------- 1 | subdirs-$(CONFIG_CPU_ARMLTD_CORTEX_A9) += cortex-a9 2 | -------------------------------------------------------------------------------- /src/cpu/dmp/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/dmp/Kconfig -------------------------------------------------------------------------------- /src/cpu/dmp/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/dmp/Makefile.inc -------------------------------------------------------------------------------- /src/cpu/intel/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/intel/Kconfig -------------------------------------------------------------------------------- /src/cpu/intel/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/intel/Makefile.inc -------------------------------------------------------------------------------- /src/cpu/intel/common/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-y += common_init.c 2 | -------------------------------------------------------------------------------- /src/cpu/intel/fit/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/intel/fit/Kconfig -------------------------------------------------------------------------------- /src/cpu/intel/fit/Makefile.inc: -------------------------------------------------------------------------------- 1 | bootblock-y += fit.S 2 | -------------------------------------------------------------------------------- /src/cpu/intel/fit/fit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/intel/fit/fit.S -------------------------------------------------------------------------------- /src/cpu/intel/fit/fit.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/intel/fit/fit.ld -------------------------------------------------------------------------------- /src/cpu/intel/hyperthreading/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-y += intel_sibling.c 2 | -------------------------------------------------------------------------------- /src/cpu/intel/smm/gen1/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_HAVE_SMI_HANDLER) += smmrelocate.c 2 | -------------------------------------------------------------------------------- /src/cpu/intel/speedstep/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-y += acpi.c speedstep.c 2 | -------------------------------------------------------------------------------- /src/cpu/intel/turbo/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-y += turbo.c 2 | -------------------------------------------------------------------------------- /src/cpu/qemu-power8/qemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/qemu-power8/qemu.c -------------------------------------------------------------------------------- /src/cpu/qemu-x86/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/qemu-x86/Kconfig -------------------------------------------------------------------------------- /src/cpu/qemu-x86/qemu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/qemu-x86/qemu.c -------------------------------------------------------------------------------- /src/cpu/ti/Kconfig: -------------------------------------------------------------------------------- 1 | source src/cpu/ti/am335x/Kconfig 2 | -------------------------------------------------------------------------------- /src/cpu/ti/Makefile.inc: -------------------------------------------------------------------------------- 1 | subdirs-$(CONFIG_CPU_TI_AM335X) += am335x 2 | -------------------------------------------------------------------------------- /src/cpu/ti/am335x/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/ti/am335x/Kconfig -------------------------------------------------------------------------------- /src/cpu/ti/am335x/cbmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/ti/am335x/cbmem.c -------------------------------------------------------------------------------- /src/cpu/ti/am335x/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/ti/am335x/clock.h -------------------------------------------------------------------------------- /src/cpu/ti/am335x/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/ti/am335x/gpio.c -------------------------------------------------------------------------------- /src/cpu/ti/am335x/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/ti/am335x/gpio.h -------------------------------------------------------------------------------- /src/cpu/ti/am335x/header.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/ti/am335x/header.c -------------------------------------------------------------------------------- /src/cpu/ti/am335x/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/ti/am335x/header.h -------------------------------------------------------------------------------- /src/cpu/via/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/via/Kconfig -------------------------------------------------------------------------------- /src/cpu/via/c3/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/via/c3/Kconfig -------------------------------------------------------------------------------- /src/cpu/via/c7/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/via/c7/Kconfig -------------------------------------------------------------------------------- /src/cpu/x86/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/x86/Kconfig -------------------------------------------------------------------------------- /src/cpu/x86/cache/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-y += cache.c 2 | -------------------------------------------------------------------------------- /src/cpu/x86/car.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/x86/car.c -------------------------------------------------------------------------------- /src/cpu/x86/mp_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/x86/mp_init.c -------------------------------------------------------------------------------- /src/cpu/x86/mtrr/mtrr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/x86/mtrr/mtrr.c -------------------------------------------------------------------------------- /src/cpu/x86/name/name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/x86/name/name.c -------------------------------------------------------------------------------- /src/cpu/x86/pae/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_CPU_AMD_MODEL_FXX) += pgtbl.c 2 | -------------------------------------------------------------------------------- /src/cpu/x86/pae/pgtbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/x86/pae/pgtbl.c -------------------------------------------------------------------------------- /src/cpu/x86/smm/smm.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/cpu/x86/smm/smm.ld -------------------------------------------------------------------------------- /src/device/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/Kconfig -------------------------------------------------------------------------------- /src/device/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/Makefile.inc -------------------------------------------------------------------------------- /src/device/cpu_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/cpu_device.c -------------------------------------------------------------------------------- /src/device/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/device.c -------------------------------------------------------------------------------- /src/device/dram/ddr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/dram/ddr2.c -------------------------------------------------------------------------------- /src/device/dram/ddr3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/dram/ddr3.c -------------------------------------------------------------------------------- /src/device/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/i2c.c -------------------------------------------------------------------------------- /src/device/oprom/yabel/compat/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-y += functions.c 2 | -------------------------------------------------------------------------------- /src/device/pci_class.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/pci_class.c -------------------------------------------------------------------------------- /src/device/pci_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/pci_device.c -------------------------------------------------------------------------------- /src/device/pci_early.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/pci_early.c -------------------------------------------------------------------------------- /src/device/pci_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/pci_ops.c -------------------------------------------------------------------------------- /src/device/pci_rom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/pci_rom.c -------------------------------------------------------------------------------- /src/device/pnp_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/pnp_device.c -------------------------------------------------------------------------------- /src/device/smbus_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/device/smbus_ops.c -------------------------------------------------------------------------------- /src/drivers/ams/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/ams/Kconfig -------------------------------------------------------------------------------- /src/drivers/aspeed/common/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_ASPEED_AST_COMMON 2 | bool 3 | select VGA 4 | -------------------------------------------------------------------------------- /src/drivers/ati/ragexl/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_ATI_RAGEXL 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/ati/ragexl/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_DRIVERS_ATI_RAGEXL) += xlinit.c 2 | -------------------------------------------------------------------------------- /src/drivers/dec/21143/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_DEC_21143 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/elog/elog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/elog/elog.c -------------------------------------------------------------------------------- /src/drivers/elog/gsmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/elog/gsmi.c -------------------------------------------------------------------------------- /src/drivers/generic/generic/Makefile.inc: -------------------------------------------------------------------------------- 1 | # Empty 2 | -------------------------------------------------------------------------------- /src/drivers/generic/ioapic/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_GENERIC_IOAPIC 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/generic/ioapic/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_DRIVERS_GENERIC_IOAPIC) += ioapic.c 2 | -------------------------------------------------------------------------------- /src/drivers/generic/max98357a/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_GENERIC_MAX98357A 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/gic/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/gic/Kconfig -------------------------------------------------------------------------------- /src/drivers/gic/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_GIC) += gic.c 2 | -------------------------------------------------------------------------------- /src/drivers/gic/gic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/gic/gic.c -------------------------------------------------------------------------------- /src/drivers/gic/gic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/gic/gic.h -------------------------------------------------------------------------------- /src/drivers/i2c/adm1026/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_I2C_ADM1026 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/i2c/adm1027/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_I2C_ADM1027 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/i2c/adt7463/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_I2C_ADT7463 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/i2c/alps/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_DRIVERS_I2C_ALPS) += alps.c 2 | -------------------------------------------------------------------------------- /src/drivers/i2c/at24rf08c/lenovo.h: -------------------------------------------------------------------------------- 1 | const char *lenovo_mainboard_partnumber(void); 2 | -------------------------------------------------------------------------------- /src/drivers/i2c/da7219/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_I2C_DA7219 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/i2c/generic/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_I2C_GENERIC 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/i2c/generic/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_DRIVERS_I2C_GENERIC) += generic.c 2 | -------------------------------------------------------------------------------- /src/drivers/i2c/hid/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_DRIVERS_I2C_HID) += hid.c 2 | -------------------------------------------------------------------------------- /src/drivers/i2c/lm63/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_I2C_LM63 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/i2c/lm63/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_DRIVERS_I2C_LM63) += lm63.c 2 | -------------------------------------------------------------------------------- /src/drivers/i2c/nau8825/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_I2C_NAU8825 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/i2c/w83793/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_I2C_W83793 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/i2c/w83795/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_I2C_W83795 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/i2c/ww_ring/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_I2C_WW_RING 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/ics/954309/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_ICS_954309 2 | bool 3 | -------------------------------------------------------------------------------- /src/drivers/intel/i210/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVER_INTEL_I210 2 | bool 3 | default n 4 | -------------------------------------------------------------------------------- /src/drivers/intel/mipi_camera/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_DRIVERS_INTEL_MIPI_CAMERA) += camera.c 2 | -------------------------------------------------------------------------------- /src/drivers/ipmi/Kconfig: -------------------------------------------------------------------------------- 1 | config IPMI_KCS 2 | bool 3 | default n 4 | -------------------------------------------------------------------------------- /src/drivers/ipmi/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_IPMI_KCS) += ipmi_kcs.c 2 | -------------------------------------------------------------------------------- /src/drivers/net/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/net/Kconfig -------------------------------------------------------------------------------- /src/drivers/net/ne2k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/net/ne2k.c -------------------------------------------------------------------------------- /src/drivers/net/r8168.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/net/r8168.c -------------------------------------------------------------------------------- /src/drivers/ricoh/rce822/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_RICOH_RCE822 2 | bool 3 | default n 4 | -------------------------------------------------------------------------------- /src/drivers/ricoh/rce822/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_DRIVERS_RICOH_RCE822) += rce822.c 2 | -------------------------------------------------------------------------------- /src/drivers/siemens/nc_fpga/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVER_SIEMENS_NC_FPGA 2 | bool 3 | default n 4 | -------------------------------------------------------------------------------- /src/drivers/sil/3114/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_DRIVERS_SIL_3114) += sil_sata.c 2 | -------------------------------------------------------------------------------- /src/drivers/spi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/spi/Kconfig -------------------------------------------------------------------------------- /src/drivers/spi/amic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/spi/amic.c -------------------------------------------------------------------------------- /src/drivers/spi/atmel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/spi/atmel.c -------------------------------------------------------------------------------- /src/drivers/spi/eon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/spi/eon.c -------------------------------------------------------------------------------- /src/drivers/spi/sst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/spi/sst.c -------------------------------------------------------------------------------- /src/drivers/uart/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/uart/util.c -------------------------------------------------------------------------------- /src/drivers/usb/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/usb/Kconfig -------------------------------------------------------------------------------- /src/drivers/usb/ehci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/drivers/usb/ehci.h -------------------------------------------------------------------------------- /src/drivers/xgi/common/Kconfig: -------------------------------------------------------------------------------- 1 | config DRIVERS_XGI_Z79_COMMON 2 | bool 3 | select VGA 4 | -------------------------------------------------------------------------------- /src/drivers/xgi/z9s/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-$(CONFIG_DRIVERS_XGI_Z9S) += z9s.c 2 | -------------------------------------------------------------------------------- /src/ec/acpi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/ec/acpi/Kconfig -------------------------------------------------------------------------------- /src/ec/acpi/ec.asl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/ec/acpi/ec.asl -------------------------------------------------------------------------------- /src/ec/acpi/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/ec/acpi/ec.c -------------------------------------------------------------------------------- /src/ec/acpi/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/ec/acpi/ec.h -------------------------------------------------------------------------------- /src/ec/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/ec/ec.h -------------------------------------------------------------------------------- /src/ec/lenovo/h8/chip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/ec/lenovo/h8/chip.h -------------------------------------------------------------------------------- /src/ec/lenovo/h8/h8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/ec/lenovo/h8/h8.c -------------------------------------------------------------------------------- /src/ec/lenovo/h8/h8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/ec/lenovo/h8/h8.h -------------------------------------------------------------------------------- /src/ec/lenovo/h8/smm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/ec/lenovo/h8/smm.c -------------------------------------------------------------------------------- /src/ec/lenovo/pmh7/Kconfig: -------------------------------------------------------------------------------- 1 | config EC_LENOVO_PMH7 2 | bool 3 | -------------------------------------------------------------------------------- /src/ec/purism/librem/Kconfig: -------------------------------------------------------------------------------- 1 | config EC_PURISM_LIBREM 2 | bool 3 | help 4 | Purism Librem EC 5 | -------------------------------------------------------------------------------- /src/ec/roda/it8518/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/ec/roda/it8518/ec.c -------------------------------------------------------------------------------- /src/include/adainit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/adainit.h -------------------------------------------------------------------------------- /src/include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/assert.h -------------------------------------------------------------------------------- /src/include/base3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/base3.h -------------------------------------------------------------------------------- /src/include/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/bcd.h -------------------------------------------------------------------------------- /src/include/boardid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/boardid.h -------------------------------------------------------------------------------- /src/include/bootmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/bootmem.h -------------------------------------------------------------------------------- /src/include/bootmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/bootmode.h -------------------------------------------------------------------------------- /src/include/bootstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/bootstate.h -------------------------------------------------------------------------------- /src/include/cbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/cbfs.h -------------------------------------------------------------------------------- /src/include/cbmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/cbmem.h -------------------------------------------------------------------------------- /src/include/cpu/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/cpu/cpu.h -------------------------------------------------------------------------------- /src/include/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/delay.h -------------------------------------------------------------------------------- /src/include/edid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/edid.h -------------------------------------------------------------------------------- /src/include/elog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/elog.h -------------------------------------------------------------------------------- /src/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/endian.h -------------------------------------------------------------------------------- /src/include/fallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/fallback.h -------------------------------------------------------------------------------- /src/include/fmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/fmap.h -------------------------------------------------------------------------------- /src/include/gic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/gic.h -------------------------------------------------------------------------------- /src/include/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/gpio.h -------------------------------------------------------------------------------- /src/include/halt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/halt.h -------------------------------------------------------------------------------- /src/include/imd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/imd.h -------------------------------------------------------------------------------- /src/include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/inttypes.h -------------------------------------------------------------------------------- /src/include/kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/kconfig.h -------------------------------------------------------------------------------- /src/include/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/lib.h -------------------------------------------------------------------------------- /src/include/main_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/main_decl.h -------------------------------------------------------------------------------- /src/include/memlayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/memlayout.h -------------------------------------------------------------------------------- /src/include/memrange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/memrange.h -------------------------------------------------------------------------------- /src/include/nhlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/nhlt.h -------------------------------------------------------------------------------- /src/include/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/option.h -------------------------------------------------------------------------------- /src/include/pc80/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/pc80/vga.h -------------------------------------------------------------------------------- /src/include/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/random.h -------------------------------------------------------------------------------- /src/include/reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/reset.h -------------------------------------------------------------------------------- /src/include/rmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/rmodule.h -------------------------------------------------------------------------------- /src/include/rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/rtc.h -------------------------------------------------------------------------------- /src/include/rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/rules.h -------------------------------------------------------------------------------- /src/include/sar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/sar.h -------------------------------------------------------------------------------- /src/include/smbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/smbios.h -------------------------------------------------------------------------------- /src/include/smp/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/smp/node.h -------------------------------------------------------------------------------- /src/include/spd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/spd.h -------------------------------------------------------------------------------- /src/include/spd_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/spd_bin.h -------------------------------------------------------------------------------- /src/include/spd_ddr2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/spd_ddr2.h -------------------------------------------------------------------------------- /src/include/spi_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/spi_flash.h -------------------------------------------------------------------------------- /src/include/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/stddef.h -------------------------------------------------------------------------------- /src/include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/stdlib.h -------------------------------------------------------------------------------- /src/include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/string.h -------------------------------------------------------------------------------- /src/include/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/swab.h -------------------------------------------------------------------------------- /src/include/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/symbols.h -------------------------------------------------------------------------------- /src/include/sys/types.h: -------------------------------------------------------------------------------- 1 | #include "../types.h" 2 | -------------------------------------------------------------------------------- /src/include/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/thread.h -------------------------------------------------------------------------------- /src/include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/timer.h -------------------------------------------------------------------------------- /src/include/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/timestamp.h -------------------------------------------------------------------------------- /src/include/tpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/tpm.h -------------------------------------------------------------------------------- /src/include/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/trace.h -------------------------------------------------------------------------------- /src/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/types.h -------------------------------------------------------------------------------- /src/include/vbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/vbe.h -------------------------------------------------------------------------------- /src/include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/version.h -------------------------------------------------------------------------------- /src/include/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/watchdog.h -------------------------------------------------------------------------------- /src/include/wrdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/include/wrdd.h -------------------------------------------------------------------------------- /src/lib/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/Makefile.inc -------------------------------------------------------------------------------- /src/lib/b64_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/b64_decode.c -------------------------------------------------------------------------------- /src/lib/boot_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/boot_device.c -------------------------------------------------------------------------------- /src/lib/bootblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/bootblock.c -------------------------------------------------------------------------------- /src/lib/bootmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/bootmem.c -------------------------------------------------------------------------------- /src/lib/bootmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/bootmode.c -------------------------------------------------------------------------------- /src/lib/cbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/cbfs.c -------------------------------------------------------------------------------- /src/lib/cbmem_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/cbmem_common.c -------------------------------------------------------------------------------- /src/lib/cbmem_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/cbmem_console.c -------------------------------------------------------------------------------- /src/lib/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/debug.c -------------------------------------------------------------------------------- /src/lib/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/delay.c -------------------------------------------------------------------------------- /src/lib/edid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/edid.c -------------------------------------------------------------------------------- /src/lib/fallback_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/fallback_boot.c -------------------------------------------------------------------------------- /src/lib/fmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/fmap.c -------------------------------------------------------------------------------- /src/lib/gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/gcc.c -------------------------------------------------------------------------------- /src/lib/gcov-glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/gcov-glue.c -------------------------------------------------------------------------------- /src/lib/gcov-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/gcov-io.c -------------------------------------------------------------------------------- /src/lib/gcov-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/gcov-io.h -------------------------------------------------------------------------------- /src/lib/gcov-iov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/gcov-iov.h -------------------------------------------------------------------------------- /src/lib/generic_sdram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/generic_sdram.c -------------------------------------------------------------------------------- /src/lib/gnat/COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/gnat/COPYING3 -------------------------------------------------------------------------------- /src/lib/gnat/ada.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/gnat/ada.ads -------------------------------------------------------------------------------- /src/lib/gnat/gnat.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/gnat/gnat.ads -------------------------------------------------------------------------------- /src/lib/gnat/i-c.adb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/gnat/i-c.adb -------------------------------------------------------------------------------- /src/lib/gnat/i-c.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/gnat/i-c.ads -------------------------------------------------------------------------------- /src/lib/gnat/system.ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/gnat/system.ads -------------------------------------------------------------------------------- /src/lib/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/gpio.c -------------------------------------------------------------------------------- /src/lib/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/halt.c -------------------------------------------------------------------------------- /src/lib/hardwaremain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/hardwaremain.c -------------------------------------------------------------------------------- /src/lib/hexdump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/hexdump.c -------------------------------------------------------------------------------- /src/lib/hexstrtobin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/hexstrtobin.c -------------------------------------------------------------------------------- /src/lib/imd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/imd.c -------------------------------------------------------------------------------- /src/lib/imd_cbmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/imd_cbmem.c -------------------------------------------------------------------------------- /src/lib/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/jpeg.c -------------------------------------------------------------------------------- /src/lib/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/jpeg.h -------------------------------------------------------------------------------- /src/lib/libgcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/libgcc.c -------------------------------------------------------------------------------- /src/lib/libgcov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/libgcov.c -------------------------------------------------------------------------------- /src/lib/lzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/lzma.c -------------------------------------------------------------------------------- /src/lib/lzmadecode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/lzmadecode.c -------------------------------------------------------------------------------- /src/lib/lzmadecode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/lzmadecode.h -------------------------------------------------------------------------------- /src/lib/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/malloc.c -------------------------------------------------------------------------------- /src/lib/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/memchr.c -------------------------------------------------------------------------------- /src/lib/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/memcmp.c -------------------------------------------------------------------------------- /src/lib/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/memcpy.c -------------------------------------------------------------------------------- /src/lib/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/memmove.c -------------------------------------------------------------------------------- /src/lib/memrange.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/memrange.c -------------------------------------------------------------------------------- /src/lib/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/memset.c -------------------------------------------------------------------------------- /src/lib/nhlt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/nhlt.c -------------------------------------------------------------------------------- /src/lib/prog_loaders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/prog_loaders.c -------------------------------------------------------------------------------- /src/lib/prog_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/prog_ops.c -------------------------------------------------------------------------------- /src/lib/program.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/program.ld -------------------------------------------------------------------------------- /src/lib/ramtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/ramtest.c -------------------------------------------------------------------------------- /src/lib/reg_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/reg_script.c -------------------------------------------------------------------------------- /src/lib/region_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/region_file.c -------------------------------------------------------------------------------- /src/lib/rmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/rmodule.c -------------------------------------------------------------------------------- /src/lib/rmodule.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/rmodule.ld -------------------------------------------------------------------------------- /src/lib/rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/rtc.c -------------------------------------------------------------------------------- /src/lib/selfboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/selfboot.c -------------------------------------------------------------------------------- /src/lib/spd_bin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/spd_bin.c -------------------------------------------------------------------------------- /src/lib/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/stack.c -------------------------------------------------------------------------------- /src/lib/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/thread.c -------------------------------------------------------------------------------- /src/lib/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/timer.c -------------------------------------------------------------------------------- /src/lib/timer_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/timer_queue.c -------------------------------------------------------------------------------- /src/lib/timestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/timestamp.c -------------------------------------------------------------------------------- /src/lib/tlcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/tlcl.c -------------------------------------------------------------------------------- /src/lib/tlcl_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/tlcl_internal.h -------------------------------------------------------------------------------- /src/lib/tpm2_tlcl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/tpm2_tlcl.c -------------------------------------------------------------------------------- /src/lib/trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/trace.c -------------------------------------------------------------------------------- /src/lib/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/version.c -------------------------------------------------------------------------------- /src/lib/wrdd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/lib/wrdd.c -------------------------------------------------------------------------------- /src/mainboard/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/mainboard/Kconfig -------------------------------------------------------------------------------- /src/mainboard/a-trend/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_A_TREND 2 | bool "A-Trend" 3 | -------------------------------------------------------------------------------- /src/mainboard/aaeon/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_AAEON 2 | bool "Aaeon" 3 | -------------------------------------------------------------------------------- /src/mainboard/abit/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_ABIT 2 | bool "Abit" 3 | -------------------------------------------------------------------------------- /src/mainboard/abit/be6-ii_v2_0/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ABIT_BE6_II_V2_0 2 | bool "BE6-II V2.0" 3 | -------------------------------------------------------------------------------- /src/mainboard/adi/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_ADI 2 | bool "ADI" 3 | -------------------------------------------------------------------------------- /src/mainboard/adi/rcc-dff/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/adi/rcc-dff/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/adi/rcc-dff/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/advansus/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_ADVANSUS 2 | bool "Advansus" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_AMD 2 | bool "AMD" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/bettong/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_BETTONG 2 | bool "Bettong" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/bettong/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/bimini_fam10/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/db-ft3b-lc/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_DB_FT3B_LC 2 | bool "DB-FT3b-LC" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/dinar/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_DINAR 2 | bool "Dinar" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/dinar/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/gardenia/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_GARDENIA 2 | bool "Gardenia" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/gardenia/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/inagua/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_INAGUA 2 | bool "Inagua" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/inagua/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/amd/inagua/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/lamar/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_LAMAR 2 | bool "Lamar" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/mahogany/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_MAHOGANY 2 | bool "Mahogany" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/mahogany_fam10/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/norwich/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_NORWICH 2 | bool "Norwich" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/norwich/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/olivehill/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_OLIVEHILL 2 | bool "Olive Hill" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/olivehill/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/amd/olivehill/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/amd/olivehill/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/parmer/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_PARMER 2 | bool "Parmer" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/parmer/acpi/sata.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/amd/parmer/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/amd/parmer/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/amd/persimmon/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_PERSIMMON 2 | bool "Persimmon" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/pistachio/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_PISTACHIO 2 | bool "Pistachio" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/pistachio/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/rumba/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_RUMBA 2 | bool "Rumba" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/rumba/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: half 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/serengeti_cheetah/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: server 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/serengeti_cheetah_fam10/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: server 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/south_station/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_SOUTHSTATION 2 | bool "Southstation" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/south_station/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/amd/thatcher/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_THATCHER 2 | bool "Thatcher" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/thatcher/acpi/sata.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/amd/thatcher/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/amd/thatcher/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/amd/tilapia_fam10/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/torpedo/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AMD_TORPEDO 2 | bool "Torpedo" 3 | -------------------------------------------------------------------------------- /src/mainboard/amd/torpedo/acpi/usb.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/amd/torpedo/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/amd/union_station/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/aopen/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_AOPEN 2 | bool "AOpen" 3 | -------------------------------------------------------------------------------- /src/mainboard/aopen/dxplplusu/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_AOPEN_DXPLPLUSU 2 | bool "DXPL Plus-U" 3 | -------------------------------------------------------------------------------- /src/mainboard/apple/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_APPLE 2 | bool "Apple" 3 | -------------------------------------------------------------------------------- /src/mainboard/apple/macbook21/Makefile.inc: -------------------------------------------------------------------------------- 1 | romstage-y += gpio.c -------------------------------------------------------------------------------- /src/mainboard/apple/macbook21/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/apple/macbookair4_2/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/apple/macbookair4_2/romstage.c: -------------------------------------------------------------------------------- 1 | /* No license required */ 2 | /* dummy file */ 3 | -------------------------------------------------------------------------------- /src/mainboard/artecgroup/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_ARTECGROUP 2 | bool "Artec Group" 3 | -------------------------------------------------------------------------------- /src/mainboard/asrock/939a785gmh/acpi/ide.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/asrock/939a785gmh/acpi/sata.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/asrock/939a785gmh/acpi/usb.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/asrock/imb-a180/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/asrock/imb-a180/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/asus/a8n_e/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_A8N_E 2 | bool "A8N-E" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/a8v-e_se/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_A8V_E_SE 2 | bool "A8V-E SE" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/dsbf/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: server 2 | -------------------------------------------------------------------------------- /src/mainboard/asus/f2a85-m/acpi/sata.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/asus/f2a85-m/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/asus/f2a85-m/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/asus/k8v-x/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_K8V_X 2 | bool "K8V-X" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/k8v-x/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: desktop 2 | Release year: 2005 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/m2n-e/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_M2N_E 2 | bool "M2N-E" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/m2v-mx_se/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_M2V_MX_SE 2 | bool "M2V-MX SE" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/m2v/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_M2V 2 | bool "M2V" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/mew-am/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_MEW_AM 2 | bool "MEW-AM" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/mew-vm/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_MEW_VM 2 | bool "MEW-VM" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/p2b-d/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_P2B_D 2 | bool "P2B-D" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/p2b-ds/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_P2B_DS 2 | bool "P2B-DS" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/p2b-f/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_P2B_F 2 | bool "P2B-F" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/p2b-ls/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_P2B_LS 2 | bool "P2B-LS" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/p2b/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_P2B 2 | bool "P2B" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/p3b-f/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ASUS_P3B_F 2 | bool "P3B-F" 3 | -------------------------------------------------------------------------------- /src/mainboard/asus/p5gc-mx/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | /* dummy */ -------------------------------------------------------------------------------- /src/mainboard/asus/p5gc-mx/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | /* dummy */ -------------------------------------------------------------------------------- /src/mainboard/asus/p5gc-mx/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | /* dummy */ -------------------------------------------------------------------------------- /src/mainboard/bachmann/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_BACHMANN 2 | bool "Bachmann electronic" 3 | -------------------------------------------------------------------------------- /src/mainboard/bachmann/ot200/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: settop 2 | -------------------------------------------------------------------------------- /src/mainboard/bap/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_BAP 2 | bool "BAP" 3 | -------------------------------------------------------------------------------- /src/mainboard/bap/ode_e20XX/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ODE_E20XX 2 | bool "ODE_e20xx" 3 | -------------------------------------------------------------------------------- /src/mainboard/bap/ode_e20XX/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/bap/ode_e20XX/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/bap/ode_e21XX/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ODE_E21XX 2 | bool "ODE_e21xx" 3 | -------------------------------------------------------------------------------- /src/mainboard/bcom/winnetp680/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: settop 2 | -------------------------------------------------------------------------------- /src/mainboard/bifferos/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_BIFFEROS 2 | bool "Bifferos" 3 | -------------------------------------------------------------------------------- /src/mainboard/bifferos/bifferboard/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: half 2 | -------------------------------------------------------------------------------- /src/mainboard/biostar/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_BIOSTAR 2 | bool "Biostar" 3 | -------------------------------------------------------------------------------- /src/mainboard/biostar/am1ml/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/broadcom/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_BROADCOM 2 | bool "Broadcom" 3 | -------------------------------------------------------------------------------- /src/mainboard/broadcom/blast/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_BROADCOM_BLAST 2 | bool "Blast" 3 | -------------------------------------------------------------------------------- /src/mainboard/broadcom/blast/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/compaq/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_COMPAQ 2 | bool "Compaq" 3 | -------------------------------------------------------------------------------- /src/mainboard/cubietech/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_CUBIETECH 2 | bool "Cubietech" 3 | -------------------------------------------------------------------------------- /src/mainboard/cubietech/cubieboard/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: sbc 2 | -------------------------------------------------------------------------------- /src/mainboard/dmp/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_DMP 2 | bool "DMP" 3 | -------------------------------------------------------------------------------- /src/mainboard/dmp/vortex86ex/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_DMP_EX 2 | bool "Vortex86EX" 3 | -------------------------------------------------------------------------------- /src/mainboard/dmp/vortex86ex/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: sbc 2 | -------------------------------------------------------------------------------- /src/mainboard/ecs/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_ECS 2 | bool "ECS" 3 | -------------------------------------------------------------------------------- /src/mainboard/emulation/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_EMULATION 2 | bool "Emulation" 3 | -------------------------------------------------------------------------------- /src/mainboard/emulation/qemu-power8/board_info.txt: -------------------------------------------------------------------------------- 1 | Board name: QEMU POWER8 2 | Category: emulation 3 | -------------------------------------------------------------------------------- /src/mainboard/esd/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_ESD 2 | bool "electronic system design" 3 | -------------------------------------------------------------------------------- /src/mainboard/esd/atom15/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_ESD_ATOM15 2 | bool "Atom15" 3 | -------------------------------------------------------------------------------- /src/mainboard/esd/atom15/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/esd/atom15/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/getac/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_GETAC 2 | bool "Getac" 3 | -------------------------------------------------------------------------------- /src/mainboard/gigabyte/ga-945gcm-s2l/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | /* dummy */ -------------------------------------------------------------------------------- /src/mainboard/gigabyte/ga-945gcm-s2l/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | /* dummy */ -------------------------------------------------------------------------------- /src/mainboard/gigabyte/ga-b75m-d3h/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/gigabyte/ga-b75m-d3h/acpi/video.asl: -------------------------------------------------------------------------------- 1 | // Blank 2 | -------------------------------------------------------------------------------- /src/mainboard/gigabyte/ga-b75m-d3v/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/gigabyte/ga-b75m-d3v/acpi/video.asl: -------------------------------------------------------------------------------- 1 | // Blank 2 | -------------------------------------------------------------------------------- /src/mainboard/gigabyte/ga-g41m-es2l/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | /* dummy */ 2 | -------------------------------------------------------------------------------- /src/mainboard/gigabyte/ga-g41m-es2l/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | /* dummy */ 2 | -------------------------------------------------------------------------------- /src/mainboard/gizmosphere/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_GIZMOSPHERE 2 | bool "GizmoSphere" 3 | -------------------------------------------------------------------------------- /src/mainboard/gizmosphere/gizmo/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: half 2 | -------------------------------------------------------------------------------- /src/mainboard/gizmosphere/gizmo2/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/gizmosphere/gizmo2/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/gizmosphere/gizmo2/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/google/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_GOOGLE 2 | bool "Google" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/auron/variants/auron_paine/include/variant/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/auron/variants/auron_yuna/include/variant/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/beltino/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/butterfly/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_BUTTERFLY 2 | bool "Butterfly" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/chell/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_CHELL 2 | bool "Chell" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/chell/acpi_tables.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/cosmos/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_COSMOS 2 | bool "Cosmos" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/cyan/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_CYAN 2 | bool "Cyan" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/daisy/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_DAISY 2 | bool "Daisy" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/eve/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_EVE 2 | bool "Eve" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/eve/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/eve/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/eve/acpi_tables.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/fizz/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_FIZZ 2 | bool "Fizz" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/fizz/acpi/dptf.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/fizz/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/fizz/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/fizz/acpi_tables.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/foster/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_FOSTER 2 | bool "Foster" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/foster/bct/odmdata.cfg: -------------------------------------------------------------------------------- 1 | OdmData = 0x00284000; 2 | -------------------------------------------------------------------------------- /src/mainboard/google/gale/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_GALE 2 | bool "Gale" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/glados/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_GLADOS 2 | bool "Glados" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/glados/acpi_tables.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/jecht/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/lars/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_LARS 2 | bool "Lars" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/lars/acpi_tables.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/link/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_LINK 2 | bool "Link" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/nyan/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_NYAN 2 | bool "Nyan" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/nyan/bct/odmdata.cfg: -------------------------------------------------------------------------------- 1 | OdmData = 0x80080000; 2 | -------------------------------------------------------------------------------- /src/mainboard/google/nyan_big/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_NYAN_BIG 2 | bool "Nyan Big" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/nyan_big/bct/odmdata.cfg: -------------------------------------------------------------------------------- 1 | OdmData = 0x80080000; 2 | -------------------------------------------------------------------------------- /src/mainboard/google/nyan_blaze/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_NYAN_BLAZE 2 | bool "Nyan Blaze" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/nyan_blaze/bct/odmdata.cfg: -------------------------------------------------------------------------------- 1 | OdmData = 0x80080000; 2 | -------------------------------------------------------------------------------- /src/mainboard/google/oak/sdram_inf/sdram-unused.inc: -------------------------------------------------------------------------------- 1 | { 2 | .type = TYPE_INVALID, 3 | }, 4 | -------------------------------------------------------------------------------- /src/mainboard/google/parrot/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_PARROT 2 | bool "Parrot" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/peach_pit/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_PEACH_PIT 2 | bool "Peach Pit" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/poppy/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/poppy/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/poppy/acpi_tables.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/purin/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_PURIN 2 | bool "Purin" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/rambi/variants/ninja/include/variant/acpi/mainboard.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/google/reef/variants/pyro/Makefile.inc: -------------------------------------------------------------------------------- 1 | romstage-y += memory.c 2 | -------------------------------------------------------------------------------- /src/mainboard/google/rotor/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_ROTOR 2 | bool "Rotor" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/smaug/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_SMAUG 2 | bool "Smaug" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/smaug/bct/odmdata.cfg: -------------------------------------------------------------------------------- 1 | OdmData = 0x00284000; 2 | -------------------------------------------------------------------------------- /src/mainboard/google/storm/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_STORM 2 | bool "Storm" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/stout/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_STOUT 2 | bool "Stout" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/urara/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_GOOGLE_URARA 2 | bool "Urara" 3 | -------------------------------------------------------------------------------- /src/mainboard/google/veyron/sdram_inf/sdram-unused.inc: -------------------------------------------------------------------------------- 1 | { 2 | .dramtype= UNUSED 3 | }, 4 | -------------------------------------------------------------------------------- /src/mainboard/google/veyron_mickey/sdram_inf/sdram-unused.inc: -------------------------------------------------------------------------------- 1 | { 2 | .dramtype= UNUSED 3 | }, 4 | -------------------------------------------------------------------------------- /src/mainboard/google/veyron_rialto/sdram_inf/sdram-unused.inc: -------------------------------------------------------------------------------- 1 | { 2 | .dramtype= UNUSED 3 | }, 4 | -------------------------------------------------------------------------------- /src/mainboard/hp/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_HP 2 | bool "HP" 3 | -------------------------------------------------------------------------------- /src/mainboard/hp/abm/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_HP_ABM 2 | bool "ABM" 3 | -------------------------------------------------------------------------------- /src/mainboard/hp/abm/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/hp/abm/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/hp/e_vectra_p2706t/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: desktop 2 | Release year: 2000 3 | -------------------------------------------------------------------------------- /src/mainboard/hp/pavilion_m6_1035dx/acpi/sata.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/hp/pavilion_m6_1035dx/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/hp/pavilion_m6_1035dx/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/ibase/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_IBASE 2 | bool "iBase" 3 | -------------------------------------------------------------------------------- /src/mainboard/iei/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_IEI 2 | bool "IEI" 3 | -------------------------------------------------------------------------------- /src/mainboard/intel/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_INTEL 2 | bool "Intel" 3 | -------------------------------------------------------------------------------- /src/mainboard/intel/apollolake_rvp/Makefile.inc: -------------------------------------------------------------------------------- 1 | #Nothing here yet 2 | -------------------------------------------------------------------------------- /src/mainboard/intel/baskingridge/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/baskingridge/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | Release year: 2013 3 | -------------------------------------------------------------------------------- /src/mainboard/intel/bayleybay_fsp/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/bayleybay_fsp/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/cougar_canyon2/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/cougar_canyon2/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | Release year: 2010 3 | -------------------------------------------------------------------------------- /src/mainboard/intel/d510mo/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | /* Dummy file - No license required. */ 2 | -------------------------------------------------------------------------------- /src/mainboard/intel/d510mo/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | /* Dummy file - No license required. */ 2 | -------------------------------------------------------------------------------- /src/mainboard/intel/eagleheights/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-y += cstates.c 2 | -------------------------------------------------------------------------------- /src/mainboard/intel/eagleheights/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/intel/emeraldlake2/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/emeraldlake2/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/intel/kblrvp/acpi_tables.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/kunimitsu/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_INTEL_KUNIMITSU 2 | bool "Kunimitsu" 3 | -------------------------------------------------------------------------------- /src/mainboard/intel/kunimitsu/acpi_tables.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/leafhill/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_INTEL_LEAFHILL 2 | bool "Leafhill" 3 | 4 | -------------------------------------------------------------------------------- /src/mainboard/intel/littleplains/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/littleplains/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/littleplains/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/minnow3/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_INTEL_MINNOW3 2 | bool "Minnow3" 3 | -------------------------------------------------------------------------------- /src/mainboard/intel/minnowmax/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_INTEL_MINNOWMAX 2 | bool "Minnow Max" 3 | -------------------------------------------------------------------------------- /src/mainboard/intel/minnowmax/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/minnowmax/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/mohonpeak/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_INTEL_MOHONPEAK 2 | bool "Mohon Peak CRB" 3 | -------------------------------------------------------------------------------- /src/mainboard/intel/mohonpeak/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/mohonpeak/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/mohonpeak/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/mtarvon/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/intel/stargo2/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_INTEL_STARGO2 2 | bool "Stargo2" 3 | -------------------------------------------------------------------------------- /src/mainboard/intel/stargo2/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/stargo2/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | Release year: 2010 3 | -------------------------------------------------------------------------------- /src/mainboard/intel/strago/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_INTEL_STRAGO 2 | bool "Strago" 3 | -------------------------------------------------------------------------------- /src/mainboard/intel/truxton/Makefile.inc: -------------------------------------------------------------------------------- 1 | ROMCCFLAGS := -mcpu=p4 -fno-simplify-phi -O2 2 | -------------------------------------------------------------------------------- /src/mainboard/intel/wtm2/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_INTEL_WTM2 2 | bool "Whitetip Mountain 2 CRB" 3 | -------------------------------------------------------------------------------- /src/mainboard/intel/wtm2/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/intel/wtm2/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | Release year: 2013 3 | -------------------------------------------------------------------------------- /src/mainboard/iwave/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_IWAVE 2 | bool "iWave" 3 | -------------------------------------------------------------------------------- /src/mainboard/iwave/iWRainbowG6/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_IWAVE_RAINBOW_G6 2 | bool "iWRainbowG6" 3 | -------------------------------------------------------------------------------- /src/mainboard/iwave/iWRainbowG6/Makefile.inc: -------------------------------------------------------------------------------- 1 | ramstage-y += cstates.c 2 | -------------------------------------------------------------------------------- /src/mainboard/iwill/dk8_htx/acpi/pci2_hc.asl: -------------------------------------------------------------------------------- 1 | #include "amd8132_2.asl" 2 | -------------------------------------------------------------------------------- /src/mainboard/iwill/dk8_htx/acpi/pci3_hc.asl: -------------------------------------------------------------------------------- 1 | #include "amd8151.asl" 2 | -------------------------------------------------------------------------------- /src/mainboard/iwill/dk8_htx/acpi/pci4_hc.asl: -------------------------------------------------------------------------------- 1 | #include "amd8131_2.asl" 2 | -------------------------------------------------------------------------------- /src/mainboard/iwill/dk8_htx/acpi/pci5_hc.asl: -------------------------------------------------------------------------------- 1 | #include "htx_no_ioapic.asl" 2 | -------------------------------------------------------------------------------- /src/mainboard/iwill/dk8_htx/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | // #include "w83627hf.asl" 2 | -------------------------------------------------------------------------------- /src/mainboard/jetway/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_JETWAY 2 | bool "Jetway" 3 | -------------------------------------------------------------------------------- /src/mainboard/kontron/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_KONTRON 2 | bool "Kontron" 3 | -------------------------------------------------------------------------------- /src/mainboard/kontron/ktqm77/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: mini 2 | -------------------------------------------------------------------------------- /src/mainboard/lanner/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_LANNER 2 | bool "Lanner" 3 | -------------------------------------------------------------------------------- /src/mainboard/lanner/em8510/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: desktop 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_LENOVO 2 | bool "Lenovo" 3 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/g505s/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_LENOVO_G505S 2 | bool "AMD G505s" 3 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/g505s/acpi/sata.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/g505s/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/l520/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_LENOVO_L520 2 | bool "ThinkPad L520" 3 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/r400/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_LENOVO_R400 2 | bool "ThinkPad R400" 3 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/s230u/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t400/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_LENOVO_T400 2 | bool "ThinkPad T400" 3 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t400/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t400/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t400/mptable.c: -------------------------------------------------------------------------------- 1 | /* dummy file */ 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t420/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_LENOVO_T420 2 | bool "ThinkPad T420" 3 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t420/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t420s/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_LENOVO_T420S 2 | bool "ThinkPad T420s" 3 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t420s/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t430s/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_LENOVO_T430S 2 | bool "ThinkPad T430s" 3 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t430s/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t500/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_LENOVO_T500 2 | bool "ThinkPad T500" 3 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t520/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_LENOVO_T520 2 | bool "ThinkPad T520" 3 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t520/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t530/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_LENOVO_T530 2 | bool "ThinkPad T530" 3 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t530/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t60/acpi/mainboard.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/t60/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/x1_carbon_gen1/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/x200/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/x200/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/x200/mptable.c: -------------------------------------------------------------------------------- 1 | /* dummy file */ 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/x201/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/x220/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/x230/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_LENOVO_X230 2 | bool "ThinkPad X230" 3 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/x230/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/x60/acpi/mainboard.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/lenovo/x60/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/linutop/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_LINUTOP 2 | bool "Linutop" 3 | -------------------------------------------------------------------------------- /src/mainboard/lowrisc/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_LOWRISC 2 | bool "lowrisc" 3 | -------------------------------------------------------------------------------- /src/mainboard/lowrisc/nexys4ddr/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_LOWRISC_NEXYS4DDR 2 | bool "nexys4ddr" 3 | -------------------------------------------------------------------------------- /src/mainboard/mitac/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_MITAC 2 | bool "Mitac" 3 | -------------------------------------------------------------------------------- /src/mainboard/msi/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_MSI 2 | bool "MSI" 3 | -------------------------------------------------------------------------------- /src/mainboard/msi/ms7721/acpi/sata.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/msi/ms7721/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/msi/ms7721/acpi/thermal.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/msi/ms9652_fam10/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: desktop 2 | Release year: 2007 3 | -------------------------------------------------------------------------------- /src/mainboard/nec/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_NEC 2 | bool "NEC" 3 | -------------------------------------------------------------------------------- /src/mainboard/nokia/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_NOKIA 2 | bool "Nokia" 3 | -------------------------------------------------------------------------------- /src/mainboard/nvidia/l1_2pvv/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_NVIDIA_L1_2PVV 2 | bool "l1_2pvv" 3 | -------------------------------------------------------------------------------- /src/mainboard/nvidia/l1_2pvv/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/packardbell/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_PACKARDBELL 2 | bool "Packard Bell" 3 | -------------------------------------------------------------------------------- /src/mainboard/packardbell/ms2290/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/pcengines/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_PCENGINES 2 | bool "PC Engines" 3 | -------------------------------------------------------------------------------- /src/mainboard/purism/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_PURISM 2 | bool "Purism" 3 | -------------------------------------------------------------------------------- /src/mainboard/purism/librem13/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_PURISM_LIBREM13 2 | bool "Librem 13" 3 | -------------------------------------------------------------------------------- /src/mainboard/rca/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_RCA 2 | bool "RCA" 3 | -------------------------------------------------------------------------------- /src/mainboard/roda/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_RODA 2 | bool "Roda" 3 | -------------------------------------------------------------------------------- /src/mainboard/roda/rk9/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_RODA_RK9 2 | bool "RK9" 3 | -------------------------------------------------------------------------------- /src/mainboard/roda/rk9/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: laptop 2 | -------------------------------------------------------------------------------- /src/mainboard/roda/rk9/mptable.c: -------------------------------------------------------------------------------- 1 | /* dummy file */ 2 | -------------------------------------------------------------------------------- /src/mainboard/roda/rv11/variants/rv11/include/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | /* no super i/o */ 2 | -------------------------------------------------------------------------------- /src/mainboard/samsung/lumpy/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_SAMSUNG_LUMPY 2 | bool "Lumpy" 3 | -------------------------------------------------------------------------------- /src/mainboard/samsung/stumpy/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_SAMSUNG_STUMPY 2 | bool "Stumpy" 3 | -------------------------------------------------------------------------------- /src/mainboard/samsung/stumpy/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/sapphire/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_SAPPHIRE 2 | bool "Sapphire" 3 | -------------------------------------------------------------------------------- /src/mainboard/sapphire/pureplatinumh61/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/sapphire/pureplatinumh61/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/siemens/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_SIEMENS 2 | bool "Siemens" 3 | -------------------------------------------------------------------------------- /src/mainboard/siemens/mc_tcu3/acpi/ec.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/siemens/mc_tcu3/acpi/superio.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mainboard/siemens/sitemp_g1p1/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: half 2 | -------------------------------------------------------------------------------- /src/mainboard/soyo/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_SOYO 2 | bool "Soyo" 3 | -------------------------------------------------------------------------------- /src/mainboard/sunw/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_SUNW 2 | bool "Sun Microsystems" 3 | -------------------------------------------------------------------------------- /src/mainboard/sunw/ultra40/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_SUNW_ULTRA40 2 | bool "Ultra 40" 3 | -------------------------------------------------------------------------------- /src/mainboard/sunw/ultra40m2/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_SUNW_ULTRA40M2 2 | bool "Ultra 40 M2" 3 | -------------------------------------------------------------------------------- /src/mainboard/supermicro/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_SUPERMICRO 2 | bool "Supermicro" 3 | -------------------------------------------------------------------------------- /src/mainboard/supermicro/h8dmr_fam10/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: server 2 | -------------------------------------------------------------------------------- /src/mainboard/supermicro/h8scm_fam10/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: server 2 | -------------------------------------------------------------------------------- /src/mainboard/technexion/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_TECHNEXION 2 | bool "Technexion" 3 | -------------------------------------------------------------------------------- /src/mainboard/thomson/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_THOMSON 2 | bool "Thomson" 3 | -------------------------------------------------------------------------------- /src/mainboard/ti/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_TI 2 | bool "TI" 3 | -------------------------------------------------------------------------------- /src/mainboard/ti/beaglebone/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_TI_BEAGLEBONE 2 | bool "Beaglebone" 3 | -------------------------------------------------------------------------------- /src/mainboard/ti/beaglebone/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: sbc 2 | -------------------------------------------------------------------------------- /src/mainboard/ti/beaglebone/memlayout.ld: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/traverse/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_TRAVERSE 2 | bool "Traverse Technologies" 3 | -------------------------------------------------------------------------------- /src/mainboard/traverse/geos/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_TRAVERSE_GEOS 2 | bool "Geos" 3 | -------------------------------------------------------------------------------- /src/mainboard/turbo/sentinel/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_TURBO_SENTINEL 2 | bool "Sentinel" 3 | -------------------------------------------------------------------------------- /src/mainboard/turbo/sentinel/memlayout.ld: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mainboard/tyan/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_TYAN 2 | bool "Tyan" 3 | -------------------------------------------------------------------------------- /src/mainboard/tyan/s2912_fam10/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: server 2 | Release year: 2007 3 | -------------------------------------------------------------------------------- /src/mainboard/tyan/s8226/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: server 2 | Release year: 2010 3 | -------------------------------------------------------------------------------- /src/mainboard/via/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_VIA 2 | bool "VIA" 3 | -------------------------------------------------------------------------------- /src/mainboard/via/vt8454c/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: eval 2 | -------------------------------------------------------------------------------- /src/mainboard/winent/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_WINENT 2 | bool "Win Enterprises" 3 | -------------------------------------------------------------------------------- /src/mainboard/winent/mb6047/board_info.txt: -------------------------------------------------------------------------------- 1 | Category: half 2 | -------------------------------------------------------------------------------- /src/mainboard/wyse/Kconfig.name: -------------------------------------------------------------------------------- 1 | config VENDOR_WYSE 2 | bool "Wyse" 3 | -------------------------------------------------------------------------------- /src/mainboard/wyse/s50/Kconfig.name: -------------------------------------------------------------------------------- 1 | config BOARD_WYSE_S50 2 | bool "S50" 3 | -------------------------------------------------------------------------------- /src/northbridge/intel/common/Kconfig: -------------------------------------------------------------------------------- 1 | config NORTHBRIDGE_INTEL_COMMON_MRC_CACHE 2 | def_bool n 3 | -------------------------------------------------------------------------------- /src/soc/intel/common/block/rtc/Makefile.inc: -------------------------------------------------------------------------------- 1 | bootblock-$(CONFIG_SOC_INTEL_COMMON_BLOCK_RTC) += rtc.c 2 | -------------------------------------------------------------------------------- /src/soc/intel/common/block/uart/Makefile.inc: -------------------------------------------------------------------------------- 1 | bootblock-$(CONFIG_SOC_INTEL_COMMON_BLOCK_UART) += uart.c -------------------------------------------------------------------------------- /src/soc/intel/sch/gma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/soc/intel/sch/gma.c -------------------------------------------------------------------------------- /src/soc/intel/sch/ide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/soc/intel/sch/ide.c -------------------------------------------------------------------------------- /src/soc/intel/sch/lpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/soc/intel/sch/lpc.c -------------------------------------------------------------------------------- /src/soc/intel/sch/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/soc/intel/sch/mmc.c -------------------------------------------------------------------------------- /src/soc/intel/sch/nvs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/soc/intel/sch/nvs.h -------------------------------------------------------------------------------- /src/soc/intel/sch/sch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/soc/intel/sch/sch.h -------------------------------------------------------------------------------- /src/soc/intel/sch/smi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/soc/intel/sch/smi.c -------------------------------------------------------------------------------- /src/soc/intel/sch/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/soc/intel/sch/usb.c -------------------------------------------------------------------------------- /src/southbridge/amd/agesa/hudson/acpi/smbus.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/southbridge/amd/cs5535/Kconfig: -------------------------------------------------------------------------------- 1 | config SOUTHBRIDGE_AMD_CS5535 2 | bool 3 | -------------------------------------------------------------------------------- /src/southbridge/amd/pi/hudson/acpi/smbus.asl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/southbridge/broadcom/bcm21000/Kconfig: -------------------------------------------------------------------------------- 1 | config SOUTHBRIDGE_BROADCOM_BCM21000 2 | bool 3 | -------------------------------------------------------------------------------- /src/southbridge/broadcom/bcm5780/Kconfig: -------------------------------------------------------------------------------- 1 | config SOUTHBRIDGE_BROADCOM_BCM5780 2 | bool 3 | -------------------------------------------------------------------------------- /src/southbridge/intel/i82870/Kconfig: -------------------------------------------------------------------------------- 1 | config SOUTHBRIDGE_INTEL_I82870 2 | bool 3 | -------------------------------------------------------------------------------- /src/southbridge/ti/pci1x2x/Kconfig: -------------------------------------------------------------------------------- 1 | config SOUTHBRIDGE_TI_PCI1X2X 2 | bool 3 | -------------------------------------------------------------------------------- /src/vboot/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/Kconfig -------------------------------------------------------------------------------- /src/vboot/Makefile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/Makefile.inc -------------------------------------------------------------------------------- /src/vboot/bootmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/bootmode.c -------------------------------------------------------------------------------- /src/vboot/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/common.c -------------------------------------------------------------------------------- /src/vboot/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/misc.h -------------------------------------------------------------------------------- /src/vboot/secdata_tpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/secdata_tpm.c -------------------------------------------------------------------------------- /src/vboot/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/symbols.h -------------------------------------------------------------------------------- /src/vboot/vbnv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/vbnv.c -------------------------------------------------------------------------------- /src/vboot/vbnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/vbnv.h -------------------------------------------------------------------------------- /src/vboot/vbnv_cmos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/vbnv_cmos.c -------------------------------------------------------------------------------- /src/vboot/vbnv_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/vbnv_ec.c -------------------------------------------------------------------------------- /src/vboot/vbnv_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/vbnv_flash.c -------------------------------------------------------------------------------- /src/vboot/vbnv_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/vbnv_layout.h -------------------------------------------------------------------------------- /src/vboot/vboot_logic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/vboot_logic.c -------------------------------------------------------------------------------- /src/vboot/verstage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/src/vboot/verstage.c -------------------------------------------------------------------------------- /toolchain.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/toolchain.inc -------------------------------------------------------------------------------- /util/abuild/abuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/abuild/abuild -------------------------------------------------------------------------------- /util/abuild/abuild.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/abuild/abuild.1 -------------------------------------------------------------------------------- /util/abuild/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/abuild/getopt.c -------------------------------------------------------------------------------- /util/acpi/acpidump-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/acpi/acpidump-all -------------------------------------------------------------------------------- /util/amdfwtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/amdfwtool/Makefile -------------------------------------------------------------------------------- /util/amdtools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/amdtools/README -------------------------------------------------------------------------------- /util/archive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/archive/Makefile -------------------------------------------------------------------------------- /util/archive/archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/archive/archive.c -------------------------------------------------------------------------------- /util/archive/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/archive/archive.h -------------------------------------------------------------------------------- /util/autoport/azalia.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/autoport/azalia.go -------------------------------------------------------------------------------- /util/autoport/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/autoport/main.go -------------------------------------------------------------------------------- /util/autoport/rce823.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/autoport/rce823.go -------------------------------------------------------------------------------- /util/autoport/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/autoport/readme.md -------------------------------------------------------------------------------- /util/autoport/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/autoport/root.go -------------------------------------------------------------------------------- /util/bimgtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/bimgtool/Makefile -------------------------------------------------------------------------------- /util/blobtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/blobtool/Makefile -------------------------------------------------------------------------------- /util/broadcom/Makefile.inc: -------------------------------------------------------------------------------- 1 | subdirs-$(CONFIG_SOC_BROADCOM_CYGNUS) += secimage 2 | -------------------------------------------------------------------------------- /util/cbfstool/EXAMPLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/EXAMPLE -------------------------------------------------------------------------------- /util/cbfstool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/Makefile -------------------------------------------------------------------------------- /util/cbfstool/cbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/cbfs.h -------------------------------------------------------------------------------- /util/cbfstool/coff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/coff.h -------------------------------------------------------------------------------- /util/cbfstool/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/common.c -------------------------------------------------------------------------------- /util/cbfstool/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/common.h -------------------------------------------------------------------------------- /util/cbfstool/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/elf.h -------------------------------------------------------------------------------- /util/cbfstool/fit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/fit.c -------------------------------------------------------------------------------- /util/cbfstool/fit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/fit.h -------------------------------------------------------------------------------- /util/cbfstool/fmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/fmd.c -------------------------------------------------------------------------------- /util/cbfstool/fmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/fmd.h -------------------------------------------------------------------------------- /util/cbfstool/fv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/fv.h -------------------------------------------------------------------------------- /util/cbfstool/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/linux.h -------------------------------------------------------------------------------- /util/cbfstool/lz4/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/lz4/NEWS -------------------------------------------------------------------------------- /util/cbfstool/option.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/option.h -------------------------------------------------------------------------------- /util/cbfstool/rmodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/rmodule.c -------------------------------------------------------------------------------- /util/cbfstool/rmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/rmodule.h -------------------------------------------------------------------------------- /util/cbfstool/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/swab.h -------------------------------------------------------------------------------- /util/cbfstool/xdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbfstool/xdr.c -------------------------------------------------------------------------------- /util/cbmem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbmem/Makefile -------------------------------------------------------------------------------- /util/cbmem/cbmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/cbmem/cbmem.c -------------------------------------------------------------------------------- /util/chromeos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/chromeos/README.md -------------------------------------------------------------------------------- /util/crossgcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/crossgcc/Makefile -------------------------------------------------------------------------------- /util/crossgcc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/crossgcc/README -------------------------------------------------------------------------------- /util/crossgcc/buildgcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/crossgcc/buildgcc -------------------------------------------------------------------------------- /util/crossgcc/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/crossgcc/getopt.c -------------------------------------------------------------------------------- /util/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/docker/Makefile -------------------------------------------------------------------------------- /util/ectool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/ectool/Makefile -------------------------------------------------------------------------------- /util/ectool/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/ectool/ec.c -------------------------------------------------------------------------------- /util/ectool/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/ectool/ec.h -------------------------------------------------------------------------------- /util/ectool/ectool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/ectool/ectool.c -------------------------------------------------------------------------------- /util/futility/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/futility/Makefile -------------------------------------------------------------------------------- /util/fuzz-tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/fuzz-tests/README -------------------------------------------------------------------------------- /util/genprof/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/genprof/Makefile -------------------------------------------------------------------------------- /util/genprof/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/genprof/README -------------------------------------------------------------------------------- /util/genprof/genprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/genprof/genprof.c -------------------------------------------------------------------------------- /util/genprof/log2dress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/genprof/log2dress -------------------------------------------------------------------------------- /util/ifdfake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/ifdfake/Makefile -------------------------------------------------------------------------------- /util/ifdfake/ifdfake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/ifdfake/ifdfake.c -------------------------------------------------------------------------------- /util/ifdtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/ifdtool/Makefile -------------------------------------------------------------------------------- /util/ifdtool/ifdtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/ifdtool/ifdtool.c -------------------------------------------------------------------------------- /util/ifdtool/ifdtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/ifdtool/ifdtool.h -------------------------------------------------------------------------------- /util/intelmetool/me.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/intelmetool/me.c -------------------------------------------------------------------------------- /util/intelmetool/me.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/intelmetool/me.h -------------------------------------------------------------------------------- /util/intelmetool/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/intelmetool/mmap.c -------------------------------------------------------------------------------- /util/intelmetool/mmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/intelmetool/mmap.h -------------------------------------------------------------------------------- /util/inteltool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/inteltool/Makefile -------------------------------------------------------------------------------- /util/inteltool/ahci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/inteltool/ahci.c -------------------------------------------------------------------------------- /util/inteltool/amb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/inteltool/amb.c -------------------------------------------------------------------------------- /util/inteltool/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/inteltool/cpu.c -------------------------------------------------------------------------------- /util/inteltool/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/inteltool/gfx.c -------------------------------------------------------------------------------- /util/inteltool/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/inteltool/gpio.c -------------------------------------------------------------------------------- /util/inteltool/memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/inteltool/memory.c -------------------------------------------------------------------------------- /util/inteltool/pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/inteltool/pcie.c -------------------------------------------------------------------------------- /util/inteltool/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/inteltool/spi.c -------------------------------------------------------------------------------- /util/k8resdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/k8resdump/Makefile -------------------------------------------------------------------------------- /util/kconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/Makefile -------------------------------------------------------------------------------- /util/kconfig/check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/check.sh -------------------------------------------------------------------------------- /util/kconfig/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/conf.c -------------------------------------------------------------------------------- /util/kconfig/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/confdata.c -------------------------------------------------------------------------------- /util/kconfig/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/expr.c -------------------------------------------------------------------------------- /util/kconfig/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/expr.h -------------------------------------------------------------------------------- /util/kconfig/gconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/gconf.c -------------------------------------------------------------------------------- /util/kconfig/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/images.c -------------------------------------------------------------------------------- /util/kconfig/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/list.h -------------------------------------------------------------------------------- /util/kconfig/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/lkc.h -------------------------------------------------------------------------------- /util/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /util/kconfig/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/mconf.c -------------------------------------------------------------------------------- /util/kconfig/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/menu.c -------------------------------------------------------------------------------- /util/kconfig/miniconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/miniconfig -------------------------------------------------------------------------------- /util/kconfig/nconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/nconf.c -------------------------------------------------------------------------------- /util/kconfig/nconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/nconf.h -------------------------------------------------------------------------------- /util/kconfig/qconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/qconf.cc -------------------------------------------------------------------------------- /util/kconfig/qconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/qconf.h -------------------------------------------------------------------------------- /util/kconfig/regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/regex.c -------------------------------------------------------------------------------- /util/kconfig/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/regex.h -------------------------------------------------------------------------------- /util/kconfig/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/symbol.c -------------------------------------------------------------------------------- /util/kconfig/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/util.c -------------------------------------------------------------------------------- /util/kconfig/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/zconf.l -------------------------------------------------------------------------------- /util/kconfig/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/kconfig/zconf.y -------------------------------------------------------------------------------- /util/lint/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/lint/checkpatch.pl -------------------------------------------------------------------------------- /util/lint/kconfig_lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/lint/kconfig_lint -------------------------------------------------------------------------------- /util/lint/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/lint/lint -------------------------------------------------------------------------------- /util/lint/remccoms3.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/lint/remccoms3.sed -------------------------------------------------------------------------------- /util/lint/spelling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/lint/spelling.txt -------------------------------------------------------------------------------- /util/marvell/Makefile.inc: -------------------------------------------------------------------------------- 1 | subdirs-$(CONFIG_SOC_MARVELL_ARMADA38X) += doimage_mv 2 | -------------------------------------------------------------------------------- /util/mma/mma.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/mma/mma.conf -------------------------------------------------------------------------------- /util/msrtool/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/COPYING -------------------------------------------------------------------------------- /util/msrtool/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/README -------------------------------------------------------------------------------- /util/msrtool/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/TODO -------------------------------------------------------------------------------- /util/msrtool/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/configure -------------------------------------------------------------------------------- /util/msrtool/cs5536.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/cs5536.c -------------------------------------------------------------------------------- /util/msrtool/darwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/darwin.c -------------------------------------------------------------------------------- /util/msrtool/freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/freebsd.c -------------------------------------------------------------------------------- /util/msrtool/geodegx2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/geodegx2.c -------------------------------------------------------------------------------- /util/msrtool/geodelx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/geodelx.c -------------------------------------------------------------------------------- /util/msrtool/k8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/k8.c -------------------------------------------------------------------------------- /util/msrtool/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/linux.c -------------------------------------------------------------------------------- /util/msrtool/msrtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/msrtool.c -------------------------------------------------------------------------------- /util/msrtool/msrtool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/msrtool.h -------------------------------------------------------------------------------- /util/msrtool/msrutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/msrutils.c -------------------------------------------------------------------------------- /util/msrtool/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/msrtool/sys.c -------------------------------------------------------------------------------- /util/nvramtool/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/nvramtool/COPYING -------------------------------------------------------------------------------- /util/nvramtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/nvramtool/Makefile -------------------------------------------------------------------------------- /util/nvramtool/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/nvramtool/README -------------------------------------------------------------------------------- /util/nvramtool/cbfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/nvramtool/cbfs.c -------------------------------------------------------------------------------- /util/nvramtool/cbfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/nvramtool/cbfs.h -------------------------------------------------------------------------------- /util/nvramtool/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/nvramtool/common.c -------------------------------------------------------------------------------- /util/nvramtool/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/nvramtool/common.h -------------------------------------------------------------------------------- /util/nvramtool/layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/nvramtool/layout.c -------------------------------------------------------------------------------- /util/nvramtool/layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/nvramtool/layout.h -------------------------------------------------------------------------------- /util/optionlist/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/optionlist/README -------------------------------------------------------------------------------- /util/post/.gitignore: -------------------------------------------------------------------------------- 1 | post 2 | -------------------------------------------------------------------------------- /util/post/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/post/Makefile -------------------------------------------------------------------------------- /util/post/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/post/README -------------------------------------------------------------------------------- /util/post/post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/post/post.c -------------------------------------------------------------------------------- /util/rockchip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/rockchip/LICENSE -------------------------------------------------------------------------------- /util/romcc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/romcc/COPYING -------------------------------------------------------------------------------- /util/romcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/romcc/Makefile -------------------------------------------------------------------------------- /util/romcc/results/linux_test1.out: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /util/romcc/results/linux_test6.out: -------------------------------------------------------------------------------- 1 | B 2 | Registered 3 | -------------------------------------------------------------------------------- /util/romcc/romcc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/romcc/romcc.1 -------------------------------------------------------------------------------- /util/romcc/romcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/romcc/romcc.c -------------------------------------------------------------------------------- /util/romcc/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/romcc/test.sh -------------------------------------------------------------------------------- /util/sconfig/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/sconfig/main.c -------------------------------------------------------------------------------- /util/sconfig/sconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/sconfig/sconfig.h -------------------------------------------------------------------------------- /util/sconfig/sconfig.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/sconfig/sconfig.l -------------------------------------------------------------------------------- /util/sconfig/sconfig.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/sconfig/sconfig.y -------------------------------------------------------------------------------- /util/superiotool/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/superiotool/README -------------------------------------------------------------------------------- /util/superiotool/ali.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/superiotool/ali.c -------------------------------------------------------------------------------- /util/superiotool/amd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/superiotool/amd.c -------------------------------------------------------------------------------- /util/superiotool/exar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/superiotool/exar.c -------------------------------------------------------------------------------- /util/superiotool/ite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/superiotool/ite.c -------------------------------------------------------------------------------- /util/superiotool/nsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/superiotool/nsc.c -------------------------------------------------------------------------------- /util/superiotool/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/superiotool/pci.c -------------------------------------------------------------------------------- /util/superiotool/smsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/superiotool/smsc.c -------------------------------------------------------------------------------- /util/superiotool/via.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/superiotool/via.c -------------------------------------------------------------------------------- /util/vgabios/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/vgabios/Makefile -------------------------------------------------------------------------------- /util/vgabios/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/vgabios/device.c -------------------------------------------------------------------------------- /util/vgabios/testbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/vgabios/testbios.c -------------------------------------------------------------------------------- /util/vgabios/testbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/vgabios/testbios.h -------------------------------------------------------------------------------- /util/viatool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/viatool/Makefile -------------------------------------------------------------------------------- /util/viatool/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/viatool/README -------------------------------------------------------------------------------- /util/viatool/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/viatool/cpu.c -------------------------------------------------------------------------------- /util/viatool/viatool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/viatool/viatool.c -------------------------------------------------------------------------------- /util/viatool/viatool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/viatool/viatool.h -------------------------------------------------------------------------------- /util/xcompile/xcompile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teslamotors/coreboot/HEAD/util/xcompile/xcompile --------------------------------------------------------------------------------