summaryrefslogtreecommitdiff
path: root/zephyr/shim/chip/npcx/espi.c
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/shim/chip/npcx/espi.c')
-rw-r--r--zephyr/shim/chip/npcx/espi.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/zephyr/shim/chip/npcx/espi.c b/zephyr/shim/chip/npcx/espi.c
index 163db6007f..7668359686 100644
--- a/zephyr/shim/chip/npcx/espi.c
+++ b/zephyr/shim/chip/npcx/espi.c
@@ -6,35 +6,73 @@
#include <device.h>
#include <sys/util.h>
+#include "cros_version.h"
+#include "drivers/espi.h"
#include "soc_espi.h"
#include "zephyr_espi_shim.h"
bool is_acpi_command(uint32_t data)
{
+#if IS_ZEPHYR_VERSION(2, 6)
+ struct espi_evt_data_acpi *acpi = (struct espi_evt_data_acpi *)&data;
+
+ return acpi->type;
+#elif IS_ZEPHYR_VERSION(2, 5)
return (data >> NPCX_ACPI_TYPE_POS) & 0x01;
+#endif
}
uint32_t get_acpi_value(uint32_t data)
{
+#if IS_ZEPHYR_VERSION(2, 6)
+ struct espi_evt_data_acpi *acpi = (struct espi_evt_data_acpi *)&data;
+
+ return acpi->data;
+#elif IS_ZEPHYR_VERSION(2, 5)
return (data >> NPCX_ACPI_DATA_POS) & 0xff;
+#endif
}
bool is_8042_ibf(uint32_t data)
{
+#if IS_ZEPHYR_VERSION(2, 6)
+ struct espi_evt_data_kbc *kbc = (struct espi_evt_data_kbc *)&data;
+
+ return kbc->evt & HOST_KBC_EVT_IBF;
+#elif IS_ZEPHYR_VERSION(2, 5)
return (data >> NPCX_8042_EVT_POS) & NPCX_8042_EVT_IBF;
+#endif
}
bool is_8042_obe(uint32_t data)
{
+#if IS_ZEPHYR_VERSION(2, 6)
+ struct espi_evt_data_kbc *kbc = (struct espi_evt_data_kbc *)&data;
+
+ return kbc->evt & HOST_KBC_EVT_OBE;
+#elif IS_ZEPHYR_VERSION(2, 5)
return (data >> NPCX_8042_EVT_POS) & NPCX_8042_EVT_OBE;
+#endif
}
uint32_t get_8042_type(uint32_t data)
{
+#if IS_ZEPHYR_VERSION(2, 6)
+ struct espi_evt_data_kbc *kbc = (struct espi_evt_data_kbc *)&data;
+
+ return kbc->type;
+#elif IS_ZEPHYR_VERSION(2, 5)
return (data >> NPCX_8042_TYPE_POS) & 0xFF;
+#endif
}
uint32_t get_8042_data(uint32_t data)
{
+#if IS_ZEPHYR_VERSION(2, 6)
+ struct espi_evt_data_kbc *kbc = (struct espi_evt_data_kbc *)&data;
+
+ return kbc->data;
+#elif IS_ZEPHYR_VERSION(2, 5)
return (data >> NPCX_8042_DATA_POS) & 0xFF;
+#endif
}