Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3A8F7C6379F for ; Fri, 3 Feb 2023 16:56:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233488AbjBCQ4c (ORCPT ); Fri, 3 Feb 2023 11:56:32 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46010 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232479AbjBCQ43 (ORCPT ); Fri, 3 Feb 2023 11:56:29 -0500 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.154.123]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3EC064FADE; Fri, 3 Feb 2023 08:56:19 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1675443379; x=1706979379; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=xWwEliwH3/2TbdcPq4FPWGC/tiCdnGbtpLGpXFn3YDc=; b=E9CGWVVE3nXW51I9GvJnFqU6NZLAX+r2aiICUw859C1PoDt+Pf3Q4ftK 3Ow6p/KMbsX6NpVJLJ3fu1wMeHYl2OulPwDoGmwWfjLm6CtpC1KwNzrFE 6hEZgVFAC5WdgIiDJYNCzGJwP+e2ZxNMS9/pho9zFMGiXn5zKwFb3fv/4 tnVeae7Q5w7KggNSKcrHYvwMGJlWVOeIRjcCuinX/XD9qhIcRIQLQCssd AZxyoLsYyWaHNauIWPm+0OK6+lJCRPsKkDx1FycuGMqqpvftJAUGK9uNx ANLymy4R7tw1Yz85uKnERcfXnJO+0MDMw89CZdxH8i3evlWvMNRGRue92 g==; X-IronPort-AV: E=Sophos;i="5.97,271,1669100400"; d="scan'208";a="198833319" Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa2.microchip.iphmx.com with ESMTP/TLS/AES256-SHA256; 03 Feb 2023 09:56:18 -0700 Received: from chn-vm-ex01.mchp-main.com (10.10.85.143) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.16; Fri, 3 Feb 2023 09:56:18 -0700 Received: from CHE-LT-UNGSOFTWARE.microchip.com (10.10.115.15) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server id 15.1.2507.16 via Frontend Transport; Fri, 3 Feb 2023 09:56:12 -0700 From: Kumaravel Thiagarajan To: CC: , , , , , , , , , , , , , , , Subject: [PATCH v11 tty-next 0/4] serial: 8250_pci1xxxx: Add driver for the pci1xxxx's quad-uart function Date: Sat, 4 Feb 2023 11:01:34 +0530 Message-ID: <20230204053138.2520105-1-kumaravel.thiagarajan@microchip.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org pci1xxxx is a PCIe switch with a multi-function endpoint on one of its downstream ports. Quad-uart is one of the functions in the multi-function endpoint. This patch adds device driver for the quad-uart function and enumerates between 1 to 4 instances of uarts based on the PCIe subsystem device ID. The changes from v1->v2->v3->v4->v5->v6->v7->v8->v9->v10->v11 are mentioned in each patch in the patchset. Thanks to Andy Shevchenko, Ilpo Jarvinen, Chritophe JAILLET, Geert Uytterhoeven, Greg KH, Jiri Slaby for their review comments. Kumaravel Thiagarajan (4): serial: 8250_pci: Add serial8250_pci_setup_port definition in 8250_pcilib.c serial: 8250_pci1xxxx: Add driver for quad-uart support serial: 8250_pci1xxxx: Add RS485 support to quad-uart driver serial: 8250_pci1xxxx: Add power management functions to quad-uart driver MAINTAINERS | 7 + drivers/tty/serial/8250/8250_pci.c | 25 +- drivers/tty/serial/8250/8250_pci1xxxx.c | 494 ++++++++++++++++++++++++ drivers/tty/serial/8250/8250_pcilib.c | 39 ++ drivers/tty/serial/8250/8250_pcilib.h | 15 + drivers/tty/serial/8250/8250_port.c | 8 + drivers/tty/serial/8250/Kconfig | 15 + drivers/tty/serial/8250/Makefile | 2 + include/uapi/linux/serial_core.h | 3 + 9 files changed, 586 insertions(+), 22 deletions(-) create mode 100644 drivers/tty/serial/8250/8250_pci1xxxx.c create mode 100644 drivers/tty/serial/8250/8250_pcilib.c create mode 100644 drivers/tty/serial/8250/8250_pcilib.h -- 2.25.1