blob: 3227ec5dfe6c6ac47b9b0fc5dffb169646094bd4 [file] [log] [blame]
/*
* Copyright (c) 2019 Nordic Semiconductor ASA.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <drivers/gpio.h>
#include <drivers/uart.h>
#include <device.h>
#define RESET_PIN CONFIG_BOARD_NRF52840_GPIO_RESET_PIN
/* Must be a pin from 17 to 23.
* Only those can be connected to the nRF52840.
*/
BUILD_ASSERT(RESET_PIN > 16 && RESET_PIN < 24,
"Selected pin is not connected to nRF52840");
int bt_hci_transport_setup(const struct device *h4)
{
int err;
char c;
const struct device *port;
port = device_get_binding(DT_LABEL(DT_NODELABEL(gpio0)));
if (!port) {
return -EIO;
}
/* Configure pin as output and initialize it to low. */
err = gpio_pin_configure(port, RESET_PIN, GPIO_OUTPUT_LOW);
if (err) {
return err;
}
/* Reset the nRF52840 and let it wait until the pin is
* pulled low again before running to main to ensure
* that it won't send any data until the H4 device
* is setup and ready to receive.
*/
err = gpio_pin_set(port, RESET_PIN, 1);
if (err) {
return err;
}
/* Wait for the nRF52840 peripheral to stop sending data.
*
* It is critical (!) to wait here, so that all bytes
* on the lines are received and drained correctly.
*/
k_sleep(K_MSEC(10));
/* Drain bytes */
while (uart_fifo_read(h4, &c, 1)) {
continue;
}
/* We are ready, let the nRF52840 run to main */
err = gpio_pin_set(port, RESET_PIN, 0);
if (err) {
return err;
}
return 0;
}