Bluetooth: hci_qca: Split qca_power_setup()
Split and rename qca_power_setup() in order to simplify each code path and to clarify that it is unrelated to qca_power_off() and qca_power_setup(). Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
Родитель
163d42fa83
Коммит
a9314e76da
|
@ -160,7 +160,8 @@ struct qca_serdev {
|
||||||
const char *firmware_name;
|
const char *firmware_name;
|
||||||
};
|
};
|
||||||
|
|
||||||
static int qca_power_setup(struct hci_uart *hu, bool on);
|
static int qca_regulator_enable(struct qca_serdev *qcadev);
|
||||||
|
static void qca_regulator_disable(struct qca_serdev *qcadev);
|
||||||
static void qca_power_shutdown(struct hci_uart *hu);
|
static void qca_power_shutdown(struct hci_uart *hu);
|
||||||
static int qca_power_off(struct hci_dev *hdev);
|
static int qca_power_off(struct hci_dev *hdev);
|
||||||
|
|
||||||
|
@ -516,7 +517,7 @@ static int qca_open(struct hci_uart *hu)
|
||||||
} else {
|
} else {
|
||||||
hu->init_speed = qcadev->init_speed;
|
hu->init_speed = qcadev->init_speed;
|
||||||
hu->oper_speed = qcadev->oper_speed;
|
hu->oper_speed = qcadev->oper_speed;
|
||||||
ret = qca_power_setup(hu, true);
|
ret = qca_regulator_enable(qcadev);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
destroy_workqueue(qca->workqueue);
|
destroy_workqueue(qca->workqueue);
|
||||||
kfree_skb(qca->rx_skb);
|
kfree_skb(qca->rx_skb);
|
||||||
|
@ -1188,7 +1189,7 @@ static int qca_wcn3990_init(struct hci_uart *hu)
|
||||||
qcadev = serdev_device_get_drvdata(hu->serdev);
|
qcadev = serdev_device_get_drvdata(hu->serdev);
|
||||||
if (!qcadev->bt_power->vregs_on) {
|
if (!qcadev->bt_power->vregs_on) {
|
||||||
serdev_device_close(hu->serdev);
|
serdev_device_close(hu->serdev);
|
||||||
ret = qca_power_setup(hu, true);
|
ret = qca_regulator_enable(qcadev);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
@ -1353,9 +1354,12 @@ static const struct qca_vreg_data qca_soc_data_wcn3998 = {
|
||||||
|
|
||||||
static void qca_power_shutdown(struct hci_uart *hu)
|
static void qca_power_shutdown(struct hci_uart *hu)
|
||||||
{
|
{
|
||||||
|
struct qca_serdev *qcadev;
|
||||||
struct qca_data *qca = hu->priv;
|
struct qca_data *qca = hu->priv;
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
|
|
||||||
|
qcadev = serdev_device_get_drvdata(hu->serdev);
|
||||||
|
|
||||||
/* From this point we go into power off state. But serial port is
|
/* From this point we go into power off state. But serial port is
|
||||||
* still open, stop queueing the IBS data and flush all the buffered
|
* still open, stop queueing the IBS data and flush all the buffered
|
||||||
* data in skb's.
|
* data in skb's.
|
||||||
|
@ -1367,7 +1371,7 @@ static void qca_power_shutdown(struct hci_uart *hu)
|
||||||
|
|
||||||
host_set_baudrate(hu, 2400);
|
host_set_baudrate(hu, 2400);
|
||||||
qca_send_power_pulse(hu, false);
|
qca_send_power_pulse(hu, false);
|
||||||
qca_power_setup(hu, false);
|
qca_regulator_disable(qcadev);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int qca_power_off(struct hci_dev *hdev)
|
static int qca_power_off(struct hci_dev *hdev)
|
||||||
|
@ -1383,36 +1387,43 @@ static int qca_power_off(struct hci_dev *hdev)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int qca_power_setup(struct hci_uart *hu, bool on)
|
static int qca_regulator_enable(struct qca_serdev *qcadev)
|
||||||
{
|
{
|
||||||
struct regulator_bulk_data *vreg_bulk;
|
struct qca_power *power = qcadev->bt_power;
|
||||||
struct qca_serdev *qcadev;
|
int ret;
|
||||||
int num_vregs;
|
|
||||||
int ret = 0;
|
|
||||||
|
|
||||||
qcadev = serdev_device_get_drvdata(hu->serdev);
|
/* Already enabled */
|
||||||
if (!qcadev || !qcadev->bt_power || !qcadev->bt_power->vreg_bulk)
|
if (power->vregs_on)
|
||||||
return -EINVAL;
|
return 0;
|
||||||
|
|
||||||
vreg_bulk = qcadev->bt_power->vreg_bulk;
|
BT_DBG("enabling %d regulators)", power->num_vregs);
|
||||||
num_vregs = qcadev->bt_power->num_vregs;
|
|
||||||
BT_DBG("on: %d (%d regulators)", on, num_vregs);
|
|
||||||
if (on && !qcadev->bt_power->vregs_on) {
|
|
||||||
ret = regulator_bulk_enable(num_vregs, vreg_bulk);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
qcadev->bt_power->vregs_on = true;
|
ret = regulator_bulk_enable(power->num_vregs, power->vreg_bulk);
|
||||||
} else if (!on && qcadev->bt_power->vregs_on) {
|
if (ret)
|
||||||
/* turn off regulator in reverse order */
|
return ret;
|
||||||
regulator_bulk_disable(num_vregs, vreg_bulk);
|
|
||||||
|
|
||||||
qcadev->bt_power->vregs_on = false;
|
power->vregs_on = true;
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void qca_regulator_disable(struct qca_serdev *qcadev)
|
||||||
|
{
|
||||||
|
struct qca_power *power;
|
||||||
|
|
||||||
|
if (!qcadev)
|
||||||
|
return;
|
||||||
|
|
||||||
|
power = qcadev->bt_power;
|
||||||
|
|
||||||
|
/* Already disabled? */
|
||||||
|
if (!power->vregs_on)
|
||||||
|
return;
|
||||||
|
|
||||||
|
regulator_bulk_disable(power->num_vregs, power->vreg_bulk);
|
||||||
|
power->vregs_on = false;
|
||||||
|
}
|
||||||
|
|
||||||
static int qca_init_regulators(struct qca_power *qca,
|
static int qca_init_regulators(struct qca_power *qca,
|
||||||
const struct qca_vreg *vregs, size_t num_vregs)
|
const struct qca_vreg *vregs, size_t num_vregs)
|
||||||
{
|
{
|
||||||
|
|
Загрузка…
Ссылка в новой задаче