From nobody Mon Oct 18 19:19:20 2021
X-Original-To: dev-commits-src-main@mlmmj.nyi.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1])
	by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id C64FE17F836C;
	Mon, 18 Oct 2021 19:19:21 +0000 (UTC)
	(envelope-from git@FreeBSD.org)
Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256
	 client-signature RSA-PSS (4096 bits) client-digest SHA256)
	(Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK))
	by mx1.freebsd.org (Postfix) with ESMTPS id 4HY6BK13npz4cN3;
	Mon, 18 Oct 2021 19:19:21 +0000 (UTC)
	(envelope-from git@FreeBSD.org)
Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(Client did not present a certificate)
	by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DECDD26028;
	Mon, 18 Oct 2021 19:19:20 +0000 (UTC)
	(envelope-from git@FreeBSD.org)
Received: from gitrepo.freebsd.org ([127.0.1.44])
	by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19IJJKWo080262;
	Mon, 18 Oct 2021 19:19:20 GMT
	(envelope-from git@gitrepo.freebsd.org)
Received: (from git@localhost)
	by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19IJJK9F080261;
	Mon, 18 Oct 2021 19:19:20 GMT
	(envelope-from git)
Date: Mon, 18 Oct 2021 19:19:20 GMT
Message-Id: <202110181919.19IJJK9F080261@gitrepo.freebsd.org>
To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org,
        dev-commits-src-main@FreeBSD.org
From: Adrian Chadd <adrian@FreeBSD.org>
Subject: git: fb7a00772898 - main - arm: add a std.qca for 32 bit armv7 platforms
List-Id: Commit messages for the main branch of the src repository <dev-commits-src-main.freebsd.org>
List-Archive: https://lists.freebsd.org/archives/dev-commits-src-main
List-Help: <mailto:dev-commits-src-main+help@freebsd.org>
List-Post: <mailto:dev-commits-src-main@freebsd.org>
List-Subscribe: <mailto:dev-commits-src-main+subscribe@freebsd.org>
List-Unsubscribe: <mailto:dev-commits-src-main+unsubscribe@freebsd.org>
Sender: owner-dev-commits-src-main@freebsd.org
X-BeenThere: dev-commits-src-main@freebsd.org
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
X-Git-Committer: adrian
X-Git-Repository: src
X-Git-Refname: refs/heads/main
X-Git-Reftype: branch
X-Git-Commit: fb7a00772898a6dce16f790e013cbdc7e8591363
Auto-Submitted: auto-generated
X-ThisMailContainsUnwantedMimeParts: N

The branch main has been updated by adrian:

URL: https://cgit.FreeBSD.org/src/commit/?id=fb7a00772898a6dce16f790e013cbdc7e8591363

commit fb7a00772898a6dce16f790e013cbdc7e8591363
Author:     Adrian Chadd <adrian@FreeBSD.org>
AuthorDate: 2021-10-16 18:48:02 +0000
Commit:     Adrian Chadd <adrian@FreeBSD.org>
CommitDate: 2021-10-18 19:19:03 +0000

    arm: add a std.qca for 32 bit armv7 platforms
    
    This is the minimal config required to boot on the IPQ4018 SoC
    and likely future ones as well in this family.
---
 sys/arm/conf/std.qca | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/sys/arm/conf/std.qca b/sys/arm/conf/std.qca
new file mode 100644
index 000000000000..cabd5f309121
--- /dev/null
+++ b/sys/arm/conf/std.qca
@@ -0,0 +1,28 @@
+#
+# QCA SoC support (32 bit)
+#
+
+machine 	arm     armv7
+cpu 		CPU_CORTEXA
+makeoptions 	CONF_CFLAGS="-march=armv7a"
+
+files 		"../qualcomm/std.ipq4018"
+
+# Serial (COM) ports
+device 		uart
+device 		uart_msm	# Qualcomm MSM UART driver
+
+device 		gic
+
+# MMC/SD/SDIO Card slot support
+device 		mmc
+device 		sdhci
+
+# Timers
+device 		generic_timer
+device 		mpcore_timer
+
+options 	FDT
+
+# Disable CP14 work in DDB as TZ won't let us by default
+options 	ARM_FORCE_DBG_MONITOR_DISABLE