Re: [U-Boot] [PATCH v4 03/28] arm: socfpga: arria10: add board files for the Arria10 SoCDK

2017-01-22 Thread Marek Vasut
On 01/10/2017 06:20 AM, Chee Tien Fong wrote:
> From: Tien Fong Chee 
> 
> Add minimal support for the Arria10 SoCDK.
> 
> Signed-off-by: Dinh Nguyen 
> Signed-off-by: Tien Fong Chee 
> Cc: Marek Vasut 
> Cc: Dinh Nguyen 
> Cc: Chin Liang See 
> Cc: Tien Fong 
> ---
>  board/altera/arria10-socdk/Kconfig   | 18 ++
>  board/altera/arria10-socdk/Makefile  |  7 +++
>  board/altera/arria10-socdk/socfpga.c | 24 
>  3 files changed, 49 insertions(+)
>  create mode 100644 board/altera/arria10-socdk/Kconfig
>  create mode 100644 board/altera/arria10-socdk/Makefile
>  create mode 100644 board/altera/arria10-socdk/socfpga.c
> 
> diff --git a/board/altera/arria10-socdk/Kconfig 
> b/board/altera/arria10-socdk/Kconfig
> new file mode 100644
> index 000..b80cc6d
> --- /dev/null
> +++ b/board/altera/arria10-socdk/Kconfig
> @@ -0,0 +1,18 @@
> +if TARGET_SOCFPGA_ARRIA10
> +
> +config SYS_CPU
> + default "armv7"
> +
> +config SYS_BOARD
> + default "socfpga_arria10"
> +
> +config SYS_VENDOR
> + default "altera"
> +
> +config SYS_SOC
> + default "socfpga_arria10"
> +
> +config SYS_CONFIG_NAME
> + default "socfpga_arria10"
> +
> +endif
> diff --git a/board/altera/arria10-socdk/Makefile 
> b/board/altera/arria10-socdk/Makefile
> new file mode 100644
> index 000..1d885ce
> --- /dev/null
> +++ b/board/altera/arria10-socdk/Makefile
> @@ -0,0 +1,7 @@
> +#
> +# Copyright (C) 2015 Altera Corporation 
> +#
> +# SPDX-License-Identifier:   GPL-2.0
> +#
> +
> +obj-y:= socfpga.o
> diff --git a/board/altera/arria10-socdk/socfpga.c 
> b/board/altera/arria10-socdk/socfpga.c
> new file mode 100644
> index 000..abedc22
> --- /dev/null
> +++ b/board/altera/arria10-socdk/socfpga.c
> @@ -0,0 +1,24 @@
> +/*
> + * Copyright (C) 2015 Altera Corporation 
> + *
> + * SPDX-License-Identifier:  GPL-2.0
> + */
> +
> +#include 
> +#include 
> +
> +DECLARE_GLOBAL_DATA_PTR;
> +
> +void s_init(void)
> +{
> +}
> +
> +/*
> + * Miscellaneous platform dependent initialisations
> + */
> +int board_init(void)
> +{
> + /* Address of boot parameters for ATAG (if ATAG is used) */
> + gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;

This stuff should already be done by arch/arm/mach-socfpga/board.c ,
you can drop most of this patch (Kconfig, this file can be empty).

> + return 0;
> +}
> 


-- 
Best regards,
Marek Vasut
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH v4 03/28] arm: socfpga: arria10: add board files for the Arria10 SoCDK

2017-01-09 Thread Chee Tien Fong
From: Tien Fong Chee 

Add minimal support for the Arria10 SoCDK.

Signed-off-by: Dinh Nguyen 
Signed-off-by: Tien Fong Chee 
Cc: Marek Vasut 
Cc: Dinh Nguyen 
Cc: Chin Liang See 
Cc: Tien Fong 
---
 board/altera/arria10-socdk/Kconfig   | 18 ++
 board/altera/arria10-socdk/Makefile  |  7 +++
 board/altera/arria10-socdk/socfpga.c | 24 
 3 files changed, 49 insertions(+)
 create mode 100644 board/altera/arria10-socdk/Kconfig
 create mode 100644 board/altera/arria10-socdk/Makefile
 create mode 100644 board/altera/arria10-socdk/socfpga.c

diff --git a/board/altera/arria10-socdk/Kconfig 
b/board/altera/arria10-socdk/Kconfig
new file mode 100644
index 000..b80cc6d
--- /dev/null
+++ b/board/altera/arria10-socdk/Kconfig
@@ -0,0 +1,18 @@
+if TARGET_SOCFPGA_ARRIA10
+
+config SYS_CPU
+   default "armv7"
+
+config SYS_BOARD
+   default "socfpga_arria10"
+
+config SYS_VENDOR
+   default "altera"
+
+config SYS_SOC
+   default "socfpga_arria10"
+
+config SYS_CONFIG_NAME
+   default "socfpga_arria10"
+
+endif
diff --git a/board/altera/arria10-socdk/Makefile 
b/board/altera/arria10-socdk/Makefile
new file mode 100644
index 000..1d885ce
--- /dev/null
+++ b/board/altera/arria10-socdk/Makefile
@@ -0,0 +1,7 @@
+#
+# Copyright (C) 2015 Altera Corporation 
+#
+# SPDX-License-Identifier: GPL-2.0
+#
+
+obj-y  := socfpga.o
diff --git a/board/altera/arria10-socdk/socfpga.c 
b/board/altera/arria10-socdk/socfpga.c
new file mode 100644
index 000..abedc22
--- /dev/null
+++ b/board/altera/arria10-socdk/socfpga.c
@@ -0,0 +1,24 @@
+/*
+ * Copyright (C) 2015 Altera Corporation 
+ *
+ * SPDX-License-Identifier:GPL-2.0
+ */
+
+#include 
+#include 
+
+DECLARE_GLOBAL_DATA_PTR;
+
+void s_init(void)
+{
+}
+
+/*
+ * Miscellaneous platform dependent initialisations
+ */
+int board_init(void)
+{
+   /* Address of boot parameters for ATAG (if ATAG is used) */
+   gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
+   return 0;
+}
-- 
2.2.0

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot