From patchwork Fri Dec 15 15:11:19 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rengarajan S X-Patchwork-Id: 754784 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.154.123]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 06AB83C6A3; Fri, 15 Dec 2023 15:13:29 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=microchip.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=microchip.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=microchip.com header.i=@microchip.com header.b="p7olcrbW" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1702653210; x=1734189210; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=ybPCAvLgR8sMS4w/W/i9x0ElPfV/wtar3ypvuVot4nU=; b=p7olcrbWmAfiBHRdt0+dn1nEllp2wdqxhxxeEeycsvTnTJZmD2L3sked y96zHgRlGOp8321g7LKGLGLAqRjBoB5rwze5Qa0zk+e2p7li1h7zANWkF zixNrLesZ2GyEyAcjVZDIfM8SzGjdJUPdvjjdRCUzGVXmr/IO9LfVbJJf gJpQr8gF69ZwDrYuvScY5r90wBSc5mEam2FU8cvGcQ8Tzh2dAg2NB5VZQ RxtnoTOkZKCG/NvGMxgJaR6l7fsAIJdjHyZzO2EbkuDcUB4NEdfzcaAHw oxYz+5LvfNmeOPhrBu3k3FRcyYnP8hAICJDi5EA1H8lwF87RSC5t6kAgb g==; X-CSE-ConnectionGUID: ZSd0znorTjqGetiYJCobuQ== X-CSE-MsgGUID: JZz+o+VzS/2pohpxO5iIMQ== X-ThreatScanner-Verdict: Negative X-IronPort-AV: E=Sophos;i="6.04,279,1695711600"; d="scan'208";a="180577318" X-Amp-Result: SKIPPED(no attachment in message) Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa6.microchip.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES128-GCM-SHA256; 15 Dec 2023 08:13:20 -0700 Received: from chn-vm-ex03.mchp-main.com (10.10.85.151) by chn-vm-ex02.mchp-main.com (10.10.85.144) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.35; Fri, 15 Dec 2023 08:13:09 -0700 Received: from che-dk-ungapp03lx.microchip.com (10.10.85.11) by chn-vm-ex03.mchp-main.com (10.10.85.151) with Microsoft SMTP Server id 15.1.2507.35 via Frontend Transport; Fri, 15 Dec 2023 08:13:06 -0700 From: Rengarajan S To: , , , , , , , , CC: Subject: [PATCH v1 tty-next 0/4] 8250: microchip: Burst Mode Support for PCI1XXXX Date: Fri, 15 Dec 2023 20:41:19 +0530 Message-ID: <20231215151123.41812-1-rengarajan.s@microchip.com> X-Mailer: git-send-email 2.25.1 Precedence: bulk X-Mailing-List: linux-serial@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 This patch series improves the UART performance in PCI1XXXX from C0 rev using burst mode operation. Each transaction processes DWORDs at a time and the remaining bytes are handled byte-by-byte. With burst mode access the baud rate support is extended from 1.5 Mbps to 3.9 Mbps. v1 Initial Submission for review Rengarajan S (4): 8250: microchip: pci1xxxx: Rearranging the structure declarations 8250: microchip: pci1xxxx: Add Syslock support for reading UART system registers 8250: microchip: pci1xxxx: Add Burst mode reception support in uart driver for writing into FIFO 8250: microchip: pci1xxxx: Add Burst mode transmission support in uart driver for reading from FIFO drivers/tty/serial/8250/8250_pci1xxxx.c | 313 ++++++++++++++++++++++-- 1 file changed, 299 insertions(+), 14 deletions(-)