summaryrefslogtreecommitdiffstats
path: root/drivers/media/pci/mgb4/mgb4_sysfs_pci.c
blob: d26935ff956b64f466ec48b8b6da5862cda408bf (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (C) 2021-2022 Digiteq Automotive
 *     author: Martin Tuma <martin.tuma@digiteqautomotive.com>
 *
 * This module handles all the sysfs info/configuration that is related to the
 * PCI card device.
 */

#include <linux/device.h>
#include "mgb4_core.h"
#include "mgb4_sysfs.h"

static ssize_t module_version_show(struct device *dev,
				   struct device_attribute *attr, char *buf)
{
	struct mgb4_dev *mgbdev = dev_get_drvdata(dev);

	return sprintf(buf, "%u\n", mgbdev->module_version & 0x0F);
}

static ssize_t module_type_show(struct device *dev,
				struct device_attribute *attr, char *buf)
{
	struct mgb4_dev *mgbdev = dev_get_drvdata(dev);

	return sprintf(buf, "%u\n", mgbdev->module_version >> 4);
}

static ssize_t fw_version_show(struct device *dev,
			       struct device_attribute *attr, char *buf)
{
	struct mgb4_dev *mgbdev = dev_get_drvdata(dev);
	u32 config = mgb4_read_reg(&mgbdev->video, 0xC4);

	return sprintf(buf, "%u\n", config & 0xFFFF);
}

static ssize_t fw_type_show(struct device *dev,
			    struct device_attribute *attr, char *buf)
{
	struct mgb4_dev *mgbdev = dev_get_drvdata(dev);
	u32 config = mgb4_read_reg(&mgbdev->video, 0xC4);

	return sprintf(buf, "%u\n", config >> 24);
}

static ssize_t serial_number_show(struct device *dev,
				  struct device_attribute *attr, char *buf)
{
	struct mgb4_dev *mgbdev = dev_get_drvdata(dev);
	u32 sn = mgbdev->serial_number;

	return sprintf(buf, "%03d-%03d-%03d-%03d\n", sn >> 24, (sn >> 16) & 0xFF,
	  (sn >> 8) & 0xFF, sn & 0xFF);
}

static DEVICE_ATTR_RO(module_version);
static DEVICE_ATTR_RO(module_type);
static DEVICE_ATTR_RO(fw_version);
static DEVICE_ATTR_RO(fw_type);
static DEVICE_ATTR_RO(serial_number);

struct attribute *mgb4_pci_attrs[] = {
	&dev_attr_module_type.attr,
	&dev_attr_module_version.attr,
	&dev_attr_fw_type.attr,
	&dev_attr_fw_version.attr,
	&dev_attr_serial_number.attr,
	NULL
};