|
|
|
@ -1,6 +1,6 @@
@@ -1,6 +1,6 @@
|
|
|
|
|
/****************************************************************************
|
|
|
|
|
* |
|
|
|
|
* Copyright (C) 2020 PX4 Development Team. All rights reserved. |
|
|
|
|
* Copyright (C) 2020, 2022 PX4 Development Team. All rights reserved. |
|
|
|
|
* |
|
|
|
|
* Redistribution and use in source and binary forms, with or without |
|
|
|
|
* modification, are permitted provided that the following conditions |
|
|
|
@ -35,28 +35,54 @@
@@ -35,28 +35,54 @@
|
|
|
|
|
#include <drivers/drv_sensor.h> |
|
|
|
|
#include <nuttx/spi/spi.h> |
|
|
|
|
|
|
|
|
|
constexpr px4_spi_bus_t px4_spi_buses[SPI_BUS_MAX_BUS_ITEMS] = { |
|
|
|
|
initSPIBus(SPI::Bus::SPI1, { |
|
|
|
|
initSPIDevice(DRV_IMU_DEVTYPE_ICM20649, SPI::CS{GPIO::PortI, GPIO::Pin9}, SPI::DRDY{GPIO::PortF, GPIO::Pin2}), |
|
|
|
|
}, {GPIO::PortI, GPIO::Pin11}), |
|
|
|
|
initSPIBus(SPI::Bus::SPI2, { |
|
|
|
|
initSPIDevice(DRV_IMU_DEVTYPE_ICM42688P, SPI::CS{GPIO::PortH, GPIO::Pin5}, SPI::DRDY{GPIO::PortA, GPIO::Pin10}), |
|
|
|
|
}, {GPIO::PortF, GPIO::Pin4}), |
|
|
|
|
initSPIBus(SPI::Bus::SPI3, { |
|
|
|
|
initSPIDevice(DRV_GYR_DEVTYPE_BMI088, SPI::CS{GPIO::PortI, GPIO::Pin8}, SPI::DRDY{GPIO::PortI, GPIO::Pin7}), |
|
|
|
|
initSPIDevice(DRV_ACC_DEVTYPE_BMI088, SPI::CS{GPIO::PortI, GPIO::Pin4}, SPI::DRDY{GPIO::PortI, GPIO::Pin6}), |
|
|
|
|
}, {GPIO::PortE, GPIO::Pin7}), |
|
|
|
|
// initSPIBus(SPI::Bus::SPI4, {
|
|
|
|
|
// // no devices
|
|
|
|
|
// TODO: if enabled, remove GPIO_VDD_3V3_SENSORS4_EN from board_config.h
|
|
|
|
|
// }, {GPIO::PortG, GPIO::Pin8}),
|
|
|
|
|
initSPIBus(SPI::Bus::SPI5, { |
|
|
|
|
initSPIDevice(SPIDEV_FLASH(0), SPI::CS{GPIO::PortG, GPIO::Pin7}) |
|
|
|
|
constexpr px4_spi_bus_all_hw_t px4_spi_buses_all_hw[BOARD_NUM_SPI_CFG_HW_VERSIONS] = { |
|
|
|
|
initSPIHWVersion(HW_VER_REV(0, 0), { |
|
|
|
|
initSPIBus(SPI::Bus::SPI1, { |
|
|
|
|
initSPIDevice(DRV_IMU_DEVTYPE_ICM20649, SPI::CS{GPIO::PortI, GPIO::Pin9}, SPI::DRDY{GPIO::PortF, GPIO::Pin2}), |
|
|
|
|
}, {GPIO::PortI, GPIO::Pin11}), |
|
|
|
|
initSPIBus(SPI::Bus::SPI2, { |
|
|
|
|
initSPIDevice(DRV_IMU_DEVTYPE_ICM42688P, SPI::CS{GPIO::PortH, GPIO::Pin5}, SPI::DRDY{GPIO::PortA, GPIO::Pin10}), |
|
|
|
|
}, {GPIO::PortF, GPIO::Pin4}), |
|
|
|
|
initSPIBus(SPI::Bus::SPI3, { |
|
|
|
|
initSPIDevice(DRV_GYR_DEVTYPE_BMI088, SPI::CS{GPIO::PortI, GPIO::Pin8}, SPI::DRDY{GPIO::PortI, GPIO::Pin7}), |
|
|
|
|
initSPIDevice(DRV_ACC_DEVTYPE_BMI088, SPI::CS{GPIO::PortI, GPIO::Pin4}, SPI::DRDY{GPIO::PortI, GPIO::Pin6}), |
|
|
|
|
}, {GPIO::PortE, GPIO::Pin7}), |
|
|
|
|
// initSPIBus(SPI::Bus::SPI4, {
|
|
|
|
|
// // no devices
|
|
|
|
|
// TODO: if enabled, remove GPIO_VDD_3V3_SENSORS4_EN from board_config.h
|
|
|
|
|
// }, {GPIO::PortG, GPIO::Pin8}),
|
|
|
|
|
initSPIBus(SPI::Bus::SPI5, { |
|
|
|
|
initSPIDevice(SPIDEV_FLASH(0), SPI::CS{GPIO::PortG, GPIO::Pin7}) |
|
|
|
|
}), |
|
|
|
|
initSPIBusExternal(SPI::Bus::SPI6, { |
|
|
|
|
initSPIConfigExternal(SPI::CS{GPIO::PortI, GPIO::Pin10}, SPI::DRDY{GPIO::PortD, GPIO::Pin11}), |
|
|
|
|
initSPIConfigExternal(SPI::CS{GPIO::PortA, GPIO::Pin15}, SPI::DRDY{GPIO::PortD, GPIO::Pin12}), |
|
|
|
|
}), |
|
|
|
|
}), |
|
|
|
|
initSPIBusExternal(SPI::Bus::SPI6, { |
|
|
|
|
initSPIConfigExternal(SPI::CS{GPIO::PortI, GPIO::Pin10}, SPI::DRDY{GPIO::PortD, GPIO::Pin11}), |
|
|
|
|
initSPIConfigExternal(SPI::CS{GPIO::PortA, GPIO::Pin15}, SPI::DRDY{GPIO::PortD, GPIO::Pin12}), |
|
|
|
|
|
|
|
|
|
initSPIHWVersion(HW_VER_REV(0, 3), { |
|
|
|
|
initSPIBus(SPI::Bus::SPI1, { |
|
|
|
|
initSPIDevice(DRV_IMU_DEVTYPE_ICM42670P, SPI::CS{GPIO::PortI, GPIO::Pin9}, SPI::DRDY{GPIO::PortF, GPIO::Pin2}), |
|
|
|
|
}, {GPIO::PortI, GPIO::Pin11}), |
|
|
|
|
initSPIBus(SPI::Bus::SPI2, { |
|
|
|
|
initSPIDevice(DRV_IMU_DEVTYPE_ICM42688P, SPI::CS{GPIO::PortH, GPIO::Pin5}, SPI::DRDY{GPIO::PortA, GPIO::Pin10}), |
|
|
|
|
}, {GPIO::PortF, GPIO::Pin4}), |
|
|
|
|
initSPIBus(SPI::Bus::SPI3, { |
|
|
|
|
initSPIDevice(DRV_GYR_DEVTYPE_BMI088, SPI::CS{GPIO::PortI, GPIO::Pin8}, SPI::DRDY{GPIO::PortI, GPIO::Pin7}), |
|
|
|
|
initSPIDevice(DRV_ACC_DEVTYPE_BMI088, SPI::CS{GPIO::PortI, GPIO::Pin4}, SPI::DRDY{GPIO::PortI, GPIO::Pin6}), |
|
|
|
|
}, {GPIO::PortE, GPIO::Pin7}), |
|
|
|
|
// initSPIBus(SPI::Bus::SPI4, {
|
|
|
|
|
// // no devices
|
|
|
|
|
// TODO: if enabled, remove GPIO_VDD_3V3_SENSORS4_EN from board_config.h
|
|
|
|
|
// }, {GPIO::PortG, GPIO::Pin8}),
|
|
|
|
|
initSPIBus(SPI::Bus::SPI5, { |
|
|
|
|
initSPIDevice(SPIDEV_FLASH(0), SPI::CS{GPIO::PortG, GPIO::Pin7}) |
|
|
|
|
}), |
|
|
|
|
initSPIBusExternal(SPI::Bus::SPI6, { |
|
|
|
|
initSPIConfigExternal(SPI::CS{GPIO::PortI, GPIO::Pin10}, SPI::DRDY{GPIO::PortD, GPIO::Pin11}), |
|
|
|
|
initSPIConfigExternal(SPI::CS{GPIO::PortA, GPIO::Pin15}, SPI::DRDY{GPIO::PortD, GPIO::Pin12}), |
|
|
|
|
}), |
|
|
|
|
}), |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
static constexpr bool unused = validateSPIConfig(px4_spi_buses); |
|
|
|
|
static constexpr bool unused = validateSPIConfig(px4_spi_buses_all_hw); |
|
|
|
|