treewide: Add 'IWYU pragma: export' comment

This pragma says to IWYU (Include What You Use) that the current file
is supposed to provide commented headers.

Change-Id: I482c645f6b5f955e532ad94def1b2f74f15ca908
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68332
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
This commit is contained in:
Elyes Haouas 2022-10-27 12:25:12 +02:00 committed by Felix Held
parent 109bd3b796
commit 35c3ae3bf4
17 changed files with 25 additions and 24 deletions

View File

@ -4,7 +4,7 @@
#define ARCH_CPU_H #define ARCH_CPU_H
#include <types.h> #include <types.h>
#include <arch/cpuid.h> #include <arch/cpuid.h> /* IWYU pragma: export */
/* /*
* EFLAGS bits * EFLAGS bits

View File

@ -3,7 +3,7 @@
#ifndef _CBMEM_H_ #ifndef _CBMEM_H_
#define _CBMEM_H_ #define _CBMEM_H_
#include <commonlib/bsd/cbmem_id.h> #include <commonlib/bsd/cbmem_id.h> /* IWYU pragma: export */
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include <boot/coreboot_tables.h> #include <boot/coreboot_tables.h>

View File

@ -8,7 +8,7 @@
#include <stdint.h> #include <stdint.h>
/* console.h is supposed to provide the log levels defined in here: */ /* console.h is supposed to provide the log levels defined in here: */
#include <commonlib/loglevel.h> #include <commonlib/loglevel.h> /* IWYU pragma: export */
#define RAM_DEBUG (CONFIG(DEBUG_RAM_SETUP) ? BIOS_DEBUG : BIOS_NEVER) #define RAM_DEBUG (CONFIG(DEBUG_RAM_SETUP) ? BIOS_DEBUG : BIOS_NEVER)
#define RAM_SPEW (CONFIG(DEBUG_RAM_SETUP) ? BIOS_SPEW : BIOS_NEVER) #define RAM_SPEW (CONFIG(DEBUG_RAM_SETUP) ? BIOS_SPEW : BIOS_NEVER)

View File

@ -3,7 +3,7 @@
#ifndef CPU_CPU_H #ifndef CPU_CPU_H
#define CPU_CPU_H #define CPU_CPU_H
#include <arch/cpu.h> #include <arch/cpu.h> /* IWYU pragma: export */
#include <stdint.h> #include <stdint.h>
void cpu_initialize(unsigned int cpu_index); void cpu_initialize(unsigned int cpu_index);

View File

@ -3,7 +3,7 @@
#ifndef CPU_X86_MSR_H #ifndef CPU_X86_MSR_H
#define CPU_X86_MSR_H #define CPU_X86_MSR_H
#include <cpu/x86/msr_access.h> #include <cpu/x86/msr_access.h> /* IWYU pragma: export */
/* Intel SDM: Table 2-1 /* Intel SDM: Table 2-1
* IA-32 architectural MSR: Extended Feature Enable Register * IA-32 architectural MSR: Extended Feature Enable Register

View File

@ -3,7 +3,7 @@
#ifndef __DEVICE_MMIO_H__ #ifndef __DEVICE_MMIO_H__
#define __DEVICE_MMIO_H__ #define __DEVICE_MMIO_H__
#include <arch/mmio.h> #include <arch/mmio.h> /* IWYU pragma: export */
#include <commonlib/helpers.h> #include <commonlib/helpers.h>
#include <endian.h> #include <endian.h>
#include <types.h> #include <types.h>

View File

@ -19,14 +19,15 @@
#if CONFIG(PCI) #if CONFIG(PCI)
#include <stdint.h> /* When <device/pci.h> is needed, it supposed to provide <device/pci_{def,type}.h> */
#include <stddef.h>
#include <device/pci_def.h>
#include <device/resource.h>
#include <device/device.h> #include <device/device.h>
#include <device/pci_def.h> /* IWYU pragma: export */
#include <device/pci_ops.h> #include <device/pci_ops.h>
#include <device/pci_rom.h> #include <device/pci_rom.h>
#include <device/pci_type.h> #include <device/pci_type.h> /* IWYU pragma: export */
#include <device/resource.h>
#include <stddef.h>
#include <stdint.h>
/* Common pci operations without a standard interface */ /* Common pci operations without a standard interface */
struct pci_operations { struct pci_operations {

View File

@ -6,7 +6,7 @@
#include <stdint.h> #include <stdint.h>
#include <device/device.h> #include <device/device.h>
#include <device/pci_type.h> #include <device/pci_type.h>
#include <arch/pci_ops.h> #include <arch/pci_ops.h> /* IWYU pragma: export */
void __noreturn pcidev_die(void); void __noreturn pcidev_die(void);

View File

@ -6,8 +6,8 @@
#include <stdint.h> #include <stdint.h>
#include <device/device.h> #include <device/device.h>
/* When <device/pnp.h> is needed, it supposed to provide <device/pnp_{def,type}.h> */ /* When <device/pnp.h> is needed, it supposed to provide <device/pnp_{def,type}.h> */
#include <device/pnp_def.h> #include <device/pnp_def.h> /* IWYU pragma: export */
#include <device/pnp_type.h> #include <device/pnp_type.h> /* IWYU pragma: export */
#include <arch/io.h> #include <arch/io.h>
#if !ENV_PNP_SIMPLE_DEVICE #if !ENV_PNP_SIMPLE_DEVICE

View File

@ -3,9 +3,9 @@
#ifndef STRING_H #ifndef STRING_H
#define STRING_H #define STRING_H
#include <stdarg.h> #include <stdarg.h> /* IWYU pragma: export */
#include <stddef.h> #include <stddef.h>
#include <stdio.h> #include <stdio.h> /* IWYU pragma: export */
void *memcpy(void *dest, const void *src, size_t n); void *memcpy(void *dest, const void *src, size_t n);
void *memmove(void *dest, const void *src, size_t n); void *memmove(void *dest, const void *src, size_t n);

View File

@ -4,11 +4,13 @@
#define __TYPES_H #define __TYPES_H
/* types.h is supposed to provide the standard headers defined in here: */ /* types.h is supposed to provide the standard headers defined in here: */
/* IWYU pragma: begin_exports */
#include <commonlib/bsd/cb_err.h> #include <commonlib/bsd/cb_err.h>
#include <limits.h> #include <limits.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
#include <stddef.h> #include <stddef.h>
/* IWYU pragma: end_exports */
/* /*
* This may mean something else on architectures where the bits are numbered * This may mean something else on architectures where the bits are numbered

View File

@ -22,7 +22,7 @@
#define DEFAULT_GPIOBASE 0x0480 #define DEFAULT_GPIOBASE 0x0480
#define DEFAULT_PMBASE 0x0500 #define DEFAULT_PMBASE 0x0500
#include <southbridge/intel/common/rcba.h> #include <southbridge/intel/common/rcba.h> /* IWYU pragma: export */
#if CONFIG(SOUTHBRIDGE_INTEL_BD82X6X) #if CONFIG(SOUTHBRIDGE_INTEL_BD82X6X)
#define CROS_GPIO_DEVICE_NAME "CougarPoint" #define CROS_GPIO_DEVICE_NAME "CougarPoint"

View File

@ -7,7 +7,7 @@
#define DEFAULT_GPIOBASE 0x0480 #define DEFAULT_GPIOBASE 0x0480
#define DEFAULT_PMBASE 0x0500 #define DEFAULT_PMBASE 0x0500
#include <southbridge/intel/common/rcba.h> #include <southbridge/intel/common/rcba.h> /* IWYU pragma: export */
#ifndef __ACPI__ #ifndef __ACPI__
#define DEBUG_PERIODIC_SMIS 0 #define DEBUG_PERIODIC_SMIS 0

View File

@ -5,7 +5,7 @@
#define DEFAULT_TBAR ((u8 *)0xfed1b000) #define DEFAULT_TBAR ((u8 *)0xfed1b000)
#include <southbridge/intel/common/rcba.h> #include <southbridge/intel/common/rcba.h> /* IWYU pragma: export */
#if CONFIG(BOARD_EMULATION_QEMU_X86_Q35) #if CONFIG(BOARD_EMULATION_QEMU_X86_Q35)
/* /*

View File

@ -5,7 +5,7 @@
#define DEFAULT_TBAR ((u8 *)0xfed1b000) #define DEFAULT_TBAR ((u8 *)0xfed1b000)
#include <southbridge/intel/common/rcba.h> #include <southbridge/intel/common/rcba.h> /* IWYU pragma: export */
#define DEFAULT_PMBASE 0x00000500 #define DEFAULT_PMBASE 0x00000500
#define DEFAULT_TCOBASE (DEFAULT_PMBASE + 0x60) #define DEFAULT_TCOBASE (DEFAULT_PMBASE + 0x60)

View File

@ -4,6 +4,7 @@
#define SOUTHBRIDGE_INTEL_BD82X6X_PCH_H #define SOUTHBRIDGE_INTEL_BD82X6X_PCH_H
#include <acpi/acpi.h> #include <acpi/acpi.h>
#include <southbridge/intel/common/rcba.h> /* IWYU pragma: export */
/* PCH types */ /* PCH types */
#define PCH_TYPE_CPT 0x1c /* CougarPoint */ #define PCH_TYPE_CPT 0x1c /* CougarPoint */
@ -24,8 +25,6 @@
#define DEFAULT_PMBASE 0x0500 #define DEFAULT_PMBASE 0x0500
#define DEFAULT_HECIBAR ((u8 *)0xfed17000) #define DEFAULT_HECIBAR ((u8 *)0xfed17000)
#include <southbridge/intel/common/rcba.h>
#ifndef __ACPI__ #ifndef __ACPI__
void pch_iobp_update(u32 address, u32 andvalue, u32 orvalue); void pch_iobp_update(u32 address, u32 andvalue, u32 orvalue);

View File

@ -4,6 +4,7 @@
#define SOUTHBRIDGE_INTEL_LYNXPOINT_PCH_H #define SOUTHBRIDGE_INTEL_LYNXPOINT_PCH_H
#include <acpi/acpi.h> #include <acpi/acpi.h>
#include <southbridge/intel/common/rcba.h> /* IWYU pragma: export */
#define CROS_GPIO_DEVICE_NAME "LynxPoint" #define CROS_GPIO_DEVICE_NAME "LynxPoint"
@ -55,8 +56,6 @@
#define DEFAULT_GPIOSIZE 0x80 #define DEFAULT_GPIOSIZE 0x80
#endif #endif
#include <southbridge/intel/common/rcba.h>
#ifndef __ACPI__ #ifndef __ACPI__
#if CONFIG(INTEL_LYNXPOINT_LP) #if CONFIG(INTEL_LYNXPOINT_LP)