Unverified Commit 9a207532 authored by Antonio Niño Díaz's avatar Antonio Niño Díaz Committed by GitHub
Browse files

Merge pull request #1726 from antonio-nino-diaz-arm/an/includes

Sanitise includes across codebase
parents 3f99f7e4 8e7b27a4
...@@ -5,7 +5,9 @@ ...@@ -5,7 +5,9 @@
*/ */
#include <stdint.h> #include <stdint.h>
#include <debug.h>
#include <common/debug.h>
#include "../qos_common.h" #include "../qos_common.h"
#include "../qos_reg.h" #include "../qos_reg.h"
#include "qos_init_m3_v11.h" #include "qos_init_m3_v11.h"
......
...@@ -5,7 +5,9 @@ ...@@ -5,7 +5,9 @@
*/ */
#include <stdint.h> #include <stdint.h>
#include <debug.h>
#include <common/debug.h>
#include "../qos_common.h" #include "../qos_common.h"
#include "../qos_reg.h" #include "../qos_reg.h"
#include "qos_init_m3n_v10.h" #include "qos_init_m3n_v10.h"
......
...@@ -5,8 +5,10 @@ ...@@ -5,8 +5,10 @@
*/ */
#include <stdint.h> #include <stdint.h>
#include <debug.h>
#include <mmio.h> #include <common/debug.h>
#include <lib/mmio.h>
#include "qos_init.h" #include "qos_init.h"
#include "qos_common.h" #include "qos_common.h"
#if RCAR_LSI == RCAR_AUTO #if RCAR_LSI == RCAR_AUTO
......
...@@ -4,17 +4,18 @@ ...@@ -4,17 +4,18 @@
* SPDX-License-Identifier: BSD-3-Clause * SPDX-License-Identifier: BSD-3-Clause
*/ */
#include <arch.h>
#include <arch_helpers.h>
#include <assert.h> #include <assert.h>
#include <debug.h>
#include <delay_timer.h>
#include <dw_mmc.h>
#include <errno.h> #include <errno.h>
#include <mmc.h>
#include <mmio.h>
#include <string.h> #include <string.h>
#include <arch.h>
#include <arch_helpers.h>
#include <common/debug.h>
#include <drivers/delay_timer.h>
#include <drivers/mmc.h>
#include <drivers/synopsys/dw_mmc.h>
#include <lib/mmio.h>
#define DWMMC_CTRL (0x00) #define DWMMC_CTRL (0x00)
#define CTRL_IDMAC_EN (1 << 25) #define CTRL_IDMAC_EN (1 << 25)
#define CTRL_DMA_EN (1 << 5) #define CTRL_DMA_EN (1 << 5)
......
...@@ -5,12 +5,13 @@ ...@@ -5,12 +5,13 @@
*/ */
#include <assert.h> #include <assert.h>
#include <debug.h>
#include <dw_ufs.h>
#include <mmio.h>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <ufs.h>
#include <common/debug.h>
#include <drivers/dw_ufs.h>
#include <drivers/ufs.h>
#include <lib/mmio.h>
static int dwufs_phy_init(ufs_params_t *params) static int dwufs_phy_init(ufs_params_t *params)
{ {
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
#include <assert_macros.S> #include <assert_macros.S>
#define USE_FINISH_CONSOLE_REG_2 #define USE_FINISH_CONSOLE_REG_2
#include <console_macros.S> #include <console_macros.S>
#include <uart_16550.h> #include <drivers/ti/uart/uart_16550.h>
/* /*
* "core" functions are low-level implementations that don't require * "core" functions are low-level implementations that don't require
......
...@@ -4,17 +4,19 @@ ...@@ -4,17 +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 <debug.h>
#include <delay_timer.h>
#include <endian.h> #include <endian.h>
#include <errno.h> #include <errno.h>
#include <mmio.h>
#include <platform_def.h>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <ufs.h>
#include <platform_def.h>
#include <arch_helpers.h>
#include <common/debug.h>
#include <drivers/delay_timer.h>
#include <drivers/ufs.h>
#include <lib/mmio.h>
#define CDB_ADDR_MASK 127 #define CDB_ADDR_MASK 127
#define ALIGN_CDB(x) (((x) + CDB_ADDR_MASK) & ~CDB_ADDR_MASK) #define ALIGN_CDB(x) (((x) + CDB_ADDR_MASK) & ~CDB_ADDR_MASK)
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#ifndef ARCH_H #ifndef ARCH_H
#define ARCH_H #define ARCH_H
#include <utils_def.h> #include <lib/utils_def.h>
/******************************************************************************* /*******************************************************************************
* MIDR bit definitions * MIDR bit definitions
......
...@@ -7,11 +7,12 @@ ...@@ -7,11 +7,12 @@
#ifndef ARCH_HELPERS_H #ifndef ARCH_HELPERS_H
#define ARCH_HELPERS_H #define ARCH_HELPERS_H
#include <arch.h>
#include <cdefs.h> #include <cdefs.h>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <arch.h>
/********************************************************************** /**********************************************************************
* Macros which create inline functions to read or write CPU system * Macros which create inline functions to read or write CPU system
* registers * registers
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
#define ASM_MACROS_S #define ASM_MACROS_S
#include <arch.h> #include <arch.h>
#include <asm_macros_common.S> #include <common/asm_macros_common.S>
#include <spinlock.h> #include <lib/spinlock.h>
/* /*
* TLBI instruction with type specifier that implements the workaround for * TLBI instruction with type specifier that implements the workaround for
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#ifndef CONSOLE_MACROS_S #ifndef CONSOLE_MACROS_S
#define CONSOLE_MACROS_S #define CONSOLE_MACROS_S
#include <console.h> #include <drivers/console.h>
/* /*
* This macro encapsulates the common setup that has to be done at the end of * This macro encapsulates the common setup that has to be done at the end of
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#ifndef SMCCC_HELPERS_H #ifndef SMCCC_HELPERS_H
#define SMCCC_HELPERS_H #define SMCCC_HELPERS_H
#include <smccc.h> #include <lib/smccc.h>
/* These are offsets to registers in smc_ctx_t */ /* These are offsets to registers in smc_ctx_t */
#define SMC_CTX_GPREG_R0 U(0x0) #define SMC_CTX_GPREG_R0 U(0x0)
...@@ -25,9 +25,11 @@ ...@@ -25,9 +25,11 @@
#define SMC_CTX_SIZE U(0x90) #define SMC_CTX_SIZE U(0x90)
#ifndef __ASSEMBLY__ #ifndef __ASSEMBLY__
#include <cassert.h>
#include <stdint.h> #include <stdint.h>
#include <lib/cassert.h>
/* /*
* The generic structure to save arguments and callee saved registers during * The generic structure to save arguments and callee saved registers during
* an SMC. Also this structure is used to store the result return values after * an SMC. Also this structure is used to store the result return values after
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
#ifndef ARCH_H #ifndef ARCH_H
#define ARCH_H #define ARCH_H
#include <utils_def.h> #include <lib/utils_def.h>
/******************************************************************************* /*******************************************************************************
* MIDR bit definitions * MIDR bit definitions
......
...@@ -7,12 +7,13 @@ ...@@ -7,12 +7,13 @@
#ifndef ARCH_HELPERS_H #ifndef ARCH_HELPERS_H
#define ARCH_HELPERS_H #define ARCH_HELPERS_H
#include <arch.h>
#include <cdefs.h> #include <cdefs.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <arch.h>
/********************************************************************** /**********************************************************************
* Macros which create inline functions to read or write CPU system * Macros which create inline functions to read or write CPU system
* registers * registers
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
#define ASM_MACROS_S #define ASM_MACROS_S
#include <arch.h> #include <arch.h>
#include <asm_macros_common.S> #include <common/asm_macros_common.S>
#include <spinlock.h> #include <lib/spinlock.h>
/* /*
* TLBI instruction with type specifier that implements the workaround for * TLBI instruction with type specifier that implements the workaround for
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#ifndef CONSOLE_MACROS_S #ifndef CONSOLE_MACROS_S
#define CONSOLE_MACROS_S #define CONSOLE_MACROS_S
#include <console.h> #include <drivers/console.h>
/* /*
* This macro encapsulates the common setup that has to be done at the end of * This macro encapsulates the common setup that has to be done at the end of
......
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