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)
committerMarek Vasut <marex@denx.de>
Sun, 23 Aug 2015 09:56:19 +0000 (11:56 +0200)
commitf089240128329fe6a49a5272aef732b47613c2f5
tree40fb3564ff53efcf82d58774547db091e9f4aa6f
parentcd9b73177100598e7be0a9033a4a2ed4a7d24fbb
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>
40 files changed:
arch/arm/mach-socfpga/Kconfig
board/altera/arria5-socdk/MAINTAINERS [new file with mode: 0644]
board/altera/arria5-socdk/Makefile [new file with mode: 0644]
board/altera/arria5-socdk/qts/iocsr_config.c [new file with mode: 0644]
board/altera/arria5-socdk/qts/iocsr_config.h [new file with mode: 0644]
board/altera/arria5-socdk/qts/pinmux_config.c [new file with mode: 0644]
board/altera/arria5-socdk/qts/pinmux_config.h [new file with mode: 0644]
board/altera/arria5-socdk/qts/pll_config.h [new file with mode: 0644]
board/altera/arria5-socdk/qts/sdram_config.h [new file with mode: 0644]
board/altera/arria5-socdk/qts/sequencer_auto.h [new file with mode: 0644]
board/altera/arria5-socdk/qts/sequencer_auto_ac_init.h [new file with mode: 0644]
board/altera/arria5-socdk/qts/sequencer_auto_inst_init.h [new file with mode: 0644]
board/altera/arria5-socdk/qts/sequencer_defines.h [new file with mode: 0644]
board/altera/arria5-socdk/socfpga.c [new file with mode: 0644]
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]
board/altera/socfpga/MAINTAINERS [deleted file]
board/altera/socfpga/Makefile [deleted file]
board/altera/socfpga/qts/iocsr_config.c [deleted file]
board/altera/socfpga/qts/iocsr_config.h [deleted file]
board/altera/socfpga/qts/pinmux_config.c [deleted file]
board/altera/socfpga/qts/pinmux_config.h [deleted file]
board/altera/socfpga/qts/pll_config.h [deleted file]
board/altera/socfpga/qts/sdram_config.h [deleted file]
board/altera/socfpga/qts/sequencer_auto.h [deleted file]
board/altera/socfpga/qts/sequencer_auto_ac_init.h [deleted file]
board/altera/socfpga/qts/sequencer_auto_inst_init.h [deleted file]
board/altera/socfpga/qts/sequencer_defines.h [deleted file]
board/altera/socfpga/socfpga.c [deleted file]