blob: 79df6267e5dd30bf62446f57fa7ec61c5f397d81 [file] [log] [blame]
Furquan Shaikhc82aabc2020-04-23 13:59:00 -07001/* SPDX-License-Identifier: GPL-2.0-or-later */
Furquan Shaikhc82aabc2020-04-23 13:59:00 -07002
Furquan Shaikh76cedd22020-05-02 10:24:23 -07003#include <acpi/acpi_device.h>
Aaron Durbin77a062e2020-08-20 10:15:06 -06004#include <acpi/acpigen.h>
Furquan Shaikhc82aabc2020-04-23 13:59:00 -07005#include <device/pci.h>
6#include <device/pci_ids.h>
Nikolai Vyssotski95675d92021-02-09 13:01:07 -06007#include <console/console.h>
8#include <fsp/graphics.h>
Nikolai Vyssotskiad68e692021-01-15 11:39:33 -06009#include <soc/intel/common/vbt.h>
Nikolai Vyssotskib649d6a2021-03-11 19:15:03 -060010#include <timestamp.h>
Furquan Shaikhc82aabc2020-04-23 13:59:00 -070011
Aaron Durbin77a062e2020-08-20 10:15:06 -060012#define ATIF_FUNCTION_VERIFY_INTERFACE 0x0
13struct atif_verify_interface_output {
14 uint16_t size; /* Size of this object, including size field */
15 uint16_t version;
16 uint32_t supported_notifications;
17 uint32_t supported_functions; /* Bit n set if function n+1 supported. */
18};
19
20#define ATIF_FUNCTION_QUERY_BRIGHTNESS_TRANSFER_CHARACTERISTICS 0x10
21# define ATIF_QBTC_REQUEST_LCD1 0
22/* error codes */
23# define ATIF_QBTC_ERROR_CODE_SUCCESS 0
24# define ATIF_QBTC_ERROR_CODE_FAILURE 1
25# define ATIF_QBTC_ERROR_CODE_DEVICE_NOT_SUPPORTED 2
26struct atif_brightness_input {
27 uint16_t size;
28 /* ATIF doc indicates this field is a word, but the kernel drivers uses a byte. */
29 uint8_t requested_display;
30};
31struct atif_brightness_output {
32 uint16_t size; /* Size of this object, including size field. */
33 uint16_t flags; /* Currently all reserved. */
34 uint8_t error_code;
35 /* default brightness fields currently ignored by Linux driver. */
36 uint8_t default_brightness_ac; /* Percentage brightness when connected to AC. */
37 uint8_t default_brightness_dc; /* Percentage brightness when connected to DC. */
38 /* The following 2 fields are the only ones honored by Linux driver currently. */
39 uint8_t min_input_signal_level; /* 0-255 corresponding to 0% */
40 uint8_t max_input_signal_level; /* 0-255 corresponding to 100% */
41 /* Array of data points consisting of:
42 * { uint8_t luminance_level; (percent)
43 * uint8_t input_signal_level; (0-255 in value) }
44 * Linux ignores these fields so no support currently. */
45 uint8_t count_data_points; /* Count of data points. */
46};
47
48static void generate_atif(const struct device *dev)
49{
50 struct atif_verify_interface_output verify_output = {
51 .size = sizeof(verify_output),
52 .version = 1,
53 .supported_functions =
54 BIT(ATIF_FUNCTION_QUERY_BRIGHTNESS_TRANSFER_CHARACTERISTICS - 1),
55 };
56 struct atif_brightness_output brightness_error = {
57 .size = sizeof(brightness_error),
58 .error_code = ATIF_QBTC_ERROR_CODE_DEVICE_NOT_SUPPORTED,
59 };
60 struct atif_brightness_output brightness_out = {
61 .size = sizeof(brightness_out),
62 .error_code = ATIF_QBTC_ERROR_CODE_SUCCESS,
63 .min_input_signal_level = 0,
64 .max_input_signal_level = 255,
65 };
66
67 /* Scope (\_SB.PCI0.PBRA.IGFX) */
68 acpigen_write_scope(acpi_device_path(dev));
69 /* Method (ATIF, 2, NotSerialized) */
70 acpigen_write_method("ATIF", 2);
71 /* ToInteger (Arg0, Local0) */
72 acpigen_write_to_integer(ARG0_OP, LOCAL0_OP);
73
74 /* If ((Local0 == Zero)) */
75 acpigen_write_if_lequal_op_int(LOCAL0_OP, ATIF_FUNCTION_VERIFY_INTERFACE);
76 /* Return (Buffer (0x0C) { ... } */
77 acpigen_write_return_byte_buffer((uint8_t *)(void *)&verify_output,
78 sizeof(verify_output));
Aaron Durbin77a062e2020-08-20 10:15:06 -060079
80 /* ElseIf ((Local0 == 0x10)) */
81 acpigen_write_else();
82 acpigen_write_if_lequal_op_int(LOCAL0_OP,
83 ATIF_FUNCTION_QUERY_BRIGHTNESS_TRANSFER_CHARACTERISTICS);
84 /* CreateByteField (Arg1, 0x02, DISP) */
85 acpigen_write_create_byte_field(ARG1_OP,
86 offsetof(struct atif_brightness_input, requested_display), "DISP");
87 /* ToInteger (DISP, Local1) */
88 acpigen_write_to_integer_from_namestring("DISP", LOCAL1_OP);
89 /* If ((Local1 == Zero)) */
90 acpigen_write_if_lequal_op_int(LOCAL1_OP, ATIF_QBTC_REQUEST_LCD1);
91 /* Return (Buffer (0x0A) { ... } */
92 acpigen_write_return_byte_buffer((uint8_t *)(void *)&brightness_out,
93 sizeof(brightness_out));
Aaron Durbin77a062e2020-08-20 10:15:06 -060094 /* Else */
95 acpigen_write_else();
96 /* Return (Buffer (0x0A) */
97 acpigen_write_return_byte_buffer((uint8_t *)(void *)&brightness_error,
98 sizeof(brightness_error));
99 acpigen_pop_len(); /* else */
100
101 acpigen_pop_len(); /* if (LEqual(Local0, 0x10) */
102 acpigen_pop_len(); /* else */
103
104 acpigen_pop_len(); /* Method */
105 acpigen_pop_len(); /* Scope */
106}
107
Raul E Rangelda5e07e2020-04-29 15:55:33 -0600108static void graphics_fill_ssdt(const struct device *dev)
Furquan Shaikhf939df72020-04-23 14:13:02 -0700109{
110 acpi_device_write_pci_dev(dev);
Raul E Rangela7659eb2021-03-16 13:20:23 -0600111
112 /* Use the VFCT copy when using GOP */
113 if (!CONFIG(RUN_FSP_GOP))
114 pci_rom_ssdt(dev);
115
Aaron Durbin77a062e2020-08-20 10:15:06 -0600116 if (CONFIG(SOC_AMD_COMMON_BLOCK_GRAPHICS_ATIF))
117 generate_atif(dev);
Furquan Shaikhf939df72020-04-23 14:13:02 -0700118}
119
Furquan Shaikhc82aabc2020-04-23 13:59:00 -0700120static const char *graphics_acpi_name(const struct device *dev)
121{
122 return "IGFX";
123}
124
Nikolai Vyssotskiad68e692021-01-15 11:39:33 -0600125/*
126 * Even though AMD does not need VBT we still need to implement the
127 * vbt_get() function to not break the build with GOP driver enabled
128 * (see fsps_return_value_handler() in fsp2_0/silicon_init.c
129 */
130void *vbt_get(void)
131{
132 return NULL;
133}
134
Nikolai Vyssotskib649d6a2021-03-11 19:15:03 -0600135static void graphics_set_resources(struct device *const dev)
136{
137 struct rom_header *rom, *ram;
138
139 pci_dev_set_resources(dev);
140
141 if (!CONFIG(RUN_FSP_GOP))
142 return;
143
144 timestamp_add_now(TS_OPROM_INITIALIZE);
145 rom = pci_rom_probe(dev);
146 if (rom == NULL)
147 return;
148 ram = pci_rom_load(dev, rom);
149 if (ram == NULL)
150 return;
151 timestamp_add_now(TS_OPROM_COPY_END);
152}
153
Nikolai Vyssotski95675d92021-02-09 13:01:07 -0600154static void graphics_dev_init(struct device *const dev)
155{
156 if (CONFIG(RUN_FSP_GOP)) {
157 struct resource *res = probe_resource(dev, PCI_BASE_ADDRESS_0);
158
159 if (res && res->base)
160 fsp_report_framebuffer_info(res->base);
161 else
162 printk(BIOS_ERR, "%s: Unable to find resource for %s\n",
163 __func__, dev_path(dev));
164 }
165
166 /* Initialize PCI device, load/execute BIOS Option ROM */
167 pci_dev_init(dev);
168}
169
Furquan Shaikhc82aabc2020-04-23 13:59:00 -0700170static const struct device_operations graphics_ops = {
171 .read_resources = pci_dev_read_resources,
Nikolai Vyssotskib649d6a2021-03-11 19:15:03 -0600172 .set_resources = graphics_set_resources,
Furquan Shaikhc82aabc2020-04-23 13:59:00 -0700173 .enable_resources = pci_dev_enable_resources,
Nikolai Vyssotski95675d92021-02-09 13:01:07 -0600174 .init = graphics_dev_init,
Furquan Shaikhc82aabc2020-04-23 13:59:00 -0700175 .ops_pci = &pci_dev_ops_pci,
176 .write_acpi_tables = pci_rom_write_acpi_tables,
Furquan Shaikhf939df72020-04-23 14:13:02 -0700177 .acpi_fill_ssdt = graphics_fill_ssdt,
Furquan Shaikhc82aabc2020-04-23 13:59:00 -0700178 .acpi_name = graphics_acpi_name,
179};
180
181static const unsigned short pci_device_ids[] = {
Felix Held2b48a602020-11-18 13:01:00 +0100182 PCI_DEVICE_ID_ATI_FAM17H_MODEL18H_GPU,
Felix Helde6dd5dc2021-07-16 22:36:21 +0200183 PCI_DEVICE_ID_ATI_FAM19H_MODEL51H_GPU_CEZANNE,
184 PCI_DEVICE_ID_ATI_FAM19H_MODEL51H_GPU_BARCELO,
Furquan Shaikhc82aabc2020-04-23 13:59:00 -0700185 0,
186};
187
188static const struct pci_driver graphics_driver __pci_driver = {
189 .ops = &graphics_ops,
190 .vendor = PCI_VENDOR_ID_ATI,
191 .devices = pci_device_ids,
192};