aboutsummaryrefslogtreecommitdiff
path: root/src/drivers/i2c/rt1011/chip.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/drivers/i2c/rt1011/chip.h')
-rw-r--r--src/drivers/i2c/rt1011/chip.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/drivers/i2c/rt1011/chip.h b/src/drivers/i2c/rt1011/chip.h
new file mode 100644
index 0000000000..6bbddac3fd
--- /dev/null
+++ b/src/drivers/i2c/rt1011/chip.h
@@ -0,0 +1,31 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright 2019 Google Inc.
+ *
+ * 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.
+ */
+
+/*
+ * Realtek RT1011 audio codec devicetree bindings
+ */
+
+#include <stdint.h>
+
+struct drivers_i2c_rt1011_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;
+};