blob: 1035a7c5d9950149641bd012af678bb80cd81198 [file] [log] [blame]
Angel Pons8a3453f2020-04-02 23:48:19 +02001/* SPDX-License-Identifier: GPL-2.0-only */
N, Harshapriyac14a99f2017-11-27 15:38:53 -08002
Furquan Shaikh76cedd22020-05-02 10:24:23 -07003#include <acpi/acpi_device.h>
4#include <acpi/acpigen.h>
N, Harshapriyac14a99f2017-11-27 15:38:53 -08005#include <console/console.h>
6#include <device/i2c_simple.h>
7#include <device/device.h>
N, Harshapriyac14a99f2017-11-27 15:38:53 -08008#include "chip.h"
9
10#define MAX98373_ACPI_NAME "MAXI"
11#define MAX98373_ACPI_HID "MX98373"
12
Furquan Shaikh7536a392020-04-24 21:59:21 -070013static void max98373_fill_ssdt(const struct device *dev)
N, Harshapriyac14a99f2017-11-27 15:38:53 -080014{
15 struct drivers_i2c_max98373_config *config = dev->chip_info;
16 const char *scope = acpi_device_scope(dev);
17 struct acpi_i2c i2c = {
18 .address = dev->path.i2c.device,
19 .mode_10bit = dev->path.i2c.mode_10bit,
Furquan Shaikhdc8679c2019-02-13 22:37:26 -080020 .speed = config->bus_speed ? : I2C_SPEED_FAST,
N, Harshapriyac14a99f2017-11-27 15:38:53 -080021 .resource = scope,
22 };
23 struct acpi_dp *dp;
24
Karthikeyan Ramasubramaniand1c0f952020-11-02 16:26:52 -070025 if (!scope) {
Caveh Jalalic8e4dcb2020-04-21 05:00:48 -070026 printk(BIOS_ERR, "%s: dev not enabled\n", __func__);
N, Harshapriyac14a99f2017-11-27 15:38:53 -080027 return;
28 }
29
30 /* Device */
31 acpigen_write_scope(scope);
32 acpigen_write_device(acpi_device_name(dev));
33 acpigen_write_name_string("_HID", MAX98373_ACPI_HID);
34 acpigen_write_name_integer("_UID", config->uid);
35 if (config->desc)
36 acpigen_write_name_string("_DDN", config->desc);
Hung-Te Linb4be50c2018-09-10 10:55:49 +080037 acpigen_write_STA(acpi_device_status(dev));
N, Harshapriyac14a99f2017-11-27 15:38:53 -080038
39 /* Resources */
40 acpigen_write_name("_CRS");
41 acpigen_write_resourcetemplate_header();
42 acpi_device_write_i2c(&i2c);
43 acpigen_write_resourcetemplate_footer();
44
45 /* Device Properties */
46 dp = acpi_dp_new_table("_DSD");
47
Sathyanarayana Nujellaadb176b2018-05-24 23:46:51 -070048 if (config->interleave_mode)
49 acpi_dp_add_integer(dp, "maxim,interleave_mode",
50 config->interleave_mode);
51 acpi_dp_add_integer(dp, "maxim,vmon-slot-no", config->vmon_slot_no);
52 acpi_dp_add_integer(dp, "maxim,imon-slot-no", config->imon_slot_no);
N, Harshapriyac14a99f2017-11-27 15:38:53 -080053
54 acpi_dp_write(dp);
55
56 acpigen_pop_len(); /* Device */
57 acpigen_pop_len(); /* Scope */
58
59 printk(BIOS_INFO, "%s: %s address 0%xh\n", acpi_device_path(dev),
60 dev->chip_ops->name, dev->path.i2c.device);
61}
62
63static const char *max98373_acpi_name(const struct device *dev)
64{
65 struct drivers_i2c_max98373_config *config = dev->chip_info;
66
67 if (config->name)
68 return config->name;
69
70 return MAX98373_ACPI_NAME;
71}
72
73static struct device_operations max98373_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +020074 .read_resources = noop_read_resources,
75 .set_resources = noop_set_resources,
Nico Huber68680dd2020-03-31 17:34:52 +020076 .acpi_name = max98373_acpi_name,
77 .acpi_fill_ssdt = max98373_fill_ssdt,
N, Harshapriyac14a99f2017-11-27 15:38:53 -080078};
79
80static void max98373_enable(struct device *dev)
81{
Naresh G Solanki69e9e712018-06-04 17:45:19 +053082 struct drivers_i2c_max98373_config *config = dev->chip_info;
83
N, Harshapriyac14a99f2017-11-27 15:38:53 -080084 dev->ops = &max98373_ops;
Naresh G Solanki69e9e712018-06-04 17:45:19 +053085
86 if (config && config->desc) {
87 dev->name = config->desc;
88 }
N, Harshapriyac14a99f2017-11-27 15:38:53 -080089}
90
91struct chip_operations drivers_i2c_max98373_ops = {
Nicholas Sudsgaardbfb11be2024-01-30 09:53:46 +090092 .name = "Maxim MAX98373 Codec",
Elyes HAOUAS2aa3b162018-11-27 17:02:10 +010093 .enable_dev = max98373_enable
N, Harshapriyac14a99f2017-11-27 15:38:53 -080094};