Received: by 2002:a25:d7c1:0:0:0:0:0 with SMTP id o184csp4377815ybg; Mon, 21 Oct 2019 08:07:41 -0700 (PDT) X-Google-Smtp-Source: APXvYqwnY6F+4DCyZgfefKyjuCCa9keoZh3c4idxf+2a7JMJD1bqpilNnREZsEYmIUr2wjUR86Ed X-Received: by 2002:a05:6402:1a55:: with SMTP id bf21mr2939983edb.61.1571670460954; Mon, 21 Oct 2019 08:07:40 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1571670460; cv=none; d=google.com; s=arc-20160816; b=A/7868I31dZXR5xzWV+vfW7glm724XWZbvZUfcl7iBm+qPsa64qTZ2iU+vmD84yNR0 pYF2lmtBrJRmTLyOLE9JEkUDiXwhBxMyYk2Nz2KYN5fSLObu2FOc6x71ozTU8Cv4Xg2B zPZ5dtO6P/3IVNbDdNRf0ofswVX+gzO/JyeC2UoF8xgSGcHXa6t0omHvfO3rzQnEpMDr l6D/zP8HnlfxfA7O/oTRLLy9ZXjXJHNCyd3bN9B9UyqOPkGVVESPiFKmlCIL2Xg0kHfA FR9+yQIC5Fl71ZJYJRyjMVKifUZhC9djAHUdSXjnrCfCHeyf8RUlHh1FOLQxo+JFv9rl sd/A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:to:references:message-id :content-transfer-encoding:cc:date:in-reply-to:from:subject :mime-version; bh=w79Dzw1lwAZ1XblpwFS/Plu9189dDJwNvRgJv48tMUM=; b=Oi+6KiPiWQC6NaYA6Kt20dzHweehNmhpew1AeKxKEYW6JqcAf7Z5cjwoJrTIS7uVzk U5YC2VQZNvG2HU5j/b4g1b1oMxIwP+j9iqTpiBOO436hzGWe+m26aVhSEWaR1md4Omyu YWL1CBm6hI+GtAaFcwyqQtgQT0uNK1NiE6oz4qS/HDcB8ZGn6VK6und9VZb7K8di8Lj7 bkcdoF4pBKrr7o+NL63bZRNb5+mj3ATShPTa6XpSwMYNPqBl5IkjwvfaRGdwyzBXinFM SrFyInQzyHumfuMlk69dh6niU412TcsQtjiFcRmRjfHvs6ZuwgdszYu4Bpt8iRTq3973 kAPA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-bluetooth-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-bluetooth-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id b31si11594282ede.12.2019.10.21.08.07.16; Mon, 21 Oct 2019 08:07:40 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-bluetooth-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-bluetooth-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-bluetooth-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727771AbfJUPFh (ORCPT + 99 others); Mon, 21 Oct 2019 11:05:37 -0400 Received: from coyote.holtmann.net ([212.227.132.17]:46145 "EHLO mail.holtmann.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727211AbfJUPFg (ORCPT ); Mon, 21 Oct 2019 11:05:36 -0400 Received: from marcel-macbook.fritz.box (p4FEFC197.dip0.t-ipconnect.de [79.239.193.151]) by mail.holtmann.org (Postfix) with ESMTPSA id 75FB9CECA3; Mon, 21 Oct 2019 17:14:33 +0200 (CEST) Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 13.0 \(3594.4.19\)) Subject: Re: [PATCH V4 01/10] bluetooth: hci_bcm: Fix RTS handling during startup From: Marcel Holtmann In-Reply-To: <1570375708-26965-2-git-send-email-wahrenst@gmx.net> Date: Mon, 21 Oct 2019 17:05:32 +0200 Cc: Johan Hedberg , Rob Herring , Mark Rutland , Eric Anholt , Florian Fainelli , Ray Jui , Scott Branden , Catalin Marinas , Will Deacon , bcm-kernel-feedback-list@broadcom.com, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-bluetooth@vger.kernel.org Content-Transfer-Encoding: 7bit Message-Id: References: <1570375708-26965-1-git-send-email-wahrenst@gmx.net> <1570375708-26965-2-git-send-email-wahrenst@gmx.net> To: Stefan Wahren X-Mailer: Apple Mail (2.3594.4.19) Sender: linux-bluetooth-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-bluetooth@vger.kernel.org Hi Stefan, > The RPi 4 uses the hardware handshake lines for CYW43455, but the chip > doesn't react to HCI requests during DT probe. The reason is the inproper > handling of the RTS line during startup. According to the startup > signaling sequence in the CYW43455 datasheet, the hosts RTS line must > be driven after BT_REG_ON and BT_HOST_WAKE. > > Signed-off-by: Stefan Wahren > --- > drivers/bluetooth/hci_bcm.c | 2 ++ > 1 file changed, 2 insertions(+) patch has been applied to bluetooth-next tree. Regards Marcel