blob: 272cf7831902a1a3599651481b8efbd91630b938 [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.h>
4#include <acpi/acpi_device.h>
5#include <acpi/acpigen.h>
Duncan Laurie6d5873d2017-08-07 17:43:26 -07006#include <console/console.h>
7#include <device/i2c.h>
8#include <device/device.h>
9#include <device/path.h>
Duncan Laurie6d5873d2017-08-07 17:43:26 -070010#include "chip.h"
11
12#define RT5663_ACPI_NAME "RT53"
13#define RT5663_ACPI_HID "10EC5663"
14
15#define RT5663_DP_INT(key, val) \
16 acpi_dp_add_integer(dp, "realtek," key, (val))
17
Furquan Shaikh7536a392020-04-24 21:59:21 -070018static void rt5663_fill_ssdt(const struct device *dev)
Duncan Laurie6d5873d2017-08-07 17:43:26 -070019{
20 struct drivers_i2c_rt5663_config *config = dev->chip_info;
21 const char *scope = acpi_device_scope(dev);
22 struct acpi_i2c i2c = {
23 .address = dev->path.i2c.device,
24 .mode_10bit = dev->path.i2c.mode_10bit,
25 .speed = config->bus_speed ? : I2C_SPEED_FAST,
26 .resource = scope,
27 };
28 struct acpi_dp *dp;
29
30 if (!dev->enabled || !scope)
31 return;
32
33 /* Device */
34 acpigen_write_scope(scope);
35 acpigen_write_device(acpi_device_name(dev));
36 acpigen_write_name_string("_HID", RT5663_ACPI_HID);
37 acpigen_write_name_integer("_UID", config->uid);
38 acpigen_write_name_string("_DDN", dev->chip_ops->name);
Hung-Te Linb4be50c2018-09-10 10:55:49 +080039 acpigen_write_STA(acpi_device_status(dev));
Duncan Laurie6d5873d2017-08-07 17:43:26 -070040
41 /* Resources */
42 acpigen_write_name("_CRS");
43 acpigen_write_resourcetemplate_header();
44 acpi_device_write_i2c(&i2c);
45 /* Allow either GpioInt() or Interrupt() */
46 if (config->irq_gpio.pin_count)
47 acpi_device_write_gpio(&config->irq_gpio);
48 else
49 acpi_device_write_interrupt(&config->irq);
50 acpigen_write_resourcetemplate_footer();
51
52 /* Device Properties */
53 dp = acpi_dp_new_table("_DSD");
54 if (config->irq_gpio.pin_count)
55 acpi_dp_add_gpio(dp, "irq-gpios", acpi_device_path(dev), 0, 0,
Furquan Shaikhd2d5e442020-07-01 01:37:13 -070056 config->irq_gpio.active_low);
Duncan Laurie6d5873d2017-08-07 17:43:26 -070057 RT5663_DP_INT("dc_offset_l_manual", config->dc_offset_l_manual);
58 RT5663_DP_INT("dc_offset_r_manual", config->dc_offset_r_manual);
59 RT5663_DP_INT("dc_offset_l_manual_mic", config->dc_offset_l_manual_mic);
60 RT5663_DP_INT("dc_offset_r_manual_mic", config->dc_offset_r_manual_mic);
61 acpi_dp_write(dp);
62
63 acpigen_pop_len(); /* Device */
64 acpigen_pop_len(); /* Scope */
65
66 printk(BIOS_INFO, "%s: %s address 0%xh\n", acpi_device_path(dev),
67 dev->chip_ops->name, dev->path.i2c.device);
68}
69
Aaron Durbinaa090cb2017-09-13 16:01:52 -060070static const char *rt5663_acpi_name(const struct device *dev)
Duncan Laurie6d5873d2017-08-07 17:43:26 -070071{
72 return RT5663_ACPI_NAME;
73}
74
75static struct device_operations rt5663_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +020076 .read_resources = noop_read_resources,
77 .set_resources = noop_set_resources,
Nico Huber68680dd2020-03-31 17:34:52 +020078 .acpi_name = rt5663_acpi_name,
79 .acpi_fill_ssdt = rt5663_fill_ssdt,
Duncan Laurie6d5873d2017-08-07 17:43:26 -070080};
81
82static void rt5663_enable(struct device *dev)
83{
84 dev->ops = &rt5663_ops;
85}
86
87struct chip_operations drivers_i2c_rt5663_ops = {
88 CHIP_NAME("Realtek RT5663 Codec")
Elyes HAOUAS2aa3b162018-11-27 17:02:10 +010089 .enable_dev = rt5663_enable
Duncan Laurie6d5873d2017-08-07 17:43:26 -070090};