summaryrefslogtreecommitdiff
path: root/src/drivers/i2c/max98390/chip.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/i2c/max98390/chip.h')
-rw-r--r--src/drivers/i2c/max98390/chip.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/drivers/i2c/max98390/chip.h b/src/drivers/i2c/max98390/chip.h
new file mode 100644
index 0000000000..26cad4c728
--- /dev/null
+++ b/src/drivers/i2c/max98390/chip.h
@@ -0,0 +1,17 @@
+/* This file is part of the coreboot project. */
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+/*
+ * MAXIM MAX98390 audio codec devicetree bindings
+ */
+
+struct drivers_i2c_max98390_config {
+ const char *name; /* ACPI Device Name */
+ const char *desc; /* Device Description */
+ unsigned int uid; /* ACPI _UID */
+
+ /* The VPD key of calibrated speaker resistance. */
+ const char *r0_calib_key;
+ /* The VPD key of temperature during speaker calibration. */
+ const char *temperature_calib_key;
+};