All of lore.kernel.org
 help / color / mirror / Atom feed
From: Zhenhua Luo <zhenhua.luo@nxp.com>
To: <meta-freescale@yoctoproject.org>
Subject: [meta-freescale-layer master][PATCH v2 18/20] ls1046ardb: add machine conf
Date: Tue, 20 Dec 2016 20:19:05 +0800	[thread overview]
Message-ID: <1482236347-5904-19-git-send-email-zhenhua.luo@nxp.com> (raw)
In-Reply-To: <1482236347-5904-1-git-send-email-zhenhua.luo@nxp.com>

Support the NXP aarch64 based ls1046a reference design board.

Signed-off-by: Ting Liu <ting.liu@nxp.com>
Signed-off-by: Zhenhua Luo <zhenhua.luo@nxp.com>
---
 conf/machine/ls1046ardb.conf | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)
 create mode 100644 conf/machine/ls1046ardb.conf

diff --git a/conf/machine/ls1046ardb.conf b/conf/machine/ls1046ardb.conf
new file mode 100644
index 0000000..553950c
--- /dev/null
+++ b/conf/machine/ls1046ardb.conf
@@ -0,0 +1,27 @@
+#@TYPE: Machine
+#@NAME: NXP LS1046ARDB
+#@SOC: LSCH2
+#@DESCRIPTION: Machine configuration for running LS1046A in 64-bit mode
+#@MAINTAINER: Zhenhua Luo <zhenhua.luo@nxp.com>
+
+MACHINEOVERRIDES =. "fsl-lsch2:ls1046a:"
+
+require conf/machine/include/qoriq-arm64.inc
+require conf/machine/include/arm/arch-arm64.inc
+
+UBOOT_CONFIG ??= "sdcard qspi-secure-boot qspi"
+UBOOT_CONFIG[sdcard] = "ls1046ardb_sdcard_config,,u-boot-with-spl-pbl.bin"
+UBOOT_CONFIG[qspi] = "ls1046ardb_qspi_config,,u-boot-dtb.bin"
+UBOOT_CONFIG[qspi-secure-boot] = "ls1046ardb_qspi_SECURE_BOOT_config,,u-boot-dtb.bin"
+
+KERNEL_DEVICETREE ?= "\
+    freescale/fsl-ls1046a-rdb.dtb \
+    freescale/fsl-ls1046a-rdb-usdpaa.dtb \
+"
+KERNEL_DEFCONFIG ?= "${S}/arch/arm64/configs/defconfig"
+
+SERIAL_CONSOLES ?= "115200;ttyS0 115200;ttyAMA0 115200;ttyLP0"
+SERIAL_CONSOLES_CHECK ?= "${SERIAL_CONSOLES}"
+
+EXTRA_IMAGEDEPENDS += "fm-ucode rcw ppa"
+USE_VT = "0"
-- 
2.7.4



  parent reply	other threads:[~2016-12-20 12:19 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-20 12:18 [meta-freescale-layer master][PATCH v2 00/20] Update of QorIQ SDK 2.0 GA-1611 release Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 01/20] linux-qoriq: upgrade to SDK 2.0 GA1611 release Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 02/20] fmc: upgrade to SDK 2.0 GA-1611 release Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 03/20] fmlib: " Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 04/20] fm-ucode: support ls1046ardb boards Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 05/20] eth-config: upgrade to SDK 2.0 GA-1611 release Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 06/20] usdpaa: " Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 07/20] usdpaa-apps: " Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 08/20] dpa-offload: " Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 09/20] ppa: migrate to generic ppa tree Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 10/20] u-boot: upgrade to 2016.09 Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 11/20] rcw: upgrade to SDK 2.0 GA-1611 release Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 12/20] ceetm: support ls1046a targets Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 13/20] kernel-module-ar: set CLEANBROKEN to 1 Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 14/20] cst: upgrade to SDK 2.0 GA-1611 release Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 15/20] qemu-qoriq: support 32b build for arm64 platforms Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 16/20] change-file-endianess: update byte_swap script to support ls1046 Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 17/20] ls1043ardb-32b: add machine conf file Zhenhua Luo
2016-12-20 12:19 ` Zhenhua Luo [this message]
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 19/20] ls1046ardb-32b: add machine conf Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 20/20] ls1043ardb.conf: add fsl-lsch2 in MACHINEOVERRIDES Zhenhua Luo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1482236347-5904-19-git-send-email-zhenhua.luo@nxp.com \
    --to=zhenhua.luo@nxp.com \
    --cc=meta-freescale@yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.