All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: dts: exynos: Enable Bluetooth support for Rinato board
       [not found] <CGME20200326083528eucas1p2f2e265f3776e4d34116f36b68d07731c@eucas1p2.samsung.com>
@ 2020-03-26  8:35 ` Marek Szyprowski
       [not found]   ` <CGME20200326083531eucas1p166688e4a513fd919e92dd14d65c715fe@eucas1p1.samsung.com>
  2020-03-27 10:46   ` [PATCH 1/2] ARM: dts: exynos: Enable Bluetooth support for Rinato board Krzysztof Kozlowski
  0 siblings, 2 replies; 4+ messages in thread
From: Marek Szyprowski @ 2020-03-26  8:35 UTC (permalink / raw)
  To: linux-samsung-soc
  Cc: Marek Szyprowski, Krzysztof Kozlowski, Chanwoo Choi,
	Bartlomiej Zolnierkiewicz

Add a node for the BCM43342A Bluetooth chip on the serial bus #0 on
the Exynos3250-based Rinato board.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
---
 arch/arm/boot/dts/exynos3250-rinato.dts | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/arch/arm/boot/dts/exynos3250-rinato.dts b/arch/arm/boot/dts/exynos3250-rinato.dts
index d215e8993d19..e511f1726182 100644
--- a/arch/arm/boot/dts/exynos3250-rinato.dts
+++ b/arch/arm/boot/dts/exynos3250-rinato.dts
@@ -663,6 +663,15 @@
 	assigned-clocks = <&cmu CLK_SCLK_UART0>;
 	assigned-clock-rates = <100000000>;
 	status = "okay";
+
+	bluetooth {
+		compatible = "brcm,bcm4330-bt";
+		max-speed = <3000000>;
+		shutdown-gpios = <&gpe0 0 GPIO_ACTIVE_HIGH>;
+		device-wakeup-gpios = <&gpx3 1 GPIO_ACTIVE_HIGH>;
+		host-wakeup-gpios = <&gpx2 6 GPIO_ACTIVE_HIGH>;
+		clocks = <&s2mps14_osc S2MPS11_CLK_BT>;
+	};
 };
 
 &serial_1 {
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] ARM: exynos_defconfig: enable serial bus and BCM HCIUART drivers
       [not found]   ` <CGME20200326083531eucas1p166688e4a513fd919e92dd14d65c715fe@eucas1p1.samsung.com>
@ 2020-03-26  8:35     ` Marek Szyprowski
  2020-03-27 10:52       ` Krzysztof Kozlowski
  0 siblings, 1 reply; 4+ messages in thread
From: Marek Szyprowski @ 2020-03-26  8:35 UTC (permalink / raw)
  To: linux-samsung-soc
  Cc: Marek Szyprowski, Krzysztof Kozlowski, Chanwoo Choi,
	Bartlomiej Zolnierkiewicz

Enable serial bus and BCM HCIUART Bluetooth drivers available on the
Exynos3250-based Rinato board.

Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
---
 arch/arm/configs/exynos_defconfig | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/configs/exynos_defconfig b/arch/arm/configs/exynos_defconfig
index 032d3d21c4fa..2ef1dbb4ea80 100644
--- a/arch/arm/configs/exynos_defconfig
+++ b/arch/arm/configs/exynos_defconfig
@@ -68,6 +68,7 @@ CONFIG_BT_HCIUART=m
 CONFIG_BT_HCIUART_BCSP=y
 CONFIG_BT_HCIUART_ATH3K=y
 CONFIG_BT_HCIUART_INTEL=y
+CONFIG_BT_HCIUART_BCM=y
 CONFIG_BT_HCIUART_AG6XX=y
 CONFIG_BT_HCIUART_MRVL=y
 CONFIG_BT_HCIBCM203X=m
@@ -132,6 +133,7 @@ CONFIG_SERIAL_8250=y
 CONFIG_SERIAL_OF_PLATFORM=y
 CONFIG_SERIAL_SAMSUNG=y
 CONFIG_SERIAL_SAMSUNG_CONSOLE=y
+CONFIG_SERIAL_DEV_BUS=y
 CONFIG_HW_RANDOM=y
 CONFIG_TCG_TPM=y
 CONFIG_TCG_TIS_I2C_INFINEON=y
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] ARM: dts: exynos: Enable Bluetooth support for Rinato board
  2020-03-26  8:35 ` [PATCH 1/2] ARM: dts: exynos: Enable Bluetooth support for Rinato board Marek Szyprowski
       [not found]   ` <CGME20200326083531eucas1p166688e4a513fd919e92dd14d65c715fe@eucas1p1.samsung.com>
@ 2020-03-27 10:46   ` Krzysztof Kozlowski
  1 sibling, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2020-03-27 10:46 UTC (permalink / raw)
  To: Marek Szyprowski
  Cc: linux-samsung-soc, Chanwoo Choi, Bartlomiej Zolnierkiewicz

On Thu, Mar 26, 2020 at 09:35:23AM +0100, Marek Szyprowski wrote:
> Add a node for the BCM43342A Bluetooth chip on the serial bus #0 on
> the Exynos3250-based Rinato board.
> 
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> ---
>  arch/arm/boot/dts/exynos3250-rinato.dts | 9 +++++++++

Thanks, applied for late push (might miss this merge window).

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] ARM: exynos_defconfig: enable serial bus and BCM HCIUART drivers
  2020-03-26  8:35     ` [PATCH 2/2] ARM: exynos_defconfig: enable serial bus and BCM HCIUART drivers Marek Szyprowski
@ 2020-03-27 10:52       ` Krzysztof Kozlowski
  0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2020-03-27 10:52 UTC (permalink / raw)
  To: Marek Szyprowski
  Cc: linux-samsung-soc, Chanwoo Choi, Bartlomiej Zolnierkiewicz

On Thu, Mar 26, 2020 at 09:35:24AM +0100, Marek Szyprowski wrote:
> Enable serial bus and BCM HCIUART Bluetooth drivers available on the
> Exynos3250-based Rinato board.
> 
> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
> ---
>  arch/arm/configs/exynos_defconfig | 2 ++

Thanks, applied (also late, might miss this merge window).

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-03-27 10:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CGME20200326083528eucas1p2f2e265f3776e4d34116f36b68d07731c@eucas1p2.samsung.com>
2020-03-26  8:35 ` [PATCH 1/2] ARM: dts: exynos: Enable Bluetooth support for Rinato board Marek Szyprowski
     [not found]   ` <CGME20200326083531eucas1p166688e4a513fd919e92dd14d65c715fe@eucas1p1.samsung.com>
2020-03-26  8:35     ` [PATCH 2/2] ARM: exynos_defconfig: enable serial bus and BCM HCIUART drivers Marek Szyprowski
2020-03-27 10:52       ` Krzysztof Kozlowski
2020-03-27 10:46   ` [PATCH 1/2] ARM: dts: exynos: Enable Bluetooth support for Rinato board Krzysztof Kozlowski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.