blob: a3e6661a00011baa23cc779017354498897e2cdd [file] [log] [blame]
Rizwan Qureshi4979d762017-01-13 22:17:01 +05301/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2017 Intel Corporation.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <arch/acpi.h>
17#include <arch/acpi_device.h>
18#include <arch/acpigen.h>
19#include <console/console.h>
20#include <device/i2c.h>
21#include <device/device.h>
22#include <device/path.h>
23#include <stdint.h>
24#include <string.h>
25#include "chip.h"
26
27#define MAX98927_ACPI_NAME "MAXI"
28#define MAX98927_ACPI_HID "MX98927"
29
30static void max98927_fill_ssdt(struct device *dev)
31{
32 struct drivers_i2c_max98927_config *config = dev->chip_info;
33 const char *scope = acpi_device_scope(dev);
34 struct acpi_i2c i2c = {
35 .address = dev->path.i2c.device,
36 .mode_10bit = dev->path.i2c.mode_10bit,
37 .speed = config->bus_speed ? : I2C_SPEED_FAST,
38 .resource = scope,
39 };
40 struct acpi_dp *dp;
41
42 if (!dev->enabled || !scope)
43 return;
44
45 /* Device */
46 acpigen_write_scope(scope);
47 acpigen_write_device(acpi_device_name(dev));
48 acpigen_write_name_string("_HID", MAX98927_ACPI_HID);
49 acpigen_write_name_integer("_UID", config->uid);
50 if (config->desc)
51 acpigen_write_name_string("_DDN", config->desc);
52 acpigen_write_STA(ACPI_STATUS_DEVICE_ALL_ON);
53
54 /* Resources */
55 acpigen_write_name("_CRS");
56 acpigen_write_resourcetemplate_header();
57 acpi_device_write_i2c(&i2c);
58 acpigen_write_resourcetemplate_footer();
59
60 /* Device Properties */
61 dp = acpi_dp_new_table("_DSD");
62
63 acpi_dp_add_integer(dp, "interleave_mode", config->interleave_mode);
64
65 acpi_dp_write(dp);
66
67 acpigen_pop_len(); /* Device */
68 acpigen_pop_len(); /* Scope */
69
70 printk(BIOS_INFO, "%s: %s address 0%xh\n", acpi_device_path(dev),
71 dev->chip_ops->name, dev->path.i2c.device);
72}
73
74static const char *max98927_acpi_name(struct device *dev)
75{
76 struct drivers_i2c_max98927_config *config = dev->chip_info;
77
78 if (config->name)
79 return config->name;
80
81 return MAX98927_ACPI_NAME;
82}
83
84static struct device_operations max98927_ops = {
85 .read_resources = DEVICE_NOOP,
86 .set_resources = DEVICE_NOOP,
87 .enable_resources = DEVICE_NOOP,
88 .acpi_name = &max98927_acpi_name,
89 .acpi_fill_ssdt_generator = &max98927_fill_ssdt,
90};
91
92static void max98927_enable(struct device *dev)
93{
94 dev->ops = &max98927_ops;
95}
96
97struct chip_operations drivers_i2c_max98927_ops = {
98 CHIP_NAME("Maxim MAX98927 Codec")
99 .enable_dev = &max98927_enable
100};