Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 1 | #include <linux/pci.h> |
| 2 | #include <linux/acpi.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 3 | #include <linux/slab.h> |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 4 | #include <acpi/acpi_drivers.h> |
| 5 | #include <acpi/acpi_bus.h> |
Ben Skeggs | a6ed76d | 2010-07-12 15:33:07 +1000 | [diff] [blame] | 6 | #include <acpi/video.h> |
Dave Airlie | 8116188 | 2010-12-06 12:57:45 +1000 | [diff] [blame] | 7 | #include <acpi/acpi.h> |
| 8 | #include <linux/mxm-wmi.h> |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 9 | |
| 10 | #include "drmP.h" |
| 11 | #include "drm.h" |
| 12 | #include "drm_sarea.h" |
| 13 | #include "drm_crtc_helper.h" |
| 14 | #include "nouveau_drv.h" |
Ben Skeggs | 9458029 | 2012-07-06 12:14:00 +1000 | [diff] [blame] | 15 | #include <nouveau_drm.h> |
Ben Skeggs | a6ed76d | 2010-07-12 15:33:07 +1000 | [diff] [blame] | 16 | #include "nouveau_connector.h" |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 17 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 18 | #include <linux/vga_switcheroo.h> |
| 19 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 20 | #define NOUVEAU_DSM_LED 0x02 |
| 21 | #define NOUVEAU_DSM_LED_STATE 0x00 |
| 22 | #define NOUVEAU_DSM_LED_OFF 0x10 |
| 23 | #define NOUVEAU_DSM_LED_STAMINA 0x11 |
| 24 | #define NOUVEAU_DSM_LED_SPEED 0x12 |
| 25 | |
| 26 | #define NOUVEAU_DSM_POWER 0x03 |
| 27 | #define NOUVEAU_DSM_POWER_STATE 0x00 |
| 28 | #define NOUVEAU_DSM_POWER_SPEED 0x01 |
| 29 | #define NOUVEAU_DSM_POWER_STAMINA 0x02 |
| 30 | |
Peter Lekensteyn | 9075e85 | 2011-12-17 12:53:43 +0100 | [diff] [blame] | 31 | #define NOUVEAU_DSM_OPTIMUS_FN 0x1A |
Peter Lekensteyn | d099230 | 2011-12-17 12:54:04 +0100 | [diff] [blame] | 32 | #define NOUVEAU_DSM_OPTIMUS_ARGS 0x03000001 |
| 33 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 34 | static struct nouveau_dsm_priv { |
| 35 | bool dsm_detected; |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 36 | bool optimus_detected; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 37 | acpi_handle dhandle; |
Dave Airlie | afeb3e1 | 2010-04-07 13:55:09 +1000 | [diff] [blame] | 38 | acpi_handle rom_handle; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 39 | } nouveau_dsm_priv; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 40 | |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 41 | #define NOUVEAU_DSM_HAS_MUX 0x1 |
| 42 | #define NOUVEAU_DSM_HAS_OPT 0x2 |
| 43 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 44 | static const char nouveau_dsm_muid[] = { |
| 45 | 0xA0, 0xA0, 0x95, 0x9D, 0x60, 0x00, 0x48, 0x4D, |
| 46 | 0xB3, 0x4D, 0x7E, 0x5F, 0xEA, 0x12, 0x9F, 0xD4, |
| 47 | }; |
| 48 | |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 49 | static const char nouveau_op_dsm_muid[] = { |
| 50 | 0xF8, 0xD8, 0x86, 0xA4, 0xDA, 0x0B, 0x1B, 0x47, |
| 51 | 0xA7, 0x2B, 0x60, 0x42, 0xA6, 0xB5, 0xBE, 0xE0, |
| 52 | }; |
| 53 | |
| 54 | static int nouveau_optimus_dsm(acpi_handle handle, int func, int arg, uint32_t *result) |
| 55 | { |
| 56 | struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 57 | struct acpi_object_list input; |
| 58 | union acpi_object params[4]; |
| 59 | union acpi_object *obj; |
Peter Lekensteyn | d099230 | 2011-12-17 12:54:04 +0100 | [diff] [blame] | 60 | int i, err; |
| 61 | char args_buff[4]; |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 62 | |
| 63 | input.count = 4; |
| 64 | input.pointer = params; |
| 65 | params[0].type = ACPI_TYPE_BUFFER; |
| 66 | params[0].buffer.length = sizeof(nouveau_op_dsm_muid); |
| 67 | params[0].buffer.pointer = (char *)nouveau_op_dsm_muid; |
| 68 | params[1].type = ACPI_TYPE_INTEGER; |
| 69 | params[1].integer.value = 0x00000100; |
| 70 | params[2].type = ACPI_TYPE_INTEGER; |
| 71 | params[2].integer.value = func; |
| 72 | params[3].type = ACPI_TYPE_BUFFER; |
Peter Lekensteyn | d099230 | 2011-12-17 12:54:04 +0100 | [diff] [blame] | 73 | params[3].buffer.length = 4; |
| 74 | /* ACPI is little endian, AABBCCDD becomes {DD,CC,BB,AA} */ |
| 75 | for (i = 0; i < 4; i++) |
| 76 | args_buff[i] = (arg >> i * 8) & 0xFF; |
| 77 | params[3].buffer.pointer = args_buff; |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 78 | |
| 79 | err = acpi_evaluate_object(handle, "_DSM", &input, &output); |
| 80 | if (err) { |
| 81 | printk(KERN_INFO "failed to evaluate _DSM: %d\n", err); |
| 82 | return err; |
| 83 | } |
| 84 | |
| 85 | obj = (union acpi_object *)output.pointer; |
| 86 | |
| 87 | if (obj->type == ACPI_TYPE_INTEGER) |
| 88 | if (obj->integer.value == 0x80000002) { |
| 89 | return -ENODEV; |
| 90 | } |
| 91 | |
| 92 | if (obj->type == ACPI_TYPE_BUFFER) { |
| 93 | if (obj->buffer.length == 4 && result) { |
| 94 | *result = 0; |
| 95 | *result |= obj->buffer.pointer[0]; |
| 96 | *result |= (obj->buffer.pointer[1] << 8); |
| 97 | *result |= (obj->buffer.pointer[2] << 16); |
| 98 | *result |= (obj->buffer.pointer[3] << 24); |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | kfree(output.pointer); |
| 103 | return 0; |
| 104 | } |
| 105 | |
Francisco Jerez | 6e86e04 | 2010-07-03 18:36:39 +0200 | [diff] [blame] | 106 | static int nouveau_dsm(acpi_handle handle, int func, int arg, uint32_t *result) |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 107 | { |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 108 | struct acpi_buffer output = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 109 | struct acpi_object_list input; |
| 110 | union acpi_object params[4]; |
| 111 | union acpi_object *obj; |
| 112 | int err; |
| 113 | |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 114 | input.count = 4; |
| 115 | input.pointer = params; |
| 116 | params[0].type = ACPI_TYPE_BUFFER; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 117 | params[0].buffer.length = sizeof(nouveau_dsm_muid); |
| 118 | params[0].buffer.pointer = (char *)nouveau_dsm_muid; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 119 | params[1].type = ACPI_TYPE_INTEGER; |
| 120 | params[1].integer.value = 0x00000102; |
| 121 | params[2].type = ACPI_TYPE_INTEGER; |
| 122 | params[2].integer.value = func; |
| 123 | params[3].type = ACPI_TYPE_INTEGER; |
| 124 | params[3].integer.value = arg; |
| 125 | |
| 126 | err = acpi_evaluate_object(handle, "_DSM", &input, &output); |
| 127 | if (err) { |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 128 | printk(KERN_INFO "failed to evaluate _DSM: %d\n", err); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 129 | return err; |
| 130 | } |
| 131 | |
| 132 | obj = (union acpi_object *)output.pointer; |
| 133 | |
| 134 | if (obj->type == ACPI_TYPE_INTEGER) |
| 135 | if (obj->integer.value == 0x80000002) |
| 136 | return -ENODEV; |
| 137 | |
| 138 | if (obj->type == ACPI_TYPE_BUFFER) { |
| 139 | if (obj->buffer.length == 4 && result) { |
| 140 | *result = 0; |
| 141 | *result |= obj->buffer.pointer[0]; |
| 142 | *result |= (obj->buffer.pointer[1] << 8); |
| 143 | *result |= (obj->buffer.pointer[2] << 16); |
| 144 | *result |= (obj->buffer.pointer[3] << 24); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | kfree(output.pointer); |
| 149 | return 0; |
| 150 | } |
| 151 | |
Peter Lekensteyn | 9075e85 | 2011-12-17 12:53:43 +0100 | [diff] [blame] | 152 | /* Returns 1 if a DSM function is usable and 0 otherwise */ |
| 153 | static int nouveau_test_dsm(acpi_handle test_handle, |
| 154 | int (*dsm_func)(acpi_handle, int, int, uint32_t *), |
| 155 | int sfnc) |
| 156 | { |
| 157 | u32 result = 0; |
| 158 | |
| 159 | /* Function 0 returns a Buffer containing available functions. The args |
| 160 | * parameter is ignored for function 0, so just put 0 in it */ |
| 161 | if (dsm_func(test_handle, 0, 0, &result)) |
| 162 | return 0; |
| 163 | |
| 164 | /* ACPI Spec v4 9.14.1: if bit 0 is zero, no function is supported. If |
| 165 | * the n-th bit is enabled, function n is supported */ |
| 166 | return result & 1 && result & (1 << sfnc); |
| 167 | } |
| 168 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 169 | static int nouveau_dsm_switch_mux(acpi_handle handle, int mux_id) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 170 | { |
Dave Airlie | 000703f | 2011-05-09 11:40:25 +1000 | [diff] [blame] | 171 | mxm_wmi_call_mxmx(mux_id == NOUVEAU_DSM_LED_STAMINA ? MXM_MXDS_ADAPTER_IGD : MXM_MXDS_ADAPTER_0); |
Dave Airlie | 8116188 | 2010-12-06 12:57:45 +1000 | [diff] [blame] | 172 | mxm_wmi_call_mxds(mux_id == NOUVEAU_DSM_LED_STAMINA ? MXM_MXDS_ADAPTER_IGD : MXM_MXDS_ADAPTER_0); |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 173 | return nouveau_dsm(handle, NOUVEAU_DSM_LED, mux_id, NULL); |
| 174 | } |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 175 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 176 | static int nouveau_dsm_set_discrete_state(acpi_handle handle, enum vga_switcheroo_state state) |
| 177 | { |
| 178 | int arg; |
| 179 | if (state == VGA_SWITCHEROO_ON) |
| 180 | arg = NOUVEAU_DSM_POWER_SPEED; |
| 181 | else |
| 182 | arg = NOUVEAU_DSM_POWER_STAMINA; |
| 183 | nouveau_dsm(handle, NOUVEAU_DSM_POWER, arg, NULL); |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 184 | return 0; |
| 185 | } |
| 186 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 187 | static int nouveau_dsm_switchto(enum vga_switcheroo_client_id id) |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 188 | { |
Peter Lekensteyn | d099230 | 2011-12-17 12:54:04 +0100 | [diff] [blame] | 189 | /* perhaps the _DSM functions are mutually exclusive, but prepare for |
| 190 | * the future */ |
| 191 | if (!nouveau_dsm_priv.dsm_detected && nouveau_dsm_priv.optimus_detected) |
| 192 | return 0; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 193 | if (id == VGA_SWITCHEROO_IGD) |
Dave Airlie | fc5ea29 | 2010-05-31 17:10:52 +1000 | [diff] [blame] | 194 | return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_STAMINA); |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 195 | else |
Dave Airlie | fc5ea29 | 2010-05-31 17:10:52 +1000 | [diff] [blame] | 196 | return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_SPEED); |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 197 | } |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 198 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 199 | static int nouveau_dsm_power_state(enum vga_switcheroo_client_id id, |
| 200 | enum vga_switcheroo_state state) |
| 201 | { |
| 202 | if (id == VGA_SWITCHEROO_IGD) |
| 203 | return 0; |
| 204 | |
Peter Lekensteyn | d099230 | 2011-12-17 12:54:04 +0100 | [diff] [blame] | 205 | /* Optimus laptops have the card already disabled in |
| 206 | * nouveau_switcheroo_set_state */ |
| 207 | if (!nouveau_dsm_priv.dsm_detected && nouveau_dsm_priv.optimus_detected) |
| 208 | return 0; |
| 209 | |
Dave Airlie | fc5ea29 | 2010-05-31 17:10:52 +1000 | [diff] [blame] | 210 | return nouveau_dsm_set_discrete_state(nouveau_dsm_priv.dhandle, state); |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 211 | } |
| 212 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 213 | static int nouveau_dsm_get_client_id(struct pci_dev *pdev) |
| 214 | { |
Dave Airlie | d1fbd923 | 2010-12-06 12:56:44 +1000 | [diff] [blame] | 215 | /* easy option one - intel vendor ID means Integrated */ |
| 216 | if (pdev->vendor == PCI_VENDOR_ID_INTEL) |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 217 | return VGA_SWITCHEROO_IGD; |
Dave Airlie | d1fbd923 | 2010-12-06 12:56:44 +1000 | [diff] [blame] | 218 | |
| 219 | /* is this device on Bus 0? - this may need improving */ |
| 220 | if (pdev->bus->number == 0) |
| 221 | return VGA_SWITCHEROO_IGD; |
| 222 | |
| 223 | return VGA_SWITCHEROO_DIS; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | static struct vga_switcheroo_handler nouveau_dsm_handler = { |
| 227 | .switchto = nouveau_dsm_switchto, |
| 228 | .power_state = nouveau_dsm_power_state, |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 229 | .get_client_id = nouveau_dsm_get_client_id, |
| 230 | }; |
| 231 | |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 232 | static int nouveau_dsm_pci_probe(struct pci_dev *pdev) |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 233 | { |
| 234 | acpi_handle dhandle, nvidia_handle; |
| 235 | acpi_status status; |
Peter Lekensteyn | 9075e85 | 2011-12-17 12:53:43 +0100 | [diff] [blame] | 236 | int retval = 0; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 237 | |
| 238 | dhandle = DEVICE_ACPI_HANDLE(&pdev->dev); |
| 239 | if (!dhandle) |
| 240 | return false; |
Dave Airlie | afeb3e1 | 2010-04-07 13:55:09 +1000 | [diff] [blame] | 241 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 242 | status = acpi_get_handle(dhandle, "_DSM", &nvidia_handle); |
| 243 | if (ACPI_FAILURE(status)) { |
| 244 | return false; |
| 245 | } |
| 246 | |
Peter Lekensteyn | 9075e85 | 2011-12-17 12:53:43 +0100 | [diff] [blame] | 247 | if (nouveau_test_dsm(dhandle, nouveau_dsm, NOUVEAU_DSM_POWER)) |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 248 | retval |= NOUVEAU_DSM_HAS_MUX; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 249 | |
Peter Lekensteyn | 9075e85 | 2011-12-17 12:53:43 +0100 | [diff] [blame] | 250 | if (nouveau_test_dsm(dhandle, nouveau_optimus_dsm, |
| 251 | NOUVEAU_DSM_OPTIMUS_FN)) |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 252 | retval |= NOUVEAU_DSM_HAS_OPT; |
| 253 | |
| 254 | if (retval) |
| 255 | nouveau_dsm_priv.dhandle = dhandle; |
| 256 | |
| 257 | return retval; |
Ben Skeggs | 6ee7386 | 2009-12-11 19:24:15 +1000 | [diff] [blame] | 258 | } |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 259 | |
| 260 | static bool nouveau_dsm_detect(void) |
| 261 | { |
| 262 | char acpi_method_name[255] = { 0 }; |
| 263 | struct acpi_buffer buffer = {sizeof(acpi_method_name), acpi_method_name}; |
| 264 | struct pci_dev *pdev = NULL; |
| 265 | int has_dsm = 0; |
Dave Airlie | addde4e | 2012-05-02 20:26:24 +0100 | [diff] [blame] | 266 | int has_optimus = 0; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 267 | int vga_count = 0; |
Dave Airlie | 8116188 | 2010-12-06 12:57:45 +1000 | [diff] [blame] | 268 | bool guid_valid; |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 269 | int retval; |
| 270 | bool ret = false; |
Dave Airlie | 8116188 | 2010-12-06 12:57:45 +1000 | [diff] [blame] | 271 | |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 272 | /* lookup the MXM GUID */ |
Dave Airlie | 8116188 | 2010-12-06 12:57:45 +1000 | [diff] [blame] | 273 | guid_valid = mxm_wmi_supported(); |
Dave Airlie | 8116188 | 2010-12-06 12:57:45 +1000 | [diff] [blame] | 274 | |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 275 | if (guid_valid) |
| 276 | printk("MXM: GUID detected in BIOS\n"); |
Dave Airlie | afeb3e1 | 2010-04-07 13:55:09 +1000 | [diff] [blame] | 277 | |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 278 | /* now do DSM detection */ |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 279 | while ((pdev = pci_get_class(PCI_CLASS_DISPLAY_VGA << 8, pdev)) != NULL) { |
| 280 | vga_count++; |
| 281 | |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 282 | retval = nouveau_dsm_pci_probe(pdev); |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 283 | if (retval & NOUVEAU_DSM_HAS_MUX) |
| 284 | has_dsm |= 1; |
| 285 | if (retval & NOUVEAU_DSM_HAS_OPT) |
| 286 | has_optimus = 1; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 287 | } |
| 288 | |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 289 | if (vga_count == 2 && has_dsm && guid_valid) { |
Peter Lekensteyn | d099230 | 2011-12-17 12:54:04 +0100 | [diff] [blame] | 290 | acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME, |
| 291 | &buffer); |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 292 | printk(KERN_INFO "VGA switcheroo: detected DSM switching method %s handle\n", |
Peter Lekensteyn | d099230 | 2011-12-17 12:54:04 +0100 | [diff] [blame] | 293 | acpi_method_name); |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 294 | nouveau_dsm_priv.dsm_detected = true; |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 295 | ret = true; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 296 | } |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 297 | |
Peter Lekensteyn | d099230 | 2011-12-17 12:54:04 +0100 | [diff] [blame] | 298 | if (has_optimus == 1) { |
| 299 | acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME, |
| 300 | &buffer); |
| 301 | printk(KERN_INFO "VGA switcheroo: detected Optimus DSM method %s handle\n", |
| 302 | acpi_method_name); |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 303 | nouveau_dsm_priv.optimus_detected = true; |
Peter Lekensteyn | d099230 | 2011-12-17 12:54:04 +0100 | [diff] [blame] | 304 | ret = true; |
| 305 | } |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 306 | |
| 307 | return ret; |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | void nouveau_register_dsm_handler(void) |
| 311 | { |
| 312 | bool r; |
| 313 | |
| 314 | r = nouveau_dsm_detect(); |
| 315 | if (!r) |
| 316 | return; |
| 317 | |
| 318 | vga_switcheroo_register_handler(&nouveau_dsm_handler); |
| 319 | } |
| 320 | |
Peter Lekensteyn | d099230 | 2011-12-17 12:54:04 +0100 | [diff] [blame] | 321 | /* Must be called for Optimus models before the card can be turned off */ |
| 322 | void nouveau_switcheroo_optimus_dsm(void) |
| 323 | { |
| 324 | u32 result = 0; |
| 325 | if (!nouveau_dsm_priv.optimus_detected) |
| 326 | return; |
| 327 | |
| 328 | nouveau_optimus_dsm(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_OPTIMUS_FN, |
| 329 | NOUVEAU_DSM_OPTIMUS_ARGS, &result); |
| 330 | } |
| 331 | |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 332 | void nouveau_unregister_dsm_handler(void) |
| 333 | { |
Andreas Heider | 2f3787a | 2012-05-21 00:14:50 +0100 | [diff] [blame] | 334 | if (nouveau_dsm_priv.optimus_detected || nouveau_dsm_priv.dsm_detected) |
| 335 | vga_switcheroo_unregister_handler(); |
Dave Airlie | 6a9ee8a | 2010-02-01 15:38:10 +1000 | [diff] [blame] | 336 | } |
Dave Airlie | afeb3e1 | 2010-04-07 13:55:09 +1000 | [diff] [blame] | 337 | |
| 338 | /* retrieve the ROM in 4k blocks */ |
| 339 | static int nouveau_rom_call(acpi_handle rom_handle, uint8_t *bios, |
| 340 | int offset, int len) |
| 341 | { |
| 342 | acpi_status status; |
| 343 | union acpi_object rom_arg_elements[2], *obj; |
| 344 | struct acpi_object_list rom_arg; |
| 345 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL}; |
| 346 | |
| 347 | rom_arg.count = 2; |
| 348 | rom_arg.pointer = &rom_arg_elements[0]; |
| 349 | |
| 350 | rom_arg_elements[0].type = ACPI_TYPE_INTEGER; |
| 351 | rom_arg_elements[0].integer.value = offset; |
| 352 | |
| 353 | rom_arg_elements[1].type = ACPI_TYPE_INTEGER; |
| 354 | rom_arg_elements[1].integer.value = len; |
| 355 | |
| 356 | status = acpi_evaluate_object(rom_handle, NULL, &rom_arg, &buffer); |
| 357 | if (ACPI_FAILURE(status)) { |
| 358 | printk(KERN_INFO "failed to evaluate ROM got %s\n", acpi_format_exception(status)); |
| 359 | return -ENODEV; |
| 360 | } |
| 361 | obj = (union acpi_object *)buffer.pointer; |
| 362 | memcpy(bios+offset, obj->buffer.pointer, len); |
| 363 | kfree(buffer.pointer); |
| 364 | return len; |
| 365 | } |
| 366 | |
| 367 | bool nouveau_acpi_rom_supported(struct pci_dev *pdev) |
| 368 | { |
| 369 | acpi_status status; |
| 370 | acpi_handle dhandle, rom_handle; |
| 371 | |
Dave Airlie | f19467c | 2011-03-22 14:10:27 +1000 | [diff] [blame] | 372 | if (!nouveau_dsm_priv.dsm_detected && !nouveau_dsm_priv.optimus_detected) |
Dave Airlie | afeb3e1 | 2010-04-07 13:55:09 +1000 | [diff] [blame] | 373 | return false; |
| 374 | |
| 375 | dhandle = DEVICE_ACPI_HANDLE(&pdev->dev); |
| 376 | if (!dhandle) |
| 377 | return false; |
| 378 | |
| 379 | status = acpi_get_handle(dhandle, "_ROM", &rom_handle); |
| 380 | if (ACPI_FAILURE(status)) |
| 381 | return false; |
| 382 | |
| 383 | nouveau_dsm_priv.rom_handle = rom_handle; |
| 384 | return true; |
| 385 | } |
| 386 | |
| 387 | int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len) |
| 388 | { |
| 389 | return nouveau_rom_call(nouveau_dsm_priv.rom_handle, bios, offset, len); |
| 390 | } |
Ben Skeggs | a6ed76d | 2010-07-12 15:33:07 +1000 | [diff] [blame] | 391 | |
| 392 | int |
| 393 | nouveau_acpi_edid(struct drm_device *dev, struct drm_connector *connector) |
| 394 | { |
| 395 | struct nouveau_connector *nv_connector = nouveau_connector(connector); |
| 396 | struct acpi_device *acpidev; |
| 397 | acpi_handle handle; |
| 398 | int type, ret; |
| 399 | void *edid; |
| 400 | |
| 401 | switch (connector->connector_type) { |
| 402 | case DRM_MODE_CONNECTOR_LVDS: |
| 403 | case DRM_MODE_CONNECTOR_eDP: |
| 404 | type = ACPI_VIDEO_DISPLAY_LCD; |
| 405 | break; |
| 406 | default: |
| 407 | return -EINVAL; |
| 408 | } |
| 409 | |
| 410 | handle = DEVICE_ACPI_HANDLE(&dev->pdev->dev); |
| 411 | if (!handle) |
| 412 | return -ENODEV; |
| 413 | |
| 414 | ret = acpi_bus_get_device(handle, &acpidev); |
| 415 | if (ret) |
| 416 | return -ENODEV; |
| 417 | |
| 418 | ret = acpi_video_get_edid(acpidev, type, -1, &edid); |
| 419 | if (ret < 0) |
| 420 | return ret; |
| 421 | |
Ben Skeggs | 24b102d | 2010-09-10 15:33:11 +1000 | [diff] [blame] | 422 | nv_connector->edid = kmemdup(edid, EDID_LENGTH, GFP_KERNEL); |
Ben Skeggs | a6ed76d | 2010-07-12 15:33:07 +1000 | [diff] [blame] | 423 | return 0; |
| 424 | } |