mb/google/brya: Create rull variant
[coreboot2.git] / src / drivers / nxp / uwb / chip.h
blob8233b254b4dd5307fcf90b5447e269acdb0e114a
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef __NXP_UWB_CHIP_H__
4 #define __NXP_UWB_CHIP_H__
6 #include <acpi/acpi_device.h>
8 struct drivers_nxp_uwb_config {
9 /* ACPI Device Name */
10 const char *name;
12 /* Device Description */
13 const char *desc;
15 /* ACPI _UID */
16 unsigned int uid;
18 /* Bus speed in Hz (default 1MHz) */
19 unsigned int speed;
21 /* Use GPIO based interrupt instead of PIRQ */
22 struct acpi_gpio irq_gpio;
23 struct acpi_gpio ce_gpio;
24 struct acpi_gpio ri_gpio;
27 #endif /* __NXP_UWB_CHIP_H__ */