Linux Audio

Check our new training course

Loading...
v6.8
  1// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
  2/*
  3 * Copyright(c) 2015, 2016 Intel Corporation.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  4 */
  5
  6#include <linux/string.h>
  7#include <linux/string_helpers.h>
  8
  9#include "efivar.h"
 10
 11/* GUID for HFI1 variables in EFI */
 12#define HFI1_EFIVAR_GUID EFI_GUID(0xc50a953e, 0xa8b2, 0x42a6, \
 13		0xbf, 0x89, 0xd3, 0x33, 0xa6, 0xe9, 0xe6, 0xd4)
 14/* largest EFI data size we expect */
 15#define EFI_DATA_SIZE 4096
 16
 17/*
 18 * Read the named EFI variable.  Return the size of the actual data in *size
 19 * and a kmalloc'ed buffer in *return_data.  The caller must free the
 20 * data.  It is guaranteed that *return_data will be NULL and *size = 0
 21 * if this routine fails.
 22 *
 23 * Return 0 on success, -errno on failure.
 24 */
 25static int read_efi_var(const char *name, unsigned long *size,
 26			void **return_data)
 27{
 28	efi_status_t status;
 29	efi_char16_t *uni_name;
 30	efi_guid_t guid;
 31	unsigned long temp_size;
 32	void *temp_buffer;
 33	void *data;
 34	int i;
 35	int ret;
 36
 37	/* set failure return values */
 38	*size = 0;
 39	*return_data = NULL;
 40
 41	if (!efi_rt_services_supported(EFI_RT_SUPPORTED_GET_VARIABLE))
 42		return -EOPNOTSUPP;
 43
 44	uni_name = kcalloc(strlen(name) + 1, sizeof(efi_char16_t), GFP_KERNEL);
 45	temp_buffer = kzalloc(EFI_DATA_SIZE, GFP_KERNEL);
 46
 47	if (!uni_name || !temp_buffer) {
 48		ret = -ENOMEM;
 49		goto fail;
 50	}
 51
 52	/* input: the size of the buffer */
 53	temp_size = EFI_DATA_SIZE;
 54
 55	/* convert ASCII to unicode - it is a 1:1 mapping */
 56	for (i = 0; name[i]; i++)
 57		uni_name[i] = name[i];
 58
 59	/* need a variable for our GUID */
 60	guid = HFI1_EFIVAR_GUID;
 61
 62	/* call into EFI runtime services */
 63	status = efi.get_variable(
 64			uni_name,
 65			&guid,
 66			NULL,
 67			&temp_size,
 68			temp_buffer);
 69
 70	/*
 71	 * It would be nice to call efi_status_to_err() here, but that
 72	 * is in the EFIVAR_FS code and may not be compiled in.
 73	 * However, even that is insufficient since it does not cover
 74	 * EFI_BUFFER_TOO_SMALL which could be an important return.
 75	 * For now, just split out success or not found.
 76	 */
 77	ret = status == EFI_SUCCESS   ? 0 :
 78	      status == EFI_NOT_FOUND ? -ENOENT :
 79					-EINVAL;
 80	if (ret)
 81		goto fail;
 82
 83	/*
 84	 * We have successfully read the EFI variable into our
 85	 * temporary buffer.  Now allocate a correctly sized
 86	 * buffer.
 87	 */
 88	data = kmemdup(temp_buffer, temp_size, GFP_KERNEL);
 89	if (!data) {
 90		ret = -ENOMEM;
 91		goto fail;
 92	}
 93
 94	*size = temp_size;
 95	*return_data = data;
 96
 97fail:
 98	kfree(uni_name);
 99	kfree(temp_buffer);
100
101	return ret;
102}
103
104/*
105 * Read an HFI1 EFI variable of the form:
106 *	<PCIe address>-<kind>
107 * Return an kalloc'ed array and size of the data.
108 *
109 * Returns 0 on success, -errno on failure.
110 */
111int read_hfi1_efi_var(struct hfi1_devdata *dd, const char *kind,
112		      unsigned long *size, void **return_data)
113{
114	char prefix_name[64];
115	char name[128];
116	int result;
 
117
118	/* create a common prefix */
119	snprintf(prefix_name, sizeof(prefix_name), "%04x:%02x:%02x.%x",
120		 pci_domain_nr(dd->pcidev->bus),
121		 dd->pcidev->bus->number,
122		 PCI_SLOT(dd->pcidev->devfn),
123		 PCI_FUNC(dd->pcidev->devfn));
124	snprintf(name, sizeof(name), "%s-%s", prefix_name, kind);
125	result = read_efi_var(name, size, return_data);
126
127	/*
128	 * If reading the lowercase EFI variable fail, read the uppercase
129	 * variable.
130	 */
131	if (result) {
132		string_upper(prefix_name, prefix_name);
 
 
 
133		snprintf(name, sizeof(name), "%s-%s", prefix_name, kind);
134		result = read_efi_var(name, size, return_data);
135	}
136
137	return result;
138}
v5.9
 
  1/*
  2 * Copyright(c) 2015, 2016 Intel Corporation.
  3 *
  4 * This file is provided under a dual BSD/GPLv2 license.  When using or
  5 * redistributing this file, you may do so under either license.
  6 *
  7 * GPL LICENSE SUMMARY
  8 *
  9 * This program is free software; you can redistribute it and/or modify
 10 * it under the terms of version 2 of the GNU General Public License as
 11 * published by the Free Software Foundation.
 12 *
 13 * This program is distributed in the hope that it will be useful, but
 14 * WITHOUT ANY WARRANTY; without even the implied warranty of
 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 16 * General Public License for more details.
 17 *
 18 * BSD LICENSE
 19 *
 20 * Redistribution and use in source and binary forms, with or without
 21 * modification, are permitted provided that the following conditions
 22 * are met:
 23 *
 24 *  - Redistributions of source code must retain the above copyright
 25 *    notice, this list of conditions and the following disclaimer.
 26 *  - Redistributions in binary form must reproduce the above copyright
 27 *    notice, this list of conditions and the following disclaimer in
 28 *    the documentation and/or other materials provided with the
 29 *    distribution.
 30 *  - Neither the name of Intel Corporation nor the names of its
 31 *    contributors may be used to endorse or promote products derived
 32 *    from this software without specific prior written permission.
 33 *
 34 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 35 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 36 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 37 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 38 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 39 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 40 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 41 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 42 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 43 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 44 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 45 *
 46 */
 47
 48#include <linux/ctype.h>
 
 
 49#include "efivar.h"
 50
 51/* GUID for HFI1 variables in EFI */
 52#define HFI1_EFIVAR_GUID EFI_GUID(0xc50a953e, 0xa8b2, 0x42a6, \
 53		0xbf, 0x89, 0xd3, 0x33, 0xa6, 0xe9, 0xe6, 0xd4)
 54/* largest EFI data size we expect */
 55#define EFI_DATA_SIZE 4096
 56
 57/*
 58 * Read the named EFI variable.  Return the size of the actual data in *size
 59 * and a kmalloc'ed buffer in *return_data.  The caller must free the
 60 * data.  It is guaranteed that *return_data will be NULL and *size = 0
 61 * if this routine fails.
 62 *
 63 * Return 0 on success, -errno on failure.
 64 */
 65static int read_efi_var(const char *name, unsigned long *size,
 66			void **return_data)
 67{
 68	efi_status_t status;
 69	efi_char16_t *uni_name;
 70	efi_guid_t guid;
 71	unsigned long temp_size;
 72	void *temp_buffer;
 73	void *data;
 74	int i;
 75	int ret;
 76
 77	/* set failure return values */
 78	*size = 0;
 79	*return_data = NULL;
 80
 81	if (!efi_rt_services_supported(EFI_RT_SUPPORTED_GET_VARIABLE))
 82		return -EOPNOTSUPP;
 83
 84	uni_name = kcalloc(strlen(name) + 1, sizeof(efi_char16_t), GFP_KERNEL);
 85	temp_buffer = kzalloc(EFI_DATA_SIZE, GFP_KERNEL);
 86
 87	if (!uni_name || !temp_buffer) {
 88		ret = -ENOMEM;
 89		goto fail;
 90	}
 91
 92	/* input: the size of the buffer */
 93	temp_size = EFI_DATA_SIZE;
 94
 95	/* convert ASCII to unicode - it is a 1:1 mapping */
 96	for (i = 0; name[i]; i++)
 97		uni_name[i] = name[i];
 98
 99	/* need a variable for our GUID */
100	guid = HFI1_EFIVAR_GUID;
101
102	/* call into EFI runtime services */
103	status = efi.get_variable(
104			uni_name,
105			&guid,
106			NULL,
107			&temp_size,
108			temp_buffer);
109
110	/*
111	 * It would be nice to call efi_status_to_err() here, but that
112	 * is in the EFIVAR_FS code and may not be compiled in.
113	 * However, even that is insufficient since it does not cover
114	 * EFI_BUFFER_TOO_SMALL which could be an important return.
115	 * For now, just split out succces or not found.
116	 */
117	ret = status == EFI_SUCCESS   ? 0 :
118	      status == EFI_NOT_FOUND ? -ENOENT :
119					-EINVAL;
120	if (ret)
121		goto fail;
122
123	/*
124	 * We have successfully read the EFI variable into our
125	 * temporary buffer.  Now allocate a correctly sized
126	 * buffer.
127	 */
128	data = kmemdup(temp_buffer, temp_size, GFP_KERNEL);
129	if (!data) {
130		ret = -ENOMEM;
131		goto fail;
132	}
133
134	*size = temp_size;
135	*return_data = data;
136
137fail:
138	kfree(uni_name);
139	kfree(temp_buffer);
140
141	return ret;
142}
143
144/*
145 * Read an HFI1 EFI variable of the form:
146 *	<PCIe address>-<kind>
147 * Return an kalloc'ed array and size of the data.
148 *
149 * Returns 0 on success, -errno on failure.
150 */
151int read_hfi1_efi_var(struct hfi1_devdata *dd, const char *kind,
152		      unsigned long *size, void **return_data)
153{
154	char prefix_name[64];
155	char name[64];
156	int result;
157	int i;
158
159	/* create a common prefix */
160	snprintf(prefix_name, sizeof(prefix_name), "%04x:%02x:%02x.%x",
161		 pci_domain_nr(dd->pcidev->bus),
162		 dd->pcidev->bus->number,
163		 PCI_SLOT(dd->pcidev->devfn),
164		 PCI_FUNC(dd->pcidev->devfn));
165	snprintf(name, sizeof(name), "%s-%s", prefix_name, kind);
166	result = read_efi_var(name, size, return_data);
167
168	/*
169	 * If reading the lowercase EFI variable fail, read the uppercase
170	 * variable.
171	 */
172	if (result) {
173		/* Converting to uppercase */
174		for (i = 0; prefix_name[i]; i++)
175			if (isalpha(prefix_name[i]))
176				prefix_name[i] = toupper(prefix_name[i]);
177		snprintf(name, sizeof(name), "%s-%s", prefix_name, kind);
178		result = read_efi_var(name, size, return_data);
179	}
180
181	return result;
182}