summaryrefslogtreecommitdiffstats
path: root/src/drivers/wifi/generic/smbios.c
blob: 82c96a52a8d94466171698b28a8989d5715f0725 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* SPDX-License-Identifier: GPL-2.0-only */

#include <device/device.h>
#include <device/pci_ids.h>
#include <smbios.h>

#include "wifi_private.h"

static int smbios_write_intel_wifi(struct device *dev, int *handle, unsigned long *current)
{
	if (dev->vendor != PCI_VID_INTEL)
		return 0;

	struct smbios_type_intel_wifi {
		struct smbios_header header;
		u8 str;
		u8 eos[2];
	} __packed;

	struct smbios_type_intel_wifi *t = smbios_carve_table(*current, 0x85,
							      sizeof(*t), *handle);

	/* Intel wifi driver expects this string to be in the table 0x85. */
	t->str = smbios_add_string(t->eos, "KHOIHGIUCCHHII");

	const int len = smbios_full_table_len(&t->header, t->eos);
	*current += len;
	*handle += 1;
	return len;
}

int smbios_write_wifi_pcie(struct device *dev, int *handle, unsigned long *current)
{
	int len = smbios_write_intel_wifi(dev, handle, current);
	len += get_smbios_data(dev, handle, current);
	return len;
}

int smbios_write_wifi_cnvi(struct device *dev, int *handle, unsigned long *current)
{
	return smbios_write_wifi_pcie(dev->bus->dev, handle, current);
}