Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

# SPDX-License-Identifier: GPL-2.0-only
menuconfig CONFIG_GOOGLE_FIRMWARE
	bool "Google Firmware Drivers"
	default n
	help
	  These firmware drivers are used by Google's servers.  They are
	  only useful if you are working directly on one of their
	  proprietary servers.  If in doubt, say "N".

if CONFIG_GOOGLE_FIRMWARE

config CONFIG_GOOGLE_SMI
	tristate "SMI interface for Google platforms"
	depends on CONFIG_X86 && CONFIG_ACPI && CONFIG_DMI
	help
	  Say Y here if you want to enable SMI callbacks for Google
	  platforms.  This provides an interface for writing to and
	  clearing the event log.  If CONFIG_EFI_VARS is also enabled this
	  driver provides an interface for reading and writing CONFIG_NVRAM
	  variables.

config CONFIG_GOOGLE_COREBOOT_TABLE
	tristate "Coreboot Table Access"
	depends on CONFIG_ACPI || CONFIG_OF
	help
	  This option enables the coreboot_table module, which provides other
	  firmware modules access to the coreboot table. The coreboot table
	  pointer is accessed through the CONFIG_ACPI "GOOGCB00" object or the
	  device tree node /firmware/coreboot.
	  If unsure say N.

config CONFIG_GOOGLE_COREBOOT_TABLE_ACPI
	tristate
	select CONFIG_GOOGLE_COREBOOT_TABLE

config CONFIG_GOOGLE_COREBOOT_TABLE_OF
	tristate
	select CONFIG_GOOGLE_COREBOOT_TABLE

config CONFIG_GOOGLE_MEMCONSOLE
	tristate
	depends on CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY || CONFIG_GOOGLE_MEMCONSOLE_COREBOOT

config CONFIG_GOOGLE_MEMCONSOLE_X86_LEGACY
	tristate "Firmware Memory Console - X86 Legacy support"
	depends on CONFIG_X86 && CONFIG_ACPI && CONFIG_DMI
	select CONFIG_GOOGLE_MEMCONSOLE
	help
	  This option enables the kernel to search for a firmware log in
	  the EBDA on Google servers.  If found, this log is exported to
	  userland in the file /sys/firmware/log.

config CONFIG_GOOGLE_FRAMEBUFFER_COREBOOT
	tristate "Coreboot Framebuffer"
	depends on CONFIG_FB_SIMPLE
	depends on CONFIG_GOOGLE_COREBOOT_TABLE
	help
	  This option enables the kernel to search for a framebuffer in
	  the coreboot table.  If found, it is registered with simplefb.

config CONFIG_GOOGLE_MEMCONSOLE_COREBOOT
	tristate "Firmware Memory Console"
	depends on CONFIG_GOOGLE_COREBOOT_TABLE
	select CONFIG_GOOGLE_MEMCONSOLE
	help
	  This option enables the kernel to search for a firmware log in
	  the coreboot table.  If found, this log is exported to userland
	  in the file /sys/firmware/log.

config CONFIG_GOOGLE_VPD
	tristate "Vital Product Data"
	depends on CONFIG_GOOGLE_COREBOOT_TABLE
	help
	  This option enables the kernel to expose the content of Google VPD
	  under /sys/firmware/vpd.

endif # CONFIG_GOOGLE_FIRMWARE