Lines Matching defs:panfrost_device
78 struct panfrost_device { struct
79 struct device *dev;
80 struct drm_device *ddev;
81 struct platform_device *pdev;
83 void __iomem *iomem;
84 struct clk *clock;
85 struct clk *bus_clock;
86 struct regulator_bulk_data *regulators;
87 struct reset_control *rstc;
89 struct device *pm_domain_devs[MAX_PM_DOMAINS];
90 struct device_link *pm_domain_links[MAX_PM_DOMAINS];
92 struct panfrost_features features;
93 const struct panfrost_compatible *comp;
95 spinlock_t as_lock;
96 unsigned long as_in_use_mask;
97 unsigned long as_alloc_mask;
98 struct list_head as_lru_list;
100 struct panfrost_job_slot *js;
102 struct panfrost_job *jobs[NUM_JOB_SLOTS];
126 struct panfrost_device *pfdev; argument