diff options
author | Marek Vasut <marex@denx.de> | 2015-07-25 08:22:21 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-08-08 14:14:04 +0200 |
commit | 9617ceb9cfc1eeb3ca0d962b53d2d87506cc23ca (patch) | |
tree | 21c951b39b254a3d77bc2f0be5d9bb9b81aca240 | |
parent | 2e8fcc7e41cc5fea7fa399e5e35fc261fa67b13b (diff) | |
download | u-boot-9617ceb9cfc1eeb3ca0d962b53d2d87506cc23ca.zip u-boot-9617ceb9cfc1eeb3ca0d962b53d2d87506cc23ca.tar.gz u-boot-9617ceb9cfc1eeb3ca0d962b53d2d87506cc23ca.tar.bz2 |
arm: socfpga: Move generated files into qts subdir
Move all the files generated by Quartus into the qts/ subdir of the
board/altera/socfpga dir to make them explicitly separate from the
generic U-Boot code.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
-rw-r--r-- | board/altera/socfpga/Makefile | 2 | ||||
-rw-r--r-- | board/altera/socfpga/qts/Makefile | 7 | ||||
-rw-r--r-- | board/altera/socfpga/qts/iocsr_config.c (renamed from board/altera/socfpga/iocsr_config.c) | 0 | ||||
-rw-r--r-- | board/altera/socfpga/qts/iocsr_config.h (renamed from board/altera/socfpga/iocsr_config.h) | 0 | ||||
-rw-r--r-- | board/altera/socfpga/qts/pinmux_config.c (renamed from board/altera/socfpga/pinmux_config.c) | 0 | ||||
-rw-r--r-- | board/altera/socfpga/qts/pinmux_config.h (renamed from board/altera/socfpga/pinmux_config.h) | 0 | ||||
-rw-r--r-- | board/altera/socfpga/qts/pll_config.h (renamed from board/altera/socfpga/pll_config.h) | 0 | ||||
-rw-r--r-- | include/configs/socfpga_arria5.h | 6 | ||||
-rw-r--r-- | include/configs/socfpga_cyclone5.h | 6 |
9 files changed, 14 insertions, 7 deletions
diff --git a/board/altera/socfpga/Makefile b/board/altera/socfpga/Makefile index c867f73..d960394 100644 --- a/board/altera/socfpga/Makefile +++ b/board/altera/socfpga/Makefile @@ -7,4 +7,4 @@ # obj-y := socfpga.o -obj-$(CONFIG_SPL_BUILD) += pinmux_config.o iocsr_config.o +obj-$(CONFIG_SPL_BUILD) += qts/ diff --git a/board/altera/socfpga/qts/Makefile b/board/altera/socfpga/qts/Makefile new file mode 100644 index 0000000..dbcedd8 --- /dev/null +++ b/board/altera/socfpga/qts/Makefile @@ -0,0 +1,7 @@ +# +# (C) Copyright 2015 Marek Vasut <marex@denx.de> +# +# SPDX-License-Identifier: GPL-2.0+ +# + +obj-y += pinmux_config.o iocsr_config.o diff --git a/board/altera/socfpga/iocsr_config.c b/board/altera/socfpga/qts/iocsr_config.c index 3b202b5..3b202b5 100644 --- a/board/altera/socfpga/iocsr_config.c +++ b/board/altera/socfpga/qts/iocsr_config.c diff --git a/board/altera/socfpga/iocsr_config.h b/board/altera/socfpga/qts/iocsr_config.h index d1c9b0d..d1c9b0d 100644 --- a/board/altera/socfpga/iocsr_config.h +++ b/board/altera/socfpga/qts/iocsr_config.h diff --git a/board/altera/socfpga/pinmux_config.c b/board/altera/socfpga/qts/pinmux_config.c index 7e7a184..7e7a184 100644 --- a/board/altera/socfpga/pinmux_config.c +++ b/board/altera/socfpga/qts/pinmux_config.c diff --git a/board/altera/socfpga/pinmux_config.h b/board/altera/socfpga/qts/pinmux_config.h index 21fabb0..21fabb0 100644 --- a/board/altera/socfpga/pinmux_config.h +++ b/board/altera/socfpga/qts/pinmux_config.h diff --git a/board/altera/socfpga/pll_config.h b/board/altera/socfpga/qts/pll_config.h index 7cd25df..7cd25df 100644 --- a/board/altera/socfpga/pll_config.h +++ b/board/altera/socfpga/qts/pll_config.h diff --git a/include/configs/socfpga_arria5.h b/include/configs/socfpga_arria5.h index 7aee1ce..e3c66b4 100644 --- a/include/configs/socfpga_arria5.h +++ b/include/configs/socfpga_arria5.h @@ -7,9 +7,9 @@ #define __CONFIG_SOCFPGA_ARRIA5_H__ #include <asm/arch/socfpga_base_addrs.h> -#include "../../board/altera/socfpga/pinmux_config.h" -#include "../../board/altera/socfpga/iocsr_config.h" -#include "../../board/altera/socfpga/pll_config.h" +#include "../../board/altera/socfpga/qts/pinmux_config.h" +#include "../../board/altera/socfpga/qts/iocsr_config.h" +#include "../../board/altera/socfpga/qts/pll_config.h" /* U-Boot Commands */ #define CONFIG_SYS_NO_FLASH diff --git a/include/configs/socfpga_cyclone5.h b/include/configs/socfpga_cyclone5.h index 33d04fd..a5565a7 100644 --- a/include/configs/socfpga_cyclone5.h +++ b/include/configs/socfpga_cyclone5.h @@ -7,9 +7,9 @@ #define __CONFIG_SOCFPGA_CYCLONE5_H__ #include <asm/arch/socfpga_base_addrs.h> -#include "../../board/altera/socfpga/pinmux_config.h" -#include "../../board/altera/socfpga/iocsr_config.h" -#include "../../board/altera/socfpga/pll_config.h" +#include "../../board/altera/socfpga/qts/pinmux_config.h" +#include "../../board/altera/socfpga/qts/iocsr_config.h" +#include "../../board/altera/socfpga/qts/pll_config.h" /* U-Boot Commands */ #define CONFIG_SYS_NO_FLASH |