|
@@ -236,6 +236,13 @@ static int afu_release(struct inode *inode, struct file *filp)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
+static long afu_ioctl_check_extension(struct dfl_feature_platform_data *pdata,
|
|
|
+ unsigned long arg)
|
|
|
+{
|
|
|
+ /* No extension support for now */
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
static long afu_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
|
|
|
{
|
|
|
struct platform_device *pdev = filp->private_data;
|
|
@@ -248,6 +255,10 @@ static long afu_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
|
|
|
pdata = dev_get_platdata(&pdev->dev);
|
|
|
|
|
|
switch (cmd) {
|
|
|
+ case DFL_FPGA_GET_API_VERSION:
|
|
|
+ return DFL_FPGA_API_VERSION;
|
|
|
+ case DFL_FPGA_CHECK_EXTENSION:
|
|
|
+ return afu_ioctl_check_extension(pdata, arg);
|
|
|
default:
|
|
|
/*
|
|
|
* Let sub-feature's ioctl function to handle the cmd
|