blob: 37a886432597957987d13b5e6873804633242a32 [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>
8#include <device/path.h>
N, Harshapriyac14a99f2017-11-27 15:38:53 -08009#include "chip.h"
10
11#define MAX98373_ACPI_NAME "MAXI"
12#define MAX98373_ACPI_HID "MX98373"
13
Furquan Shaikh7536a392020-04-24 21:59:21 -070014static void max98373_fill_ssdt(const struct device *dev)
N, Harshapriyac14a99f2017-11-27 15:38:53 -080015{
16 struct drivers_i2c_max98373_config *config = dev->chip_info;
17 const char *scope = acpi_device_scope(dev);
18 struct acpi_i2c i2c = {
19 .address = dev->path.i2c.device,
20 .mode_10bit = dev->path.i2c.mode_10bit,
Furquan Shaikhdc8679c2019-02-13 22:37:26 -080021 .speed = config->bus_speed ? : I2C_SPEED_FAST,
N, Harshapriyac14a99f2017-11-27 15:38:53 -080022 .resource = scope,
23 };
24 struct acpi_dp *dp;
25
Karthikeyan Ramasubramaniand1c0f952020-11-02 16:26:52 -070026 if (!scope) {
Caveh Jalalic8e4dcb2020-04-21 05:00:48 -070027 printk(BIOS_ERR, "%s: dev not enabled\n", __func__);
N, Harshapriyac14a99f2017-11-27 15:38:53 -080028 return;
29 }
30
31 /* Device */
32 acpigen_write_scope(scope);
33 acpigen_write_device(acpi_device_name(dev));
34 acpigen_write_name_string("_HID", MAX98373_ACPI_HID);
35 acpigen_write_name_integer("_UID", config->uid);
36 if (config->desc)
37 acpigen_write_name_string("_DDN", config->desc);
Hung-Te Linb4be50c2018-09-10 10:55:49 +080038 acpigen_write_STA(acpi_device_status(dev));
N, Harshapriyac14a99f2017-11-27 15:38:53 -080039
40 /* Resources */
41 acpigen_write_name("_CRS");
42 acpigen_write_resourcetemplate_header();
43 acpi_device_write_i2c(&i2c);
44 acpigen_write_resourcetemplate_footer();
45
46 /* Device Properties */
47 dp = acpi_dp_new_table("_DSD");
48
Sathyanarayana Nujellaadb176b2018-05-24 23:46:51 -070049 if (config->interleave_mode)
50 acpi_dp_add_integer(dp, "maxim,interleave_mode",
51 config->interleave_mode);
52 acpi_dp_add_integer(dp, "maxim,vmon-slot-no", config->vmon_slot_no);
53 acpi_dp_add_integer(dp, "maxim,imon-slot-no", config->imon_slot_no);
N, Harshapriyac14a99f2017-11-27 15:38:53 -080054
55 acpi_dp_write(dp);
56
57 acpigen_pop_len(); /* Device */
58 acpigen_pop_len(); /* Scope */
59
60 printk(BIOS_INFO, "%s: %s address 0%xh\n", acpi_device_path(dev),
61 dev->chip_ops->name, dev->path.i2c.device);
62}
63
64static const char *max98373_acpi_name(const struct device *dev)
65{
66 struct drivers_i2c_max98373_config *config = dev->chip_info;
67
68 if (config->name)
69 return config->name;
70
71 return MAX98373_ACPI_NAME;
72}
73
74static struct device_operations max98373_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +020075 .read_resources = noop_read_resources,
76 .set_resources = noop_set_resources,
Nico Huber68680dd2020-03-31 17:34:52 +020077 .acpi_name = max98373_acpi_name,
78 .acpi_fill_ssdt = max98373_fill_ssdt,
N, Harshapriyac14a99f2017-11-27 15:38:53 -080079};
80
81static void max98373_enable(struct device *dev)
82{
Naresh G Solanki69e9e712018-06-04 17:45:19 +053083 struct drivers_i2c_max98373_config *config = dev->chip_info;
84
N, Harshapriyac14a99f2017-11-27 15:38:53 -080085 dev->ops = &max98373_ops;
Naresh G Solanki69e9e712018-06-04 17:45:19 +053086
87 if (config && config->desc) {
88 dev->name = config->desc;
89 }
N, Harshapriyac14a99f2017-11-27 15:38:53 -080090}
91
92struct chip_operations drivers_i2c_max98373_ops = {
Nicholas Sudsgaardbfb11be2024-01-30 09:53:46 +090093 .name = "Maxim MAX98373 Codec",
Elyes HAOUAS2aa3b162018-11-27 17:02:10 +010094 .enable_dev = max98373_enable
N, Harshapriyac14a99f2017-11-27 15:38:53 -080095};