Lines Matching refs:gct
166 struct gct_r0 gct;
175 memcpy_fromio(&gct, gct_virtual, sizeof(gct));
178 bpi = gct.PD.BootPanelIndex;
180 dev_priv->gct_data.pt = gct.PD.PanelType;
181 dev_priv->gct_data.DTD = gct.panel[bpi].DTD;
183 gct.panel[bpi].Panel_Port_Control;
185 gct.panel[bpi].Panel_MIPI_Display_Descriptor;
194 struct gct_r1 gct;
203 memcpy_fromio(&gct, gct_virtual, sizeof(gct));
206 bpi = gct.PD.BootPanelIndex;
208 dev_priv->gct_data.pt = gct.PD.PanelType;
209 dev_priv->gct_data.DTD = gct.panel[bpi].DTD;
211 gct.panel[bpi].Panel_Port_Control;
213 gct.panel[bpi].Panel_MIPI_Display_Descriptor;
222 struct gct_r10 *gct;
230 gct = kmalloc_array(vbt.panel_count, sizeof(*gct), GFP_KERNEL);
231 if (!gct)
235 sizeof(*gct) * vbt.panel_count);
238 memcpy_fromio(gct, gct_virtual, sizeof(*gct));
243 gct[vbt.primary_panel_idx].Panel_MIPI_Display_Descriptor;
245 ti = &gct[vbt.primary_panel_idx].DTD;
266 kfree(gct);