From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from list by lists.gnu.org with archive (Exim 4.90_1) id 1oRXK7-0006xI-VE for mharc-grub-devel@gnu.org; Fri, 26 Aug 2022 07:16:27 -0400 Received: from eggs.gnu.org ([209.51.188.92]:34914) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oRXK2-0006ld-O6 for grub-devel@gnu.org; Fri, 26 Aug 2022 07:16:22 -0400 Received: from desiato.infradead.org ([2001:8b0:10b:1:d65d:64ff:fe57:4e05]:59744) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oRXJz-00067J-0f for grub-devel@gnu.org; Fri, 26 Aug 2022 07:16:22 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=desiato.20200630; h=Subject:Cc:From:Date:Message-ID:Sender :Reply-To:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:In-Reply-To:References; bh=ExFHqjDX+uTDFZuzBbm5rJiN2p0ifVhHLTzD4jDPHAs=; b=kPeElqqem96HFlzueynXpHgrrd OQtc0MfI36bPLaxMzYu9AIYhi+99KMbCym/GAAdfjue1x1gDHq1eGoEwleBvTWCCG6QNI16Bxbeb0 ByIKq6CFbp/8m/YIMF7lXVveoZqVC+QwjxWwC4PLf+ESasDtmy9qH+vtnvrk/P8L6ot2YhXQ7v3IC EM7JauNBBkJxej6A6+AYI3H5L09cwN7+p77u1n6h+FEKsEMwluJ6BRzDI97HDQxpKY6NxMX61bw5o RdTh/HMr+quQJJrj17Y95BWvxRwTGJs6tUNNiu+7fnKcy/5p/a4/gbbg4huW8zyHcY3IumXKjqTli sKgTREug==; Received: from j130084.upc-j.chello.nl ([24.132.130.84] helo=noisy.programming.kicks-ass.net) by desiato.infradead.org with esmtpsa (Exim 4.94.2 #2 (Red Hat Linux)) id 1oRXJu-006KEQ-Rh; Fri, 26 Aug 2022 11:16:15 +0000 Received: from hirez.programming.kicks-ass.net (hirez.programming.kicks-ass.net [192.168.1.225]) (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 noisy.programming.kicks-ass.net (Postfix) with ESMTPS id 44A1F3006C4; Fri, 26 Aug 2022 13:16:13 +0200 (CEST) Received: by hirez.programming.kicks-ass.net (Postfix, from userid 0) id 19A382016C84E; Fri, 26 Aug 2022 13:16:13 +0200 (CEST) Message-ID: <20220826110142.966628595@alderlake.programming.kicks-ass.net> User-Agent: quilt/0.66 Date: Fri, 26 Aug 2022 13:01:42 +0200 From: peterz@infradead.org Cc: grub-devel@gnu.org, development@efficientek.com, dkiper@net-space.pl, peterz@infradead.org Subject: [PATCH v2 0/3] term/serial: Add PCI-serial device support Received-SPF: none client-ip=2001:8b0:10b:1:d65d:64ff:fe57:4e05; envelope-from=peterz@infradead.org; helo=desiato.infradead.org X-Spam_score_int: -33 X-Spam_score: -3.4 X-Spam_bar: --- X-Spam_report: (-3.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, MISSING_HEADERS=1.021, RCVD_IN_DNSWL_MED=-2.3, SPF_HELO_NONE=0.001, SPF_NONE=0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: grub-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: The development of GNU GRUB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Aug 2022 11:16:23 -0000 Hi! A small collection of patches that adds PCI serial support. The first patch is by Glenn and adds GRUB_HAS_PCI -- it is included so that it is a complete posting. The second patch is the actual PCI serial support, and the last patch a cleanup requested by Glenn. Much thanks to Glenn for all the feedback so far.