Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

crypto: intel_fcs: check platform name when invoke mmap #18

Open
wants to merge 1 commit into
base: socfpga-6.6.22-lts
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion drivers/crypto/intel_fcs_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ struct socfpga_fcs_data {
bool have_hwrng;
};

static const char *platform;
static char *source_ptr;

typedef void (*fcs_callback)(struct stratix10_svc_client *client,
Expand Down Expand Up @@ -3730,6 +3731,9 @@ static int fcs_mmap(struct file *filp, struct vm_area_struct *vma)
unsigned long size, off;
struct page *page;

if (strncmp(platform, AGILEX_PLATFORM, AGILEX_PLATFORM_STR_LEN))
return -ENOTSUPP;

if (!source_ptr) {
pr_err("vmalloc failed mmap %s", __func__);
return -ENOMEM;
Expand Down Expand Up @@ -3762,7 +3766,6 @@ static int fcs_driver_probe(struct platform_device *pdev)
struct device *dev = &pdev->dev;
struct intel_fcs_priv *priv;
int ret, i;
const char *platform;
struct stratix10_svc_client_msg msg;
unsigned long off;
int l2_idx = SRC_BUFFER_STARTING_L2_IDX;
Expand Down