Lines Matching defs:gct
165 struct gct_r0 gct;
174 memcpy_fromio(&gct, gct_virtual, sizeof(gct));
177 bpi = gct.PD.BootPanelIndex;
179 dev_priv->gct_data.pt = gct.PD.PanelType;
180 dev_priv->gct_data.DTD = gct.panel[bpi].DTD;
182 gct.panel[bpi].Panel_Port_Control;
184 gct.panel[bpi].Panel_MIPI_Display_Descriptor;
193 struct gct_r1 gct;
202 memcpy_fromio(&gct, gct_virtual, sizeof(gct));
205 bpi = gct.PD.BootPanelIndex;
207 dev_priv->gct_data.pt = gct.PD.PanelType;
208 dev_priv->gct_data.DTD = gct.panel[bpi].DTD;
210 gct.panel[bpi].Panel_Port_Control;
212 gct.panel[bpi].Panel_MIPI_Display_Descriptor;
221 struct gct_r10 *gct;
229 gct = kmalloc_array(vbt.panel_count, sizeof(*gct), GFP_KERNEL);
230 if (!gct)
234 sizeof(*gct) * vbt.panel_count);
237 memcpy_fromio(gct, gct_virtual, sizeof(*gct));
242 gct[vbt.primary_panel_idx].Panel_MIPI_Display_Descriptor;
244 ti = &gct[vbt.primary_panel_idx].DTD;
265 kfree(gct);