From patchwork Thu Dec 7 09:11:59 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bartosz Golaszewski X-Patchwork-Id: 752378 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bgdev-pl.20230601.gappssmtp.com header.i=@bgdev-pl.20230601.gappssmtp.com header.b="f5BIJaw/" Received: from mail-wr1-x42c.google.com (mail-wr1-x42c.google.com [IPv6:2a00:1450:4864:20::42c]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id ACC4C1724 for ; Thu, 7 Dec 2023 01:12:11 -0800 (PST) Received: by mail-wr1-x42c.google.com with SMTP id ffacd0b85a97d-3331752d2b9so477360f8f.3 for ; Thu, 07 Dec 2023 01:12:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bgdev-pl.20230601.gappssmtp.com; s=20230601; t=1701940330; x=1702545130; darn=vger.kernel.org; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc:subject:date:message-id:reply-to; bh=tU2gzybzj9ATGlUwp/IUXLdbTrKN9XcIjZzA/XAbQkY=; b=f5BIJaw/wZGweOMBKqq8getyfkuZUzSmnXEuRb40hXh4WdYpnSAm2zyWvFZ9cprMjH r+aIp1NkfJ8bf/4Xip1oDrSieRHS/3WJ0z4pYcIoJMorrcAi65hXDUFtPOGS4mG3Kwh/ nCU1S35RLGK7pcG78vtlFjkTDzH7Fr6YP25QkTLuQzcZX0yIYSVHHHEK4WmjtvGfbD2T +Wuod3a4B96yEGClnkJHYkZ4jl2j34jTZDWB3p1DlQsiw+wd4rPn6szWUzDLumdCOcAV e2rFsJq/1NdtY/uI0ghPUy2teYaOhmG3vztO3CXMLG62fINFRaaWTbiFgiDiAK+fnlWN C20Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1701940330; x=1702545130; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=tU2gzybzj9ATGlUwp/IUXLdbTrKN9XcIjZzA/XAbQkY=; b=n5zOEztRuzZU7qwBs7zixTELdRBZil/8zYrGkFkCnAVa7dAu3iVc1KozPhxnW8gaWG Mo+YQJgM2zhPtG5hwBiMr0D74yieNU+7NwA+MPuh+11W0cGHCWuUEUZJQny7FYuwX8hW ygltuBQAnTZ3fHalCu1IgCmUdzqjkSyNx1xOb/wKxr1meVEhShoI21sDJ/A23mX5ZYVe Vw9o42m9Db3+2MtEDTgrEQZ3NWj1r9+9W8sTa53RtzKQa5o/bpZjw2kSxD9xyeIasxOc IhmB+3Awwh90NvgbXIi20OJLuWG/74JstlqOZBw/MnTMAZwLGm6zsG3ZYuTiXibKkqFS cGUg== X-Gm-Message-State: AOJu0YzL1fGmD7jbGZc/blix1CZ1KNVN4U9ikAlgACfsJs7tU4nFh/tS syDC9TKBLflmY4MLAUOoGYh45w== X-Google-Smtp-Source: AGHT+IFSDlszC7Ad6GLFM65Ao5WkZAll3A7vU1pZZmvQkU6/37o4V9sQ/bp6xEx1RlGPpp9JAjwcKw== X-Received: by 2002:a5d:6586:0:b0:333:2fd2:814e with SMTP id q6-20020a5d6586000000b003332fd2814emr1435920wru.107.1701940330064; Thu, 07 Dec 2023 01:12:10 -0800 (PST) Received: from brgl-uxlite.home ([2a01:cb1d:334:ac00:de32:8b0f:dc9a:4dce]) by smtp.gmail.com with ESMTPSA id y3-20020adff6c3000000b0033334c3acb6sm896009wrp.98.2023.12.07.01.12.09 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 07 Dec 2023 01:12:09 -0800 (PST) From: Bartosz Golaszewski To: Marcel Holtmann , Johan Hedberg , Luiz Augusto von Dentz , Alex Elder , Srini Kandagatla , Bjorn Andersson Cc: linux-bluetooth@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-msm@vger.kernel.org, Bartosz Golaszewski Subject: [PATCH v2 0/3] Bluetooth: power-on QCA6390 correctly Date: Thu, 7 Dec 2023 10:11:59 +0100 Message-Id: <20231207091202.19231-1-brgl@bgdev.pl> X-Mailer: git-send-email 2.40.1 Precedence: bulk X-Mailing-List: linux-bluetooth@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 From: Bartosz Golaszewski Patch 1 is just a typo fix as we're already touching this bindings. The second patch adds more regulator defintions and enforces them for the QCA6390 model. The final patch enables the power sequence for the BT module of QCA6390 in the hci_qca driver. v1 -> v2: - squashed the two bluetooth patches into one - changed the naming convention for the RFA regulators to follow the existing ones - added dt-bindings patches Bartosz Golaszewski (3): dt-bindings: net: bluetooth: qualcomm: fix a typo dt-bindings: net: bluetooth: qualcomm: add regulators for QCA6390 Bluetooth: qca: run the power-on/off sequence for QCA6390 too .../net/bluetooth/qualcomm-bluetooth.yaml | 26 ++++++++++++++++++- drivers/bluetooth/hci_qca.c | 14 +++++++++- 2 files changed, 38 insertions(+), 2 deletions(-)