blob: bcbe0ff72138b63723f95d7f83ba51bc762956cb [file] [log] [blame]
Angel Pons8a3453f2020-04-02 23:48:19 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Duncan Laurie6d5873d2017-08-07 17:43:26 -07002
Furquan Shaikh76cedd22020-05-02 10:24:23 -07003#include <acpi/acpi_device.h>
4#include <acpi/acpigen.h>
Duncan Laurie6d5873d2017-08-07 17:43:26 -07005#include <console/console.h>
6#include <device/i2c.h>
7#include <device/device.h>
Duncan Laurie6d5873d2017-08-07 17:43:26 -07008#include "chip.h"
9
10#define RT5663_ACPI_NAME "RT53"
11#define RT5663_ACPI_HID "10EC5663"
12
13#define RT5663_DP_INT(key, val) \
14 acpi_dp_add_integer(dp, "realtek," key, (val))
15
Furquan Shaikh7536a392020-04-24 21:59:21 -070016static void rt5663_fill_ssdt(const struct device *dev)
Duncan Laurie6d5873d2017-08-07 17:43:26 -070017{
18 struct drivers_i2c_rt5663_config *config = dev->chip_info;
19 const char *scope = acpi_device_scope(dev);
20 struct acpi_i2c i2c = {
21 .address = dev->path.i2c.device,
22 .mode_10bit = dev->path.i2c.mode_10bit,
23 .speed = config->bus_speed ? : I2C_SPEED_FAST,
24 .resource = scope,
25 };
26 struct acpi_dp *dp;
27
Karthikeyan Ramasubramaniand1c0f952020-11-02 16:26:52 -070028 if (!scope)
Duncan Laurie6d5873d2017-08-07 17:43:26 -070029 return;
30
31 /* Device */
32 acpigen_write_scope(scope);
33 acpigen_write_device(acpi_device_name(dev));
34 acpigen_write_name_string("_HID", RT5663_ACPI_HID);
35 acpigen_write_name_integer("_UID", config->uid);
36 acpigen_write_name_string("_DDN", dev->chip_ops->name);
Hung-Te Linb4be50c2018-09-10 10:55:49 +080037 acpigen_write_STA(acpi_device_status(dev));
Duncan Laurie6d5873d2017-08-07 17:43:26 -070038
39 /* Resources */
40 acpigen_write_name("_CRS");
41 acpigen_write_resourcetemplate_header();
42 acpi_device_write_i2c(&i2c);
43 /* Allow either GpioInt() or Interrupt() */
44 if (config->irq_gpio.pin_count)
45 acpi_device_write_gpio(&config->irq_gpio);
46 else
47 acpi_device_write_interrupt(&config->irq);
48 acpigen_write_resourcetemplate_footer();
49
50 /* Device Properties */
51 dp = acpi_dp_new_table("_DSD");
52 if (config->irq_gpio.pin_count)
53 acpi_dp_add_gpio(dp, "irq-gpios", acpi_device_path(dev), 0, 0,
Furquan Shaikhd2d5e442020-07-01 01:37:13 -070054 config->irq_gpio.active_low);
Duncan Laurie6d5873d2017-08-07 17:43:26 -070055 RT5663_DP_INT("dc_offset_l_manual", config->dc_offset_l_manual);
56 RT5663_DP_INT("dc_offset_r_manual", config->dc_offset_r_manual);
57 RT5663_DP_INT("dc_offset_l_manual_mic", config->dc_offset_l_manual_mic);
58 RT5663_DP_INT("dc_offset_r_manual_mic", config->dc_offset_r_manual_mic);
59 acpi_dp_write(dp);
60
61 acpigen_pop_len(); /* Device */
62 acpigen_pop_len(); /* Scope */
63
64 printk(BIOS_INFO, "%s: %s address 0%xh\n", acpi_device_path(dev),
65 dev->chip_ops->name, dev->path.i2c.device);
66}
67
Aaron Durbinaa090cb2017-09-13 16:01:52 -060068static const char *rt5663_acpi_name(const struct device *dev)
Duncan Laurie6d5873d2017-08-07 17:43:26 -070069{
70 return RT5663_ACPI_NAME;
71}
72
73static struct device_operations rt5663_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 = rt5663_acpi_name,
77 .acpi_fill_ssdt = rt5663_fill_ssdt,
Duncan Laurie6d5873d2017-08-07 17:43:26 -070078};
79
80static void rt5663_enable(struct device *dev)
81{
82 dev->ops = &rt5663_ops;
83}
84
85struct chip_operations drivers_i2c_rt5663_ops = {
Nicholas Sudsgaardbfb11be2024-01-30 09:53:46 +090086 .name = "Realtek RT5663 Codec",
Elyes HAOUAS2aa3b162018-11-27 17:02:10 +010087 .enable_dev = rt5663_enable
Duncan Laurie6d5873d2017-08-07 17:43:26 -070088};