]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
arm: socfpga: Split Altera socfpga into AV and CV SoCDK
authorMarek Vasut <marex@denx.de>
Mon, 10 Aug 2015 19:24:53 +0000 (21:24 +0200)
committerLothar Waßmann <LW@KARO-electronics.de>
Thu, 10 Sep 2015 08:32:51 +0000 (10:32 +0200)
commit485eab6eff59709a028663a69b8403229a8bcc67
tree1051c5634778fc773388528fb1bac5e086998a71
parentd0e5124a9e6fb9a7f1bae681b59cf649a7f81c44
arm: socfpga: Split Altera socfpga into AV and CV SoCDK

The board/altera/socfpga directory is not a generic SoCFPGA machine
anymore, but instead it represents the Altera SoCDK board. To make
matters more complicated, it represents both CycloneV and ArriaV
variant.

On the other hand, nowadays, the content of this board directory is
mostly comprised of QTS-generated header files, while all the generic
code is in arch/arm/mach-socfpga already.

Thus, this patch splits the board/altera/socfpga into a separate
board directory for ArriaV SoCDK and CycloneV SoCDK, so that each
can be populated with the correct QTS-generated header files for
that particular board.

Signed-off-by: Marek Vasut <marex@denx.de>
27 files changed:
arch/arm/mach-socfpga/Kconfig
board/altera/arria5-socdk/MAINTAINERS [moved from board/altera/socfpga/MAINTAINERS with 100% similarity]
board/altera/arria5-socdk/Makefile [moved from board/altera/socfpga/Makefile with 100% similarity]
board/altera/arria5-socdk/qts/iocsr_config.c [moved from board/altera/socfpga/qts/iocsr_config.c with 100% similarity]
board/altera/arria5-socdk/qts/iocsr_config.h [moved from board/altera/socfpga/qts/iocsr_config.h with 100% similarity]
board/altera/arria5-socdk/qts/pinmux_config.c [moved from board/altera/socfpga/qts/pinmux_config.c with 100% similarity]
board/altera/arria5-socdk/qts/pinmux_config.h [moved from board/altera/socfpga/qts/pinmux_config.h with 100% similarity]
board/altera/arria5-socdk/qts/pll_config.h [moved from board/altera/socfpga/qts/pll_config.h with 100% similarity]
board/altera/arria5-socdk/qts/sdram_config.h [moved from board/altera/socfpga/qts/sdram_config.h with 100% similarity]
board/altera/arria5-socdk/qts/sequencer_auto.h [moved from board/altera/socfpga/qts/sequencer_auto.h with 100% similarity]
board/altera/arria5-socdk/qts/sequencer_auto_ac_init.h [moved from board/altera/socfpga/qts/sequencer_auto_ac_init.h with 100% similarity]
board/altera/arria5-socdk/qts/sequencer_auto_inst_init.h [moved from board/altera/socfpga/qts/sequencer_auto_inst_init.h with 100% similarity]
board/altera/arria5-socdk/qts/sequencer_defines.h [moved from board/altera/socfpga/qts/sequencer_defines.h with 100% similarity]
board/altera/arria5-socdk/socfpga.c [moved from board/altera/socfpga/socfpga.c with 100% similarity]
board/altera/cyclone5-socdk/MAINTAINERS [new file with mode: 0644]
board/altera/cyclone5-socdk/Makefile [new file with mode: 0644]
board/altera/cyclone5-socdk/qts/iocsr_config.c [new file with mode: 0644]
board/altera/cyclone5-socdk/qts/iocsr_config.h [new file with mode: 0644]
board/altera/cyclone5-socdk/qts/pinmux_config.c [new file with mode: 0644]
board/altera/cyclone5-socdk/qts/pinmux_config.h [new file with mode: 0644]
board/altera/cyclone5-socdk/qts/pll_config.h [new file with mode: 0644]
board/altera/cyclone5-socdk/qts/sdram_config.h [new file with mode: 0644]
board/altera/cyclone5-socdk/qts/sequencer_auto.h [new file with mode: 0644]
board/altera/cyclone5-socdk/qts/sequencer_auto_ac_init.h [new file with mode: 0644]
board/altera/cyclone5-socdk/qts/sequencer_auto_inst_init.h [new file with mode: 0644]
board/altera/cyclone5-socdk/qts/sequencer_defines.h [new file with mode: 0644]
board/altera/cyclone5-socdk/socfpga.c [new file with mode: 0644]