coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
rt1011.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <acpi/acpi_device.h>
4 #include <acpi/acpigen.h>
5 #include <console/console.h>
6 #include <device/i2c.h>
7 #include <device/device.h>
8 #include <device/path.h>
9 #include <stdint.h>
10 #include <vendorcode/google/chromeos/chromeos.h>
11 #include "chip.h"
12 
13 #define RT1011_ACPI_HID "10EC1011"
14 
15 #define RT1011_DP_INT(key, val) acpi_dp_add_integer(dp, "realtek," key, (val))
16 
17 static void rt1011_fill_ssdt(const struct device *dev)
18 {
20  const char *scope = acpi_device_scope(dev);
21  struct acpi_i2c i2c = {
22  .address = dev->path.i2c.device,
23  .mode_10bit = dev->path.i2c.mode_10bit,
24  .speed = I2C_SPEED_FAST,
25  .resource = scope,
26  };
27  struct acpi_dp *dp;
28  uint64_t r0_value, temp_value;
29 
30  if (!scope)
31  return;
32 
33  /* Device */
34  acpigen_write_scope(scope);
37  acpigen_write_name_integer("_UID", config->uid);
38  acpigen_write_name_string("_DDN", config->desc);
40 
41  /* Resources */
42  acpigen_write_name("_CRS");
46 
47  /* Device Properties */
48  if (CONFIG(CHROMEOS_DSM_CALIB)) {
49  if (get_dsm_calibration_from_key(config->r0_calib_key, &r0_value)
50  || get_dsm_calibration_from_key(config->temperature_calib_key,
51  &temp_value)) {
53  "Failed to get dsm_calib parameters from VPD"
54  " with key %s and %s\n",
55  config->r0_calib_key, config->temperature_calib_key);
56  } else {
57  dp = acpi_dp_new_table("_DSD");
58  RT1011_DP_INT("r0_calib", r0_value);
59  RT1011_DP_INT("temperature_calib", temp_value);
60  acpi_dp_write(dp);
61  printk(BIOS_INFO, "set dsm_calib properties\n");
62  }
63  }
64 
65  acpigen_pop_len(); /* Device */
66  acpigen_pop_len(); /* Scope */
67 
68  printk(BIOS_INFO, "%s: %s address 0%xh\n", acpi_device_path(dev), dev->chip_ops->name,
69  dev->path.i2c.device);
70 }
71 
72 static const char *rt1011_acpi_name(const struct device *dev)
73 {
75  static char name[5];
76 
77  if (config->name)
78  return config->name;
79 
80  snprintf(name, sizeof(name), "D%03.3X", dev->path.i2c.device);
81  return name;
82 }
83 
84 static struct device_operations rt1011_ops = {
86  .set_resources = noop_set_resources,
87  .acpi_name = rt1011_acpi_name,
88  .acpi_fill_ssdt = rt1011_fill_ssdt,
89 };
90 
91 static void rt1011_enable(struct device *dev)
92 {
94 
95  if (!config)
96  return;
97 
98  dev->ops = &rt1011_ops;
99 
100  /* Name the device as per description provided in devicetree */
101  if (config->desc)
102  dev->name = config->desc;
103 }
104 
106  CHIP_NAME("Realtek RT1011 Codec")
107  .enable_dev = rt1011_enable
108 };
const char * acpi_device_path(const struct device *dev)
Definition: device.c:144
void acpi_device_write_i2c(const struct acpi_i2c *i2c)
Definition: device.c:399
void acpi_dp_write(struct acpi_dp *table)
Definition: device.c:898
int acpi_device_status(const struct device *dev)
Definition: device.c:193
const char * acpi_device_name(const struct device *dev)
Definition: device.c:49
struct acpi_dp * acpi_dp_new_table(const char *name)
Definition: device.c:930
const char * acpi_device_scope(const struct device *dev)
Definition: device.c:158
void acpigen_pop_len(void)
Definition: acpigen.c:37
void acpigen_write_scope(const char *name)
Definition: acpigen.c:326
void acpigen_write_resourcetemplate_footer(void)
Definition: acpigen.c:1165
void acpigen_write_name_integer(const char *name, uint64_t val)
Definition: acpigen.c:170
void acpigen_write_STA(uint8_t status)
Definition: acpigen.c:783
void acpigen_write_resourcetemplate_header(void)
Definition: acpigen.c:1147
void acpigen_write_device(const char *name)
Definition: acpigen.c:769
void acpigen_write_name(const char *name)
Definition: acpigen.c:320
void acpigen_write_name_string(const char *name, const char *string)
Definition: acpigen.c:176
const char * name
Definition: mmu.c:92
#define printk(level,...)
Definition: stdlib.h:16
@ CONFIG
Definition: dsi_common.h:201
#define CHIP_NAME(X)
Definition: device.h:32
static void noop_read_resources(struct device *dev)
Standard device operations function pointers shims.
Definition: device.h:73
static void noop_set_resources(struct device *dev)
Definition: device.h:74
@ I2C_SPEED_FAST
Definition: i2c.h:45
#define BIOS_INFO
BIOS_INFO - Expected events.
Definition: loglevel.h:113
#define BIOS_ERR
BIOS_ERR - System in incomplete state.
Definition: loglevel.h:72
enum board_config config
Definition: memory.c:448
struct chip_operations drivers_i2c_rt1011_ops
Definition: rt1011.c:105
static struct device_operations rt1011_ops
Definition: rt1011.c:84
static const char * rt1011_acpi_name(const struct device *dev)
Definition: rt1011.c:72
static void rt1011_fill_ssdt(const struct device *dev)
Definition: rt1011.c:17
#define RT1011_ACPI_HID
Definition: rt1011.c:13
static void rt1011_enable(struct device *dev)
Definition: rt1011.c:91
#define RT1011_DP_INT(key, val)
Definition: rt1011.c:15
unsigned long long uint64_t
Definition: stdint.h:17
uint16_t address
Definition: acpi_device.h:304
const char * name
Definition: device.h:29
void(* read_resources)(struct device *dev)
Definition: device.h:39
struct i2c_path i2c
Definition: path.h:118
Definition: device.h:107
struct chip_operations * chip_ops
Definition: device.h:144
const char * name
Definition: device.h:145
struct device_path path
Definition: device.h:115
struct device_operations * ops
Definition: device.h:143
DEVTREE_CONST void * chip_info
Definition: device.h:164
unsigned int device
Definition: path.h:63
unsigned int mode_10bit
Definition: path.h:64
int snprintf(char *buf, size_t size, const char *fmt,...)
Note: This file is only for POSIX compatibility, and is meant to be chain-included via string....
Definition: vsprintf.c:35