1
0
Fork 0
mirror of synced 2025-03-06 20:59:54 +01:00
linux/drivers/media/pci/mgb4/mgb4_sysfs_pci.c
Martin Tůma 0ab13674a9 media: pci: mgb4: Added Digiteq Automotive MGB4 driver
Digiteq Automotive MGB4 is a modular frame grabber PCIe card for automotive
video interfaces. As for now, two modules - FPD-Link and GMSL - are
available and supported by the driver. The card has two inputs and two
outputs (FPD-Link only).

In addition to the video interfaces it also provides a trigger signal
interface and a MTD interface for FPGA firmware upload.

Signed-off-by: Martin Tůma <martin.tuma@digiteqautomotive.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
2023-10-07 10:51:58 +02:00

71 lines
1.9 KiB
C

// 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
};