From c115a0d4e79d773f38d62eda3fbf67e3aa9b73b0 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Tue, 30 Dec 2014 18:16:08 +0100 Subject: arm: socfpga: Add Altera Arria V DK support Add support for the Altera Arria V development kit. Signed-off-by: Marek Vasut Cc: Chin Liang See Cc: Dinh Nguyen Cc: Pavel Machek Cc: Stefan Roese Cc: Vince Bridgers --- configs/socfpga_arria5_defconfig | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 configs/socfpga_arria5_defconfig (limited to 'configs') diff --git a/configs/socfpga_arria5_defconfig b/configs/socfpga_arria5_defconfig new file mode 100644 index 0000000000..f290042c76 --- /dev/null +++ b/configs/socfpga_arria5_defconfig @@ -0,0 +1,3 @@ +CONFIG_SPL=y ++S:CONFIG_ARM=y ++S:CONFIG_TARGET_SOCFPGA_ARRIA5=y -- cgit v1.2.3 From da63df7c24bfb53519a011577dab6594fbffa75b Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Tue, 30 Dec 2014 21:05:53 +0100 Subject: dt: socfpga: Import and enable Cyclone V DK DTS Import DTS for Cyclone V development kit and enable support for DT. The DT is imported from Linux 3.19-rc1 as of commit 97bf6af1f928216fd6c5a66e8a57bfa95a659672 . Signed-off-by: Marek Vasut Cc: Chin Liang See Cc: Dinh Nguyen Acked-by: Pavel Machek Reviewed-by: Stefan Roese Cc: Vince Bridgers --- configs/socfpga_cyclone5_defconfig | 2 ++ 1 file changed, 2 insertions(+) (limited to 'configs') diff --git a/configs/socfpga_cyclone5_defconfig b/configs/socfpga_cyclone5_defconfig index 4b2ede490b..2d3dd47526 100644 --- a/configs/socfpga_cyclone5_defconfig +++ b/configs/socfpga_cyclone5_defconfig @@ -1,3 +1,5 @@ CONFIG_SPL=y +S:CONFIG_ARM=y +S:CONFIG_TARGET_SOCFPGA_CYCLONE5=y +CONFIG_OF_CONTROL=y +CONFIG_DEFAULT_DEVICE_TREE="socfpga_cyclone5_socdk" -- cgit v1.2.3 From bb333031d642bffbefbeddc6591c3cab62705129 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Tue, 30 Dec 2014 21:08:57 +0100 Subject: dt: socfpga: Import and enable Arria V DK DTS Import DTS for Arria V development kit and enable support for DT. The DT is imported from Linux 3.19-rc1 as of commit 97bf6af1f928216fd6c5a66e8a57bfa95a659672 . Signed-off-by: Marek Vasut Cc: Chin Liang See Cc: Dinh Nguyen Acked-by: Pavel Machek Reviewed-by: Stefan Roese Cc: Vince Bridgers --- configs/socfpga_arria5_defconfig | 2 ++ 1 file changed, 2 insertions(+) (limited to 'configs') diff --git a/configs/socfpga_arria5_defconfig b/configs/socfpga_arria5_defconfig index f290042c76..f152e9de5c 100644 --- a/configs/socfpga_arria5_defconfig +++ b/configs/socfpga_arria5_defconfig @@ -1,3 +1,5 @@ CONFIG_SPL=y +S:CONFIG_ARM=y +S:CONFIG_TARGET_SOCFPGA_ARRIA5=y +CONFIG_OF_CONTROL=y +CONFIG_DEFAULT_DEVICE_TREE="socfpga_arria5_socdk" -- cgit v1.2.3 From 053ae0a363276324aebbbdb1c2056a9380209f4b Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Wed, 18 Feb 2015 22:33:46 +0100 Subject: arm: socfpga: Enable DM and DM_SPI Enable DM and DM_SPI support for both Cyclone 5 and Arria 5 boards, since they use drivers which require those. Signed-off-by: Marek Vasut Cc: Chin Liang See Cc: Dinh Nguyen Acked-by: Pavel Machek Acked-by: Simon Glass Acked-by: Stefan Roese Cc: Tom Rini Cc: Vince Bridgers --- configs/socfpga_arria5_defconfig | 3 +++ configs/socfpga_cyclone5_defconfig | 3 +++ 2 files changed, 6 insertions(+) (limited to 'configs') diff --git a/configs/socfpga_arria5_defconfig b/configs/socfpga_arria5_defconfig index f152e9de5c..ed46adf1f5 100644 --- a/configs/socfpga_arria5_defconfig +++ b/configs/socfpga_arria5_defconfig @@ -3,3 +3,6 @@ CONFIG_SPL=y +S:CONFIG_TARGET_SOCFPGA_ARRIA5=y CONFIG_OF_CONTROL=y CONFIG_DEFAULT_DEVICE_TREE="socfpga_arria5_socdk" +CONFIG_DM=y +CONFIG_DM_SPI=y +CONFIG_DM_SPI_FLASH=y diff --git a/configs/socfpga_cyclone5_defconfig b/configs/socfpga_cyclone5_defconfig index 2d3dd47526..6743f4d490 100644 --- a/configs/socfpga_cyclone5_defconfig +++ b/configs/socfpga_cyclone5_defconfig @@ -3,3 +3,6 @@ CONFIG_SPL=y +S:CONFIG_TARGET_SOCFPGA_CYCLONE5=y CONFIG_OF_CONTROL=y CONFIG_DEFAULT_DEVICE_TREE="socfpga_cyclone5_socdk" +CONFIG_DM=y +CONFIG_DM_SPI=y +CONFIG_DM_SPI_FLASH=y -- cgit v1.2.3