[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH V2 0/2] xen/arm: add i.MX lpuart and i.MX8QM initial support
- To: sstabellini@xxxxxxxxxx, julien@xxxxxxx, Volodymyr_Babchuk@xxxxxxxx, bertrand.marquis@xxxxxxx
- From: "Peng Fan (OSS)" <peng.fan@xxxxxxxxxxx>
- Date: Sat, 2 Apr 2022 13:42:21 +0800
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=oss.nxp.com; dmarc=pass action=none header.from=oss.nxp.com; dkim=pass header.d=oss.nxp.com; arc=none
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=t4sphDOEHNfNIqaIxfIem1SDkzqyrrnlsDDHgWUZYA4=; b=LcygTlZyMkvtGVHXQXWx2yIkSHCxgVEE/7RFdcYrxdPJybPGeyNQFq0pi741NJ0NUrpVXMdKEP0uRE7pQFYkVJSGe3n3DaPwR+6WNwCyOwHZUEtmGRPGcw3MXTqVKwYEFXXE07CqMsLuyVNK+oOblS8kMAVS5xJXb0fzICCQRVgypdpTwY/4JyP65CVJ9EAbwy92rQji4e38CHq12BYQrfLWiXyEvha7HyvwwTYhk9vMCaOUmhblOf8itMoTTl5pohA0lx5AMmrdhU6vzVWHD04gA3cUXSWLiVJ6NulPbcxZSlx38JbWjBWWYNybz+lHmVWYgfPZi5WnIjilGhSM4Q==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=aBZ2+gimV/Ia5ZdFaaje5vc3O/k9rXlh/5guzwvdfRnJGCLdfb66q4bl720QAn4UDRrHfuUjayontJjEAR5KF4LImQQZHaYdsikcyLrfB07uXfegm4jY6o1r3Us5UGsALCpzohjObtyff4fc76tOTw4IEhOGIhMBh4W1+8lfcE4bexbLHAThM9vCEwMxjSQTUlWrME6itLYale4+7cXiQnSmjh69c9eBeeh57/gEhOi+w6Hth+vpi9eQiyjeZiLnkDykv8XEFUYICX6SpyOth/FhAH+QJQmdnBgPPOkPlHVS/qfH0nGoPYGdOTIBytlzoFjAz5uGSvtvYoN1ea6T3Q==
- Authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=oss.nxp.com;
- Cc: andrew.cooper3@xxxxxxxxxx, george.dunlap@xxxxxxxxxx, jbeulich@xxxxxxxx, wl@xxxxxxx, xen-devel@xxxxxxxxxxxxxxxxxxxx, van.freenix@xxxxxxxxx, Peng Fan <peng.fan@xxxxxxx>
- Delivery-date: Sat, 02 Apr 2022 05:01:55 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
From: Peng Fan <peng.fan@xxxxxxx>
V2:
Per Julien's comments, fix coding style issue, drop unneeded code
Add i.MX lpuart driver and i.MX8QM platform support.
- lpuart is the uart IP used in i.MX8QM/QXP/93.
- Very basic i.MX8QM platform support.
Peng Fan (2):
xen/arm: Add i.MX lpuart driver
xen/arm: Add i.MX lpuart early printk support
xen/arch/arm/Kconfig.debug | 14 ++
xen/arch/arm/arm64/debug-imx-lpuart.inc | 52 +++++
xen/drivers/char/Kconfig | 8 +
xen/drivers/char/Makefile | 1 +
xen/drivers/char/imx-lpuart.c | 275 ++++++++++++++++++++++++
xen/include/xen/imx-lpuart.h | 64 ++++++
6 files changed, 414 insertions(+)
create mode 100644 xen/arch/arm/arm64/debug-imx-lpuart.inc
create mode 100644 xen/drivers/char/imx-lpuart.c
create mode 100644 xen/include/xen/imx-lpuart.h
--
2.35.1
|