Commit 09d40e0e authored by Antonio Nino Diaz's avatar Antonio Nino Diaz
Browse files

Sanitise includes across codebase

Enforce full include path for includes. Deprecate old paths.

The following folders inside include/lib have been left unchanged:

- include/lib/cpus/${ARCH}
- include/lib/el3_runtime/${ARCH}

The reason for this change is that having a global namespace for
includes isn't a good idea. It defeats one of the advantages of having
folders and it introduces problems that are sometimes subtle (because
you may not know the header you are actually including if there are two
of them).

For example, this patch had to be created because two headers were
called the same way: e0ea0928 ("Fix gpio includes of mt8173 platform
to avoid collision."). More recently, this patch has had similar
problems: 46f9b2c3 ("drivers: add tzc380 support").

This problem was introduced in commit 4ecca339

 ("Move include and
source files to logical locations"). At that time, there weren't too
many headers so it wasn't a real issue. However, time has shown that
this creates problems.

Platforms that want to preserve the way they include headers may add the
removed paths to PLAT_INCLUDES, but this is discouraged.

Change-Id: I39dc53ed98f9e297a5966e723d1936d6ccf2fc8f
Signed-off-by: default avatarAntonio Nino Diaz <antonio.ninodiaz@arm.com>
parent f5478ded
...@@ -7,7 +7,8 @@ ...@@ -7,7 +7,8 @@
#ifndef PLAT_PRIVATE_H #ifndef PLAT_PRIVATE_H
#define PLAT_PRIVATE_H #define PLAT_PRIVATE_H
#include <bl_common.h> #include <common/bl_common.h>
#include "hi3798cv200.h" #include "hi3798cv200.h"
void plat_configure_mmu_el3(unsigned long total_base, void plat_configure_mmu_el3(unsigned long total_base,
......
...@@ -8,11 +8,12 @@ ...@@ -8,11 +8,12 @@
#define PLATFORM_DEF_H #define PLATFORM_DEF_H
#include <arch.h> #include <arch.h>
#include <common_def.h> #include <common/interrupt_props.h>
#include <gic_common.h> #include <common/tbbr/tbbr_img_def.h>
#include <interrupt_props.h> #include <drivers/arm/gic_common.h>
#include <tbbr/tbbr_img_def.h> #include <lib/utils_def.h>
#include <utils_def.h> #include <plat/common/common_def.h>
#include "hi3798cv200.h" #include "hi3798cv200.h"
#include "poplar_layout.h" /* BL memory region sizes, etc */ #include "poplar_layout.h" /* BL memory region sizes, etc */
......
...@@ -4,16 +4,19 @@ ...@@ -4,16 +4,19 @@
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <arch_helpers.h>
#include <assert.h> #include <assert.h>
#include <bl_common.h>
#include <context.h>
#include <context_mgmt.h>
#include <debug.h>
#include <mmio.h>
#include <platform.h>
#include <platform_def.h> #include <platform_def.h>
#include <psci.h>
#include <arch_helpers.h>
#include <common/bl_common.h>
#include <common/debug.h>
#include <context.h>
#include <lib/el3_runtime/context_mgmt.h>
#include <lib/mmio.h>
#include <lib/psci/psci.h>
#include <plat/common/platform.h>
#include "hi3798cv200.h" #include "hi3798cv200.h"
#include "plat_private.h" #include "plat_private.h"
......
...@@ -4,23 +4,25 @@ ...@@ -4,23 +4,25 @@
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <arch_helpers.h>
#include <assert.h> #include <assert.h>
#include <debug.h>
#include <firmware_image_package.h>
#include <io_block.h>
#include <io_driver.h>
#include <io_fip.h>
#include <io_memmap.h>
#include <io_storage.h>
#include <mmc.h>
#include <mmio.h>
#include <partition/partition.h>
#include <semihosting.h>
#include <string.h> #include <string.h>
#include <tbbr_img_def.h>
#include <utils.h> #include <platform_def.h>
#include "platform_def.h"
#include <arch_helpers.h>
#include <common/debug.h>
#include <common/tbbr/tbbr_img_def.h>
#include <drivers/io/io_block.h>
#include <drivers/io/io_driver.h>
#include <drivers/io/io_fip.h>
#include <drivers/io/io_memmap.h>
#include <drivers/io/io_storage.h>
#include <drivers/mmc.h>
#include <drivers/partition/partition.h>
#include <lib/mmio.h>
#include <lib/semihosting.h>
#include <lib/utils.h>
#include <tools_share/firmware_image_package.h>
#if !POPLAR_RECOVERY #if !POPLAR_RECOVERY
static const io_dev_connector_t *emmc_dev_con; static const io_dev_connector_t *emmc_dev_con;
......
...@@ -4,9 +4,11 @@ ...@@ -4,9 +4,11 @@
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <platform_def.h>
#include <arch.h> #include <arch.h>
#include <psci.h> #include <lib/psci/psci.h>
#include "platform_def.h"
#include "plat_private.h" #include "plat_private.h"
const unsigned char hisi_power_domain_tree_desc[] = { const unsigned char hisi_power_domain_tree_desc[] = {
......
...@@ -54,9 +54,7 @@ $(eval $(call add_define,PLAT_PL061_MAX_GPIOS)) ...@@ -54,9 +54,7 @@ $(eval $(call add_define,PLAT_PL061_MAX_GPIOS))
PLAT_INCLUDES := -Iplat/hisilicon/poplar/include \ PLAT_INCLUDES := -Iplat/hisilicon/poplar/include \
-Iplat/hisilicon/poplar \ -Iplat/hisilicon/poplar \
-Iinclude/common/tbbr \ -Iinclude/common/tbbr
-Iinclude/drivers/synopsys \
-Iinclude/drivers/io
PLAT_BL_COMMON_SOURCES := \ PLAT_BL_COMMON_SOURCES := \
lib/xlat_tables/aarch64/xlat_tables.c \ lib/xlat_tables/aarch64/xlat_tables.c \
......
...@@ -4,10 +4,11 @@ ...@@ -4,10 +4,11 @@
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <gicv2.h>
#include <platform.h>
#include <platform_def.h> #include <platform_def.h>
#include <drivers/arm/gicv2.h>
#include <plat/common/platform.h>
/****************************************************************************** /******************************************************************************
* On a GICv2 system, the Group 1 secure interrupts are treated as Group 0 * On a GICv2 system, the Group 1 secure interrupts are treated as Group 0
* interrupts. * interrupts.
......
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <bl_common.h> #include <common/bl_common.h>
#include <desc_image_load.h> #include <common/desc_image_load.h>
#include <platform.h> #include <plat/common/platform.h>
/******************************************************************************* /*******************************************************************************
* This function flushes the data structures so that they are visible * This function flushes the data structures so that they are visible
......
...@@ -4,12 +4,14 @@ ...@@ -4,12 +4,14 @@
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <stdbool.h>
#include <arch.h> #include <arch.h>
#include <arch_helpers.h> #include <arch_helpers.h>
#include <debug.h> #include <common/debug.h>
#include <plat_imx8.h> #include <plat_imx8.h>
#include <sci/sci.h> #include <sci/sci.h>
#include <stdbool.h>
void __dead2 imx_system_off(void) void __dead2 imx_system_off(void)
{ {
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#include <arch.h> #include <arch.h>
#include <arch_helpers.h> #include <arch_helpers.h>
#include <platform.h> #include <plat/common/platform.h>
const unsigned char imx_power_domain_tree_desc[] = { const unsigned char imx_power_domain_tree_desc[] = {
PWR_DOMAIN_AT_MAX_LVL, PWR_DOMAIN_AT_MAX_LVL,
......
...@@ -4,8 +4,9 @@ ...@@ -4,8 +4,9 @@
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <mmio.h> #include <lib/mmio.h>
#include <utils_def.h> #include <lib/utils_def.h>
#include <imx_aips.h> #include <imx_aips.h>
#include <imx_regs.h> #include <imx_regs.h>
......
...@@ -3,8 +3,11 @@ ...@@ -3,8 +3,11 @@
* *
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <stdint.h> #include <stdint.h>
#include <mmio.h>
#include <lib/mmio.h>
#include <imx_caam.h> #include <imx_caam.h>
void imx_caam_init(void) void imx_caam_init(void)
......
...@@ -3,10 +3,13 @@ ...@@ -3,10 +3,13 @@
* *
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <arch.h>
#include <mmio.h>
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
#include <arch.h>
#include <lib/mmio.h>
#include <imx_regs.h> #include <imx_regs.h>
#include <imx_clock.h> #include <imx_clock.h>
......
...@@ -3,7 +3,9 @@ ...@@ -3,7 +3,9 @@
* *
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <mmio.h>
#include <lib/mmio.h>
#include <imx_csu.h> #include <imx_csu.h>
#include <imx_regs.h> #include <imx_regs.h>
......
...@@ -4,7 +4,8 @@ ...@@ -4,7 +4,8 @@
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <mmio.h> #include <lib/mmio.h>
#include <imx_regs.h> #include <imx_regs.h>
#include <imx_io_mux.h> #include <imx_io_mux.h>
......
...@@ -4,7 +4,8 @@ ...@@ -4,7 +4,8 @@
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <mmio.h> #include <lib/mmio.h>
#include <imx_regs.h> #include <imx_regs.h>
#include <imx_snvs.h> #include <imx_snvs.h>
......
...@@ -4,7 +4,8 @@ ...@@ -4,7 +4,8 @@
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <mmio.h> #include <lib/mmio.h>
#include <imx_regs.h> #include <imx_regs.h>
#include <imx_wdog.h> #include <imx_wdog.h>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#ifndef IMX8_LPUART_H #ifndef IMX8_LPUART_H
#define IMX8_LPUART_H #define IMX8_LPUART_H
#include <console.h> #include <drivers/console.h>
#define VERID 0x0 #define VERID 0x0
#define PARAM 0x4 #define PARAM 0x4
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
#define IMX_SNVS_H #define IMX_SNVS_H
#include <stdint.h> #include <stdint.h>
#include <arch.h> #include <arch.h>
struct snvs { struct snvs {
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#ifndef IMX_UART_H #ifndef IMX_UART_H
#define IMX_UART_H #define IMX_UART_H
#include <console.h> #include <drivers/console.h>
#ifndef __ASSEMBLY__ #ifndef __ASSEMBLY__
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment