Commit e601daed authored by Stefan Wahren's avatar Stefan Wahren Committed by Marcel Holtmann

Bluetooth: hci_bcm: Drive RTS only for BCM43438

The commit 3347a809 ("Bluetooth: hci_bcm: Fix RTS handling during
startup") is causing at least a regression for AP6256 on Orange Pi 3.
So do the RTS line handing during startup only on the necessary platform.

Fixes: 3347a809 ("Bluetooth: hci_bcm: Fix RTS handling during startup")
Reported-by: default avatarOndřej Jirman <megous@megous.com>
Signed-off-by: default avatarStefan Wahren <wahrenst@gmx.net>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 5bd64c64
...@@ -53,6 +53,7 @@ ...@@ -53,6 +53,7 @@
*/ */
struct bcm_device_data { struct bcm_device_data {
bool no_early_set_baudrate; bool no_early_set_baudrate;
bool drive_rts_on_open;
}; };
/** /**
...@@ -122,6 +123,7 @@ struct bcm_device { ...@@ -122,6 +123,7 @@ struct bcm_device {
bool is_suspended; bool is_suspended;
#endif #endif
bool no_early_set_baudrate; bool no_early_set_baudrate;
bool drive_rts_on_open;
u8 pcm_int_params[5]; u8 pcm_int_params[5];
}; };
...@@ -456,7 +458,9 @@ static int bcm_open(struct hci_uart *hu) ...@@ -456,7 +458,9 @@ static int bcm_open(struct hci_uart *hu)
out: out:
if (bcm->dev) { if (bcm->dev) {
hci_uart_set_flow_control(hu, true); if (bcm->dev->drive_rts_on_open)
hci_uart_set_flow_control(hu, true);
hu->init_speed = bcm->dev->init_speed; hu->init_speed = bcm->dev->init_speed;
/* If oper_speed is set, ldisc/serdev will set the baudrate /* If oper_speed is set, ldisc/serdev will set the baudrate
...@@ -466,7 +470,10 @@ static int bcm_open(struct hci_uart *hu) ...@@ -466,7 +470,10 @@ static int bcm_open(struct hci_uart *hu)
hu->oper_speed = bcm->dev->oper_speed; hu->oper_speed = bcm->dev->oper_speed;
err = bcm_gpio_set_power(bcm->dev, true); err = bcm_gpio_set_power(bcm->dev, true);
hci_uart_set_flow_control(hu, false);
if (bcm->dev->drive_rts_on_open)
hci_uart_set_flow_control(hu, false);
if (err) if (err)
goto err_unset_hu; goto err_unset_hu;
} }
...@@ -1447,8 +1454,10 @@ static int bcm_serdev_probe(struct serdev_device *serdev) ...@@ -1447,8 +1454,10 @@ static int bcm_serdev_probe(struct serdev_device *serdev)
dev_err(&serdev->dev, "Failed to power down\n"); dev_err(&serdev->dev, "Failed to power down\n");
data = device_get_match_data(bcmdev->dev); data = device_get_match_data(bcmdev->dev);
if (data) if (data) {
bcmdev->no_early_set_baudrate = data->no_early_set_baudrate; bcmdev->no_early_set_baudrate = data->no_early_set_baudrate;
bcmdev->drive_rts_on_open = data->drive_rts_on_open;
}
return hci_uart_register_device(&bcmdev->serdev_hu, &bcm_proto); return hci_uart_register_device(&bcmdev->serdev_hu, &bcm_proto);
} }
...@@ -1465,12 +1474,16 @@ static struct bcm_device_data bcm4354_device_data = { ...@@ -1465,12 +1474,16 @@ static struct bcm_device_data bcm4354_device_data = {
.no_early_set_baudrate = true, .no_early_set_baudrate = true,
}; };
static struct bcm_device_data bcm43438_device_data = {
.drive_rts_on_open = true,
};
static const struct of_device_id bcm_bluetooth_of_match[] = { static const struct of_device_id bcm_bluetooth_of_match[] = {
{ .compatible = "brcm,bcm20702a1" }, { .compatible = "brcm,bcm20702a1" },
{ .compatible = "brcm,bcm4329-bt" }, { .compatible = "brcm,bcm4329-bt" },
{ .compatible = "brcm,bcm4345c5" }, { .compatible = "brcm,bcm4345c5" },
{ .compatible = "brcm,bcm4330-bt" }, { .compatible = "brcm,bcm4330-bt" },
{ .compatible = "brcm,bcm43438-bt" }, { .compatible = "brcm,bcm43438-bt", .data = &bcm43438_device_data },
{ .compatible = "brcm,bcm43540-bt", .data = &bcm4354_device_data }, { .compatible = "brcm,bcm43540-bt", .data = &bcm4354_device_data },
{ .compatible = "brcm,bcm4335a0" }, { .compatible = "brcm,bcm4335a0" },
{ }, { },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment