12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028 |
- #define pr_fmt(fmt) "ACPI: utils: " fmt
- #include <linux/kernel.h>
- #include <linux/module.h>
- #include <linux/slab.h>
- #include <linux/init.h>
- #include <linux/types.h>
- #include <linux/hardirq.h>
- #include <linux/acpi.h>
- #include <linux/dynamic_debug.h>
- #include "internal.h"
- #include "sleep.h"
- static void acpi_util_eval_error(acpi_handle h, acpi_string p, acpi_status s)
- {
- acpi_handle_debug(h, "Evaluate [%s]: %s\n", p, acpi_format_exception(s));
- }
- acpi_status
- acpi_extract_package(union acpi_object *package,
- struct acpi_buffer *format, struct acpi_buffer *buffer)
- {
- u32 size_required = 0;
- u32 tail_offset = 0;
- char *format_string = NULL;
- u32 format_count = 0;
- u32 i = 0;
- u8 *head = NULL;
- u8 *tail = NULL;
- if (!package || (package->type != ACPI_TYPE_PACKAGE)
- || (package->package.count < 1)) {
- pr_debug("Invalid package argument\n");
- return AE_BAD_PARAMETER;
- }
- if (!format || !format->pointer || (format->length < 1)) {
- pr_debug("Invalid format argument\n");
- return AE_BAD_PARAMETER;
- }
- if (!buffer) {
- pr_debug("Invalid buffer argument\n");
- return AE_BAD_PARAMETER;
- }
- format_count = (format->length / sizeof(char)) - 1;
- if (format_count > package->package.count) {
- pr_debug("Format specifies more objects [%d] than present [%d]\n",
- format_count, package->package.count);
- return AE_BAD_DATA;
- }
- format_string = format->pointer;
-
- for (i = 0; i < format_count; i++) {
- union acpi_object *element = &(package->package.elements[i]);
- switch (element->type) {
- case ACPI_TYPE_INTEGER:
- switch (format_string[i]) {
- case 'N':
- size_required += sizeof(u64);
- tail_offset += sizeof(u64);
- break;
- case 'S':
- size_required +=
- sizeof(char *) + sizeof(u64) +
- sizeof(char);
- tail_offset += sizeof(char *);
- break;
- default:
- pr_debug("Invalid package element [%d]: got number, expected [%c]\n",
- i, format_string[i]);
- return AE_BAD_DATA;
- }
- break;
- case ACPI_TYPE_STRING:
- case ACPI_TYPE_BUFFER:
- switch (format_string[i]) {
- case 'S':
- size_required +=
- sizeof(char *) +
- (element->string.length * sizeof(char)) +
- sizeof(char);
- tail_offset += sizeof(char *);
- break;
- case 'B':
- size_required +=
- sizeof(u8 *) + element->buffer.length;
- tail_offset += sizeof(u8 *);
- break;
- default:
- pr_debug("Invalid package element [%d] got string/buffer, expected [%c]\n",
- i, format_string[i]);
- return AE_BAD_DATA;
- }
- break;
- case ACPI_TYPE_LOCAL_REFERENCE:
- switch (format_string[i]) {
- case 'R':
- size_required += sizeof(void *);
- tail_offset += sizeof(void *);
- break;
- default:
- pr_debug("Invalid package element [%d] got reference, expected [%c]\n",
- i, format_string[i]);
- return AE_BAD_DATA;
- }
- break;
- case ACPI_TYPE_PACKAGE:
- default:
- pr_debug("Unsupported element at index=%d\n", i);
-
- return AE_SUPPORT;
- }
- }
-
- if (buffer->length == ACPI_ALLOCATE_BUFFER) {
- buffer->pointer = ACPI_ALLOCATE_ZEROED(size_required);
- if (!buffer->pointer)
- return AE_NO_MEMORY;
- buffer->length = size_required;
- } else {
- if (buffer->length < size_required) {
- buffer->length = size_required;
- return AE_BUFFER_OVERFLOW;
- } else if (buffer->length != size_required ||
- !buffer->pointer) {
- return AE_BAD_PARAMETER;
- }
- }
- head = buffer->pointer;
- tail = buffer->pointer + tail_offset;
-
- for (i = 0; i < format_count; i++) {
- u8 **pointer = NULL;
- union acpi_object *element = &(package->package.elements[i]);
- switch (element->type) {
- case ACPI_TYPE_INTEGER:
- switch (format_string[i]) {
- case 'N':
- *((u64 *) head) =
- element->integer.value;
- head += sizeof(u64);
- break;
- case 'S':
- pointer = (u8 **) head;
- *pointer = tail;
- *((u64 *) tail) =
- element->integer.value;
- head += sizeof(u64 *);
- tail += sizeof(u64);
-
- *tail = (char)0;
- tail += sizeof(char);
- break;
- default:
-
- break;
- }
- break;
- case ACPI_TYPE_STRING:
- case ACPI_TYPE_BUFFER:
- switch (format_string[i]) {
- case 'S':
- pointer = (u8 **) head;
- *pointer = tail;
- memcpy(tail, element->string.pointer,
- element->string.length);
- head += sizeof(char *);
- tail += element->string.length * sizeof(char);
-
- *tail = (char)0;
- tail += sizeof(char);
- break;
- case 'B':
- pointer = (u8 **) head;
- *pointer = tail;
- memcpy(tail, element->buffer.pointer,
- element->buffer.length);
- head += sizeof(u8 *);
- tail += element->buffer.length;
- break;
- default:
-
- break;
- }
- break;
- case ACPI_TYPE_LOCAL_REFERENCE:
- switch (format_string[i]) {
- case 'R':
- *(void **)head =
- (void *)element->reference.handle;
- head += sizeof(void *);
- break;
- default:
-
- break;
- }
- break;
- case ACPI_TYPE_PACKAGE:
-
- default:
-
- break;
- }
- }
- return AE_OK;
- }
- EXPORT_SYMBOL(acpi_extract_package);
- acpi_status
- acpi_evaluate_integer(acpi_handle handle,
- acpi_string pathname,
- struct acpi_object_list *arguments, unsigned long long *data)
- {
- acpi_status status = AE_OK;
- union acpi_object element;
- struct acpi_buffer buffer = { 0, NULL };
- if (!data)
- return AE_BAD_PARAMETER;
- buffer.length = sizeof(union acpi_object);
- buffer.pointer = &element;
- status = acpi_evaluate_object(handle, pathname, arguments, &buffer);
- if (ACPI_FAILURE(status)) {
- acpi_util_eval_error(handle, pathname, status);
- return status;
- }
- if (element.type != ACPI_TYPE_INTEGER) {
- acpi_util_eval_error(handle, pathname, AE_BAD_DATA);
- return AE_BAD_DATA;
- }
- *data = element.integer.value;
- acpi_handle_debug(handle, "Return value [%llu]\n", *data);
- return AE_OK;
- }
- EXPORT_SYMBOL(acpi_evaluate_integer);
- int acpi_get_local_address(acpi_handle handle, u32 *addr)
- {
- unsigned long long adr;
- acpi_status status;
- status = acpi_evaluate_integer(handle, METHOD_NAME__ADR, NULL, &adr);
- if (ACPI_FAILURE(status))
- return -ENODATA;
- *addr = (u32)adr;
- return 0;
- }
- EXPORT_SYMBOL(acpi_get_local_address);
- #define ACPI_MAX_SUB_BUF_SIZE 9
- const char *acpi_get_subsystem_id(acpi_handle handle)
- {
- struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
- union acpi_object *obj;
- acpi_status status;
- const char *sub;
- size_t len;
- status = acpi_evaluate_object(handle, METHOD_NAME__SUB, NULL, &buffer);
- if (ACPI_FAILURE(status)) {
- acpi_handle_debug(handle, "Reading ACPI _SUB failed: %#x\n", status);
- return ERR_PTR(-ENODATA);
- }
- obj = buffer.pointer;
- if (obj->type == ACPI_TYPE_STRING) {
- len = strlen(obj->string.pointer);
- if (len < ACPI_MAX_SUB_BUF_SIZE && len > 0) {
- sub = kstrdup(obj->string.pointer, GFP_KERNEL);
- if (!sub)
- sub = ERR_PTR(-ENOMEM);
- } else {
- acpi_handle_err(handle, "ACPI _SUB Length %zu is Invalid\n", len);
- sub = ERR_PTR(-ENODATA);
- }
- } else {
- acpi_handle_warn(handle, "Warning ACPI _SUB did not return a string\n");
- sub = ERR_PTR(-ENODATA);
- }
- acpi_os_free(buffer.pointer);
- return sub;
- }
- EXPORT_SYMBOL_GPL(acpi_get_subsystem_id);
- acpi_status
- acpi_evaluate_reference(acpi_handle handle,
- acpi_string pathname,
- struct acpi_object_list *arguments,
- struct acpi_handle_list *list)
- {
- acpi_status status = AE_OK;
- union acpi_object *package = NULL;
- union acpi_object *element = NULL;
- struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
- u32 i = 0;
- if (!list) {
- return AE_BAD_PARAMETER;
- }
-
- status = acpi_evaluate_object(handle, pathname, arguments, &buffer);
- if (ACPI_FAILURE(status))
- goto end;
- package = buffer.pointer;
- if ((buffer.length == 0) || !package) {
- status = AE_BAD_DATA;
- acpi_util_eval_error(handle, pathname, status);
- goto end;
- }
- if (package->type != ACPI_TYPE_PACKAGE) {
- status = AE_BAD_DATA;
- acpi_util_eval_error(handle, pathname, status);
- goto end;
- }
- if (!package->package.count) {
- status = AE_BAD_DATA;
- acpi_util_eval_error(handle, pathname, status);
- goto end;
- }
- if (package->package.count > ACPI_MAX_HANDLES) {
- kfree(package);
- return AE_NO_MEMORY;
- }
- list->count = package->package.count;
-
- for (i = 0; i < list->count; i++) {
- element = &(package->package.elements[i]);
- if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
- status = AE_BAD_DATA;
- acpi_util_eval_error(handle, pathname, status);
- break;
- }
- if (!element->reference.handle) {
- status = AE_NULL_ENTRY;
- acpi_util_eval_error(handle, pathname, status);
- break;
- }
-
- list->handles[i] = element->reference.handle;
- acpi_handle_debug(list->handles[i], "Found in reference list\n");
- }
- end:
- if (ACPI_FAILURE(status)) {
- list->count = 0;
-
- }
- kfree(buffer.pointer);
- return status;
- }
- EXPORT_SYMBOL(acpi_evaluate_reference);
- acpi_status
- acpi_get_physical_device_location(acpi_handle handle, struct acpi_pld_info **pld)
- {
- acpi_status status;
- struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
- union acpi_object *output;
- status = acpi_evaluate_object(handle, "_PLD", NULL, &buffer);
- if (ACPI_FAILURE(status))
- return status;
- output = buffer.pointer;
- if (!output || output->type != ACPI_TYPE_PACKAGE
- || !output->package.count
- || output->package.elements[0].type != ACPI_TYPE_BUFFER
- || output->package.elements[0].buffer.length < ACPI_PLD_REV1_BUFFER_SIZE) {
- status = AE_TYPE;
- goto out;
- }
- status = acpi_decode_pld_buffer(
- output->package.elements[0].buffer.pointer,
- output->package.elements[0].buffer.length,
- pld);
- out:
- kfree(buffer.pointer);
- return status;
- }
- EXPORT_SYMBOL(acpi_get_physical_device_location);
- acpi_status
- acpi_evaluate_ost(acpi_handle handle, u32 source_event, u32 status_code,
- struct acpi_buffer *status_buf)
- {
- union acpi_object params[3] = {
- {.type = ACPI_TYPE_INTEGER,},
- {.type = ACPI_TYPE_INTEGER,},
- {.type = ACPI_TYPE_BUFFER,}
- };
- struct acpi_object_list arg_list = {3, params};
- params[0].integer.value = source_event;
- params[1].integer.value = status_code;
- if (status_buf != NULL) {
- params[2].buffer.pointer = status_buf->pointer;
- params[2].buffer.length = status_buf->length;
- } else {
- params[2].buffer.pointer = NULL;
- params[2].buffer.length = 0;
- }
- return acpi_evaluate_object(handle, "_OST", &arg_list, NULL);
- }
- EXPORT_SYMBOL(acpi_evaluate_ost);
- static char *acpi_handle_path(acpi_handle handle)
- {
- struct acpi_buffer buffer = {
- .length = ACPI_ALLOCATE_BUFFER,
- .pointer = NULL
- };
- if (in_interrupt() ||
- acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer) != AE_OK)
- return NULL;
- return buffer.pointer;
- }
- void
- acpi_handle_printk(const char *level, acpi_handle handle, const char *fmt, ...)
- {
- struct va_format vaf;
- va_list args;
- const char *path;
- va_start(args, fmt);
- vaf.fmt = fmt;
- vaf.va = &args;
- path = acpi_handle_path(handle);
- printk("%sACPI: %s: %pV", level, path ? path : "<n/a>" , &vaf);
- va_end(args);
- kfree(path);
- }
- EXPORT_SYMBOL(acpi_handle_printk);
- #if defined(CONFIG_DYNAMIC_DEBUG)
- void
- __acpi_handle_debug(struct _ddebug *descriptor, acpi_handle handle,
- const char *fmt, ...)
- {
- struct va_format vaf;
- va_list args;
- const char *path;
- va_start(args, fmt);
- vaf.fmt = fmt;
- vaf.va = &args;
- path = acpi_handle_path(handle);
- __dynamic_pr_debug(descriptor, "ACPI: %s: %pV", path ? path : "<n/a>", &vaf);
- va_end(args);
- kfree(path);
- }
- EXPORT_SYMBOL(__acpi_handle_debug);
- #endif
- void acpi_evaluation_failure_warn(acpi_handle handle, const char *name,
- acpi_status status)
- {
- acpi_handle_warn(handle, "%s evaluation failed: %s\n", name,
- acpi_format_exception(status));
- }
- EXPORT_SYMBOL_GPL(acpi_evaluation_failure_warn);
- bool acpi_has_method(acpi_handle handle, char *name)
- {
- acpi_handle tmp;
- return ACPI_SUCCESS(acpi_get_handle(handle, name, &tmp));
- }
- EXPORT_SYMBOL(acpi_has_method);
- acpi_status acpi_execute_simple_method(acpi_handle handle, char *method,
- u64 arg)
- {
- union acpi_object obj = { .type = ACPI_TYPE_INTEGER };
- struct acpi_object_list arg_list = { .count = 1, .pointer = &obj, };
- obj.integer.value = arg;
- return acpi_evaluate_object(handle, method, &arg_list, NULL);
- }
- EXPORT_SYMBOL(acpi_execute_simple_method);
- acpi_status acpi_evaluate_ej0(acpi_handle handle)
- {
- acpi_status status;
- status = acpi_execute_simple_method(handle, "_EJ0", 1);
- if (status == AE_NOT_FOUND)
- acpi_handle_warn(handle, "No _EJ0 support for device\n");
- else if (ACPI_FAILURE(status))
- acpi_handle_warn(handle, "Eject failed (0x%x)\n", status);
- return status;
- }
- acpi_status acpi_evaluate_lck(acpi_handle handle, int lock)
- {
- acpi_status status;
- status = acpi_execute_simple_method(handle, "_LCK", !!lock);
- if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
- if (lock)
- acpi_handle_warn(handle,
- "Locking device failed (0x%x)\n", status);
- else
- acpi_handle_warn(handle,
- "Unlocking device failed (0x%x)\n", status);
- }
- return status;
- }
- acpi_status acpi_evaluate_reg(acpi_handle handle, u8 space_id, u32 function)
- {
- struct acpi_object_list arg_list;
- union acpi_object params[2];
- params[0].type = ACPI_TYPE_INTEGER;
- params[0].integer.value = space_id;
- params[1].type = ACPI_TYPE_INTEGER;
- params[1].integer.value = function;
- arg_list.count = 2;
- arg_list.pointer = params;
- return acpi_evaluate_object(handle, "_REG", &arg_list, NULL);
- }
- EXPORT_SYMBOL(acpi_evaluate_reg);
- union acpi_object *
- acpi_evaluate_dsm(acpi_handle handle, const guid_t *guid, u64 rev, u64 func,
- union acpi_object *argv4)
- {
- acpi_status ret;
- struct acpi_buffer buf = {ACPI_ALLOCATE_BUFFER, NULL};
- union acpi_object params[4];
- struct acpi_object_list input = {
- .count = 4,
- .pointer = params,
- };
- params[0].type = ACPI_TYPE_BUFFER;
- params[0].buffer.length = 16;
- params[0].buffer.pointer = (u8 *)guid;
- params[1].type = ACPI_TYPE_INTEGER;
- params[1].integer.value = rev;
- params[2].type = ACPI_TYPE_INTEGER;
- params[2].integer.value = func;
- if (argv4) {
- params[3] = *argv4;
- } else {
- params[3].type = ACPI_TYPE_PACKAGE;
- params[3].package.count = 0;
- params[3].package.elements = NULL;
- }
- ret = acpi_evaluate_object(handle, "_DSM", &input, &buf);
- if (ACPI_SUCCESS(ret))
- return (union acpi_object *)buf.pointer;
- if (ret != AE_NOT_FOUND)
- acpi_handle_warn(handle,
- "failed to evaluate _DSM %pUb (0x%x)\n", guid, ret);
- return NULL;
- }
- EXPORT_SYMBOL(acpi_evaluate_dsm);
- bool acpi_check_dsm(acpi_handle handle, const guid_t *guid, u64 rev, u64 funcs)
- {
- int i;
- u64 mask = 0;
- union acpi_object *obj;
- if (funcs == 0)
- return false;
- obj = acpi_evaluate_dsm(handle, guid, rev, 0, NULL);
- if (!obj)
- return false;
-
- if (obj->type == ACPI_TYPE_INTEGER)
- mask = obj->integer.value;
- else if (obj->type == ACPI_TYPE_BUFFER)
- for (i = 0; i < obj->buffer.length && i < 8; i++)
- mask |= (((u64)obj->buffer.pointer[i]) << (i * 8));
- ACPI_FREE(obj);
-
- if ((mask & 0x1) && (mask & funcs) == funcs)
- return true;
- return false;
- }
- EXPORT_SYMBOL(acpi_check_dsm);
- bool acpi_dev_hid_uid_match(struct acpi_device *adev,
- const char *hid2, const char *uid2)
- {
- const char *hid1 = acpi_device_hid(adev);
- const char *uid1 = acpi_device_uid(adev);
- if (strcmp(hid1, hid2))
- return false;
- if (!uid2)
- return true;
- return uid1 && !strcmp(uid1, uid2);
- }
- EXPORT_SYMBOL(acpi_dev_hid_uid_match);
- int acpi_dev_uid_to_integer(struct acpi_device *adev, u64 *integer)
- {
- const char *uid;
- if (!adev)
- return -ENODEV;
- uid = acpi_device_uid(adev);
- if (!uid)
- return -ENODATA;
- return kstrtou64(uid, 0, integer);
- }
- EXPORT_SYMBOL(acpi_dev_uid_to_integer);
- bool acpi_dev_found(const char *hid)
- {
- struct acpi_device_bus_id *acpi_device_bus_id;
- bool found = false;
- mutex_lock(&acpi_device_lock);
- list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node)
- if (!strcmp(acpi_device_bus_id->bus_id, hid)) {
- found = true;
- break;
- }
- mutex_unlock(&acpi_device_lock);
- return found;
- }
- EXPORT_SYMBOL(acpi_dev_found);
- struct acpi_dev_match_info {
- struct acpi_device_id hid[2];
- const char *uid;
- s64 hrv;
- };
- static int acpi_dev_match_cb(struct device *dev, const void *data)
- {
- struct acpi_device *adev = to_acpi_device(dev);
- const struct acpi_dev_match_info *match = data;
- unsigned long long hrv;
- acpi_status status;
- if (acpi_match_device_ids(adev, match->hid))
- return 0;
- if (match->uid && (!adev->pnp.unique_id ||
- strcmp(adev->pnp.unique_id, match->uid)))
- return 0;
- if (match->hrv == -1)
- return 1;
- status = acpi_evaluate_integer(adev->handle, "_HRV", NULL, &hrv);
- if (ACPI_FAILURE(status))
- return 0;
- return hrv == match->hrv;
- }
- bool acpi_dev_present(const char *hid, const char *uid, s64 hrv)
- {
- struct acpi_dev_match_info match = {};
- struct device *dev;
- strscpy(match.hid[0].id, hid, sizeof(match.hid[0].id));
- match.uid = uid;
- match.hrv = hrv;
- dev = bus_find_device(&acpi_bus_type, NULL, &match, acpi_dev_match_cb);
- put_device(dev);
- return !!dev;
- }
- EXPORT_SYMBOL(acpi_dev_present);
- struct acpi_device *
- acpi_dev_get_next_match_dev(struct acpi_device *adev, const char *hid, const char *uid, s64 hrv)
- {
- struct device *start = adev ? &adev->dev : NULL;
- struct acpi_dev_match_info match = {};
- struct device *dev;
- strscpy(match.hid[0].id, hid, sizeof(match.hid[0].id));
- match.uid = uid;
- match.hrv = hrv;
- dev = bus_find_device(&acpi_bus_type, start, &match, acpi_dev_match_cb);
- acpi_dev_put(adev);
- return dev ? to_acpi_device(dev) : NULL;
- }
- EXPORT_SYMBOL(acpi_dev_get_next_match_dev);
- struct acpi_device *
- acpi_dev_get_first_match_dev(const char *hid, const char *uid, s64 hrv)
- {
- return acpi_dev_get_next_match_dev(NULL, hid, uid, hrv);
- }
- EXPORT_SYMBOL(acpi_dev_get_first_match_dev);
- bool acpi_reduced_hardware(void)
- {
- return acpi_gbl_reduced_hardware;
- }
- EXPORT_SYMBOL_GPL(acpi_reduced_hardware);
- char acpi_video_backlight_string[16];
- EXPORT_SYMBOL(acpi_video_backlight_string);
- static int __init acpi_backlight(char *str)
- {
- strscpy(acpi_video_backlight_string, str,
- sizeof(acpi_video_backlight_string));
- return 1;
- }
- __setup("acpi_backlight=", acpi_backlight);
- int acpi_match_platform_list(const struct acpi_platform_list *plat)
- {
- struct acpi_table_header hdr;
- int idx = 0;
- if (acpi_disabled)
- return -ENODEV;
- for (; plat->oem_id[0]; plat++, idx++) {
- if (ACPI_FAILURE(acpi_get_table_header(plat->table, 0, &hdr)))
- continue;
- if (strncmp(plat->oem_id, hdr.oem_id, ACPI_OEM_ID_SIZE))
- continue;
- if (strncmp(plat->oem_table_id, hdr.oem_table_id, ACPI_OEM_TABLE_ID_SIZE))
- continue;
- if ((plat->pred == all_versions) ||
- (plat->pred == less_than_or_equal && hdr.oem_revision <= plat->oem_revision) ||
- (plat->pred == greater_than_or_equal && hdr.oem_revision >= plat->oem_revision) ||
- (plat->pred == equal && hdr.oem_revision == plat->oem_revision))
- return idx;
- }
- return -ENODEV;
- }
- EXPORT_SYMBOL(acpi_match_platform_list);
|