From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D2626C43381 for ; Wed, 27 Mar 2019 00:27:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9E2D92075E for ; Wed, 27 Mar 2019 00:27:51 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=megous.com header.i=@megous.com header.b="ooQ5uocF" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732749AbfC0A1g (ORCPT ); Tue, 26 Mar 2019 20:27:36 -0400 Received: from vps.xff.cz ([195.181.215.36]:53778 "EHLO vps.xff.cz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727500AbfC0A1d (ORCPT ); Tue, 26 Mar 2019 20:27:33 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=megous.com; s=mail; t=1553645934; bh=I5izUN897qvaOczp6yBx+0t770iPxiAokH6P0jHUEoI=; h=From:To:Cc:Subject:Date:From; b=ooQ5uocFFFjo4IyiBqhMJzyI8nmeYR7vguZR9/xM1DqhglIXx6R+oxmg2LLy7pFPX vi6xd5jUJQXzDyO+KUEgSEnrvNnVlQ/0ZdOjI2MoNuAPCneGXfrIp1m5F6eoHHfQUN XWlAGyVtZA+dcd4hdI/JztHQxGkj5c5GUbHX8lkQ= From: megous@megous.com To: maxime.ripard@free-electrons.com, wens@csie.org, robh@kernel.org, johan@kernel.org, mark.rutland@arm.com Cc: Ondrej Jirman , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-sunxi@googlegroups.com Subject: [PATCH 0/7] Add bluetooth, gps and accelerometer to TBS A711 Date: Wed, 27 Mar 2019 01:18:36 +0100 Message-Id: <20190327001843.2420-1-megous@megous.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Ondrej Jirman This series enables some peripherals on TBS A711 tablet that already have mainline drivers: - GPS u-blox neo-6m (via gnss u-blox driver) - Bluetooth (via recently added OF support in the Broadcom bluetooth driver) - Accelermomter BMA-250 (hooked to the I2C bus) It also modifies A83T DTSI and adds missing UART interfaces. I've added additional compatible to the gnss/u-blox driver for NEO-6M, because this board uses this module, and I don't think I can use the existing compatible for u-blox,neo-m8, even as a fallback. Please take a look, and apply the patches if you have no objections. Many of the patches will go through the sunxi tree, but I'm not sure who will want to take the GPS patches. regards, Ondrej Jirman Ondrej Jirman (7): ARM: dts: sun8i: tbs-a711: Enable bluetooth ARM: dts: sun8i: tbs-a711: Add node for BMA250 accelerometer ARM: dts: sun8i: a83t: Add nodes for UART2-UART4 ARM: dts: sun8i: a83t: Add UART2 PB pins gnss: Add u-blox,neo-6m compatible dt-bindings: gnss: Add u-blox,neo-6m compatible ARM: dts: sun8i: tbs-a711: Enable UART2 (for NEO-6M GPS module) .../devicetree/bindings/gnss/u-blox.txt | 1 + arch/arm/boot/dts/sun8i-a83t-tbs-a711.dts | 49 +++++++++++++++++++ arch/arm/boot/dts/sun8i-a83t.dtsi | 38 ++++++++++++++ drivers/gnss/ubx.c | 1 + 4 files changed, 89 insertions(+) -- 2.21.0 From mboxrd@z Thu Jan 1 00:00:00 1970 From: megous via linux-sunxi Subject: [PATCH 0/7] Add bluetooth, gps and accelerometer to TBS A711 Date: Wed, 27 Mar 2019 01:18:36 +0100 Message-ID: <20190327001843.2420-1-megous@megous.com> Reply-To: megous-5qf/QAjKc83QT0dZR+AlfA@public.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: List-Post: , List-Help: , List-Archive: , List-Unsubscribe: , To: maxime.ripard-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org, wens-jdAy2FN1RRM@public.gmane.org, robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org, johan-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org, mark.rutland-5wv7dgnIgG8@public.gmane.org Cc: Ondrej Jirman , devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-sunxi-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org List-Id: devicetree@vger.kernel.org From: Ondrej Jirman This series enables some peripherals on TBS A711 tablet that already have mainline drivers: - GPS u-blox neo-6m (via gnss u-blox driver) - Bluetooth (via recently added OF support in the Broadcom bluetooth driver) - Accelermomter BMA-250 (hooked to the I2C bus) It also modifies A83T DTSI and adds missing UART interfaces. I've added additional compatible to the gnss/u-blox driver for NEO-6M, because this board uses this module, and I don't think I can use the existing compatible for u-blox,neo-m8, even as a fallback. Please take a look, and apply the patches if you have no objections. Many of the patches will go through the sunxi tree, but I'm not sure who will want to take the GPS patches. regards, Ondrej Jirman Ondrej Jirman (7): ARM: dts: sun8i: tbs-a711: Enable bluetooth ARM: dts: sun8i: tbs-a711: Add node for BMA250 accelerometer ARM: dts: sun8i: a83t: Add nodes for UART2-UART4 ARM: dts: sun8i: a83t: Add UART2 PB pins gnss: Add u-blox,neo-6m compatible dt-bindings: gnss: Add u-blox,neo-6m compatible ARM: dts: sun8i: tbs-a711: Enable UART2 (for NEO-6M GPS module) .../devicetree/bindings/gnss/u-blox.txt | 1 + arch/arm/boot/dts/sun8i-a83t-tbs-a711.dts | 49 +++++++++++++++++++ arch/arm/boot/dts/sun8i-a83t.dtsi | 38 ++++++++++++++ drivers/gnss/ubx.c | 1 + 4 files changed, 89 insertions(+) -- 2.21.0 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=3.0 tests=DKIM_ADSP_DISCARD,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_PASS, URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 25EFBC43381 for ; Wed, 27 Mar 2019 00:19:09 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id DF1FF20811 for ; Wed, 27 Mar 2019 00:19:08 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="Rc0iJzMB"; dkim=fail reason="signature verification failed" (1024-bit key) header.d=megous.com header.i=@megous.com header.b="ooQ5uocF" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org DF1FF20811 Authentication-Results: mail.kernel.org; dmarc=fail (p=reject dis=none) header.from=megous.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=bKmrxjtztsUJFqaGDcy/gvJuEEoBSxyE/8EPrpRW40I=; b=Rc0iJzMBwufhz3 LcFiSZ9aUe1wjtuQUP00WnGWJDE/VClOfJUYch5GcUJXjAAdf/7L2r8AexQ/7BTfB52JNtLEeLVVQ lqFPfuuOXxJBTDibj3UJ5EAKdlmBfIJtZJECLL2kN+4cMjOa/pncXNinJkKyOnUkdUuMlS1qX9IIZ BYWB/F2DFfyqJ0Y+6C3/PyqnM2evp1JACdawDjYnQcgKtQ2JlgXRRiX27pawr+mTsbQDikIH/KygY A7CHp6d2H2Jhz0ykVaPig/84E01HGFxJFTDLeJHvSdOfowBNP6+3JYXNSaEd1/AtrWDKCbwVmx2yc mfwQiUA5CbrfXLkUmmwQ==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.90_1 #2 (Red Hat Linux)) id 1h8wHY-0002pg-7j; Wed, 27 Mar 2019 00:19:04 +0000 Received: from vps.xff.cz ([195.181.215.36]) by bombadil.infradead.org with esmtps (Exim 4.90_1 #2 (Red Hat Linux)) id 1h8wHT-0002nx-CL for linux-arm-kernel@lists.infradead.org; Wed, 27 Mar 2019 00:19:01 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=megous.com; s=mail; t=1553645934; bh=I5izUN897qvaOczp6yBx+0t770iPxiAokH6P0jHUEoI=; h=From:To:Cc:Subject:Date:From; b=ooQ5uocFFFjo4IyiBqhMJzyI8nmeYR7vguZR9/xM1DqhglIXx6R+oxmg2LLy7pFPX vi6xd5jUJQXzDyO+KUEgSEnrvNnVlQ/0ZdOjI2MoNuAPCneGXfrIp1m5F6eoHHfQUN XWlAGyVtZA+dcd4hdI/JztHQxGkj5c5GUbHX8lkQ= From: megous@megous.com To: maxime.ripard@free-electrons.com, wens@csie.org, robh@kernel.org, johan@kernel.org, mark.rutland@arm.com Subject: [PATCH 0/7] Add bluetooth, gps and accelerometer to TBS A711 Date: Wed, 27 Mar 2019 01:18:36 +0100 Message-Id: <20190327001843.2420-1-megous@megous.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20190326_171900_257319_44B230D4 X-CRM114-Status: UNSURE ( 8.30 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Ondrej Jirman , devicetree@vger.kernel.org, linux-sunxi@googlegroups.com, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org From: Ondrej Jirman This series enables some peripherals on TBS A711 tablet that already have mainline drivers: - GPS u-blox neo-6m (via gnss u-blox driver) - Bluetooth (via recently added OF support in the Broadcom bluetooth driver) - Accelermomter BMA-250 (hooked to the I2C bus) It also modifies A83T DTSI and adds missing UART interfaces. I've added additional compatible to the gnss/u-blox driver for NEO-6M, because this board uses this module, and I don't think I can use the existing compatible for u-blox,neo-m8, even as a fallback. Please take a look, and apply the patches if you have no objections. Many of the patches will go through the sunxi tree, but I'm not sure who will want to take the GPS patches. regards, Ondrej Jirman Ondrej Jirman (7): ARM: dts: sun8i: tbs-a711: Enable bluetooth ARM: dts: sun8i: tbs-a711: Add node for BMA250 accelerometer ARM: dts: sun8i: a83t: Add nodes for UART2-UART4 ARM: dts: sun8i: a83t: Add UART2 PB pins gnss: Add u-blox,neo-6m compatible dt-bindings: gnss: Add u-blox,neo-6m compatible ARM: dts: sun8i: tbs-a711: Enable UART2 (for NEO-6M GPS module) .../devicetree/bindings/gnss/u-blox.txt | 1 + arch/arm/boot/dts/sun8i-a83t-tbs-a711.dts | 49 +++++++++++++++++++ arch/arm/boot/dts/sun8i-a83t.dtsi | 38 ++++++++++++++ drivers/gnss/ubx.c | 1 + 4 files changed, 89 insertions(+) -- 2.21.0 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel