aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/i2c/sx9310/chip.h
diff options
context:
space:
mode:
authorEnrico Granata <egranata@chromium.org>2018-06-20 13:01:45 -0700
committerPatrick Georgi <pgeorgi@google.com>2018-06-22 09:21:02 +0000
commit76a1f49f742df6d1bde38fa36f4b06a193e6e4f5 (patch)
tree863405d8f0e1a7e2e0862d11b10ca76e5ac69861 /src/drivers/i2c/sx9310/chip.h
parent9700e91b10411d5b5b5d3ff9345573557cf24c84 (diff)
drivers/i2c: Add a driver for Semtech SX9310
This adds a new driver for the SX9310 proximity detector device. The purpose of this is to enable the device's calibration information to be stored in firmware, and then transferred over to the kernel via ACPI. This device has more than 10 individual configuration parameters, so they would not fit in the generic driver's properties table. Change-Id: Id8c434eec9fe2da731e142442503a12e88db2236 Signed-off-by: Enrico Granata <egranata@chromium.org> Reviewed-on: https://review.coreboot.org/27173 Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers/i2c/sx9310/chip.h')
-rw-r--r--src/drivers/i2c/sx9310/chip.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/drivers/i2c/sx9310/chip.h b/src/drivers/i2c/sx9310/chip.h
new file mode 100644
index 0000000000..2799f5bb99
--- /dev/null
+++ b/src/drivers/i2c/sx9310/chip.h
@@ -0,0 +1,34 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2018 Google LLC
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ */
+
+#ifndef __DRIVERS_I2C_SX9310_CHIP_H__
+#define __DRIVERS_I2C_SX9310_CHIP_H__
+
+#include <arch/acpi_device.h>
+#include <device/i2c_simple.h>
+
+#define REGISTER(NAME) uint8_t NAME
+
+struct drivers_i2c_sx9310_config {
+ const char *desc; /* Device Description */
+ unsigned int uid; /* ACPI _UID */
+ enum i2c_speed speed; /* Bus speed in Hz, default is I2C_SPEED_FAST */
+ struct acpi_irq irq; /* Interrupt */
+#include "registers.h"
+};
+
+#undef REGISTER
+
+#endif /* __DRIVERS_I2C_SX9310_CHIP_H__ */