Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4086b1e2 authored by Kirill A. Shutemov's avatar Kirill A. Shutemov Committed by Dave Airlie
Browse files

gma500: mid-bios: rewrite VBT/GCT handling in a cleaner way

parent 4ad35b2e
Loading
Loading
Loading
Loading
+185 −110
Original line number Original line Diff line number Diff line
@@ -118,139 +118,214 @@ static void mid_get_pci_revID(struct drm_psb_private *dev_priv)
					dev_priv->platform_rev_id);
					dev_priv->platform_rev_id);
}
}


static void mid_get_vbt_data(struct drm_psb_private *dev_priv)
struct vbt_header {
	u32 signature;
	u8 revision;
} __packed;

/* The same for r0 and r1 */
struct vbt_r0 {
	struct vbt_header vbt_header;
	u8 size;
	u8 checksum;
} __packed;

struct vbt_r10 {
	struct vbt_header vbt_header;
	u8 checksum;
	u16 size;
	u8 panel_count;
	u8 primary_panel_idx;
	u8 secondary_panel_idx;
	u8 __reserved[5];
} __packed;

static int read_vbt_r0(u32 addr, struct vbt_r0 *vbt)
{
{
	struct drm_device *dev = dev_priv->dev;
	void __iomem *vbt_virtual;
	struct oaktrail_vbt *vbt = &dev_priv->vbt_data;
	u32 addr;
	u16 new_size;
	u8 *vbt_virtual;
	u8 bpi;
	u8 number_desc = 0;
	struct oaktrail_timing_info *dp_ti = &dev_priv->gct_data.DTD;
	struct gct_r10_timing_info ti;
	void *pGCT;
	struct pci_dev *pci_gfx_root = pci_get_bus_and_slot(0, PCI_DEVFN(2, 0));

	/* Get the address of the platform config vbt, B0:D2:F0;0xFC */
	pci_read_config_dword(pci_gfx_root, 0xFC, &addr);
	pci_dev_put(pci_gfx_root);


	dev_dbg(dev->dev, "drm platform config address is %x\n", addr);
	vbt_virtual = ioremap(addr, sizeof(*vbt));
	if (vbt_virtual == NULL)
		return -1;


	/* check for platform config address == 0. */
	memcpy_fromio(vbt, vbt_virtual, sizeof(*vbt));
	/* this means fw doesn't support vbt */
	iounmap(vbt_virtual);


	if (addr == 0) {
	return 0;
		vbt->size = 0;
		return;
}
}


	/* get the virtual address of the vbt */
static int read_vbt_r10(u32 addr, struct vbt_r10 *vbt)
{
	void __iomem *vbt_virtual;

	vbt_virtual = ioremap(addr, sizeof(*vbt));
	vbt_virtual = ioremap(addr, sizeof(*vbt));
	if (vbt_virtual == NULL) {
	if (!vbt_virtual)
		vbt->size = 0;
		return -1;
		return;
	}


	memcpy(vbt, vbt_virtual, sizeof(*vbt));
	memcpy_fromio(vbt, vbt_virtual, sizeof(*vbt));
	iounmap(vbt_virtual); /* Free virtual address space */
	iounmap(vbt_virtual);


	/* No matching signature don't process the data */
	return 0;
	if (memcmp(vbt->signature, "$GCT", 4)) {
		vbt->size = 0;
		return;
}
}


	dev_dbg(dev->dev, "GCT revision is %x\n", vbt->revision);
static int mid_get_vbt_data_r0(struct drm_psb_private *dev_priv, u32 addr)
{
	struct vbt_r0 vbt;
	void __iomem *gct_virtual;
	struct gct_r0 gct;
	u8 bpi;

	if (read_vbt_r0(addr, &vbt))
		return -1;


	switch (vbt->revision) {
	gct_virtual = ioremap(addr + sizeof(vbt), vbt.size - sizeof(vbt));
	case 0:
	if (!gct_virtual)
		vbt->oaktrail_gct = ioremap(addr + sizeof(*vbt) - 4,
		return -1;
					vbt->size - sizeof(*vbt) + 4);
	memcpy_fromio(&gct, gct_virtual, sizeof(gct));
		pGCT = vbt->oaktrail_gct;
	iounmap(gct_virtual);
		bpi = ((struct oaktrail_gct_v1 *)pGCT)->PD.BootPanelIndex;

	bpi = gct.PD.BootPanelIndex;
	dev_priv->gct_data.bpi = bpi;
	dev_priv->gct_data.bpi = bpi;
		dev_priv->gct_data.pt =
	dev_priv->gct_data.pt = gct.PD.PanelType;
			((struct oaktrail_gct_v1 *)pGCT)->PD.PanelType;
	dev_priv->gct_data.DTD = gct.panel[bpi].DTD;
		memcpy(&dev_priv->gct_data.DTD,
			&((struct oaktrail_gct_v1 *)pGCT)->panel[bpi].DTD,
				sizeof(struct oaktrail_timing_info));
	dev_priv->gct_data.Panel_Port_Control =
	dev_priv->gct_data.Panel_Port_Control =
		  ((struct oaktrail_gct_v1 *)pGCT)->panel[bpi].Panel_Port_Control;
		gct.panel[bpi].Panel_Port_Control;
	dev_priv->gct_data.Panel_MIPI_Display_Descriptor =
	dev_priv->gct_data.Panel_MIPI_Display_Descriptor =
			((struct oaktrail_gct_v1 *)pGCT)->panel[bpi].Panel_MIPI_Display_Descriptor;
		gct.panel[bpi].Panel_MIPI_Display_Descriptor;
		break;

	case 1:
	return 0;
		vbt->oaktrail_gct = ioremap(addr + sizeof(*vbt) - 4,
}
					vbt->size - sizeof(*vbt) + 4);

		pGCT = vbt->oaktrail_gct;
static int mid_get_vbt_data_r1(struct drm_psb_private *dev_priv, u32 addr)
		bpi = ((struct oaktrail_gct_v2 *)pGCT)->PD.BootPanelIndex;
{
	struct vbt_r0 vbt;
	void __iomem *gct_virtual;
	struct gct_r1 gct;
	u8 bpi;

	if (read_vbt_r0(addr, &vbt))
		return -1;

	gct_virtual = ioremap(addr + sizeof(vbt), vbt.size - sizeof(vbt));
	if (!gct_virtual)
		return -1;
	memcpy_fromio(&gct, gct_virtual, sizeof(gct));
	iounmap(gct_virtual);

	bpi = gct.PD.BootPanelIndex;
	dev_priv->gct_data.bpi = bpi;
	dev_priv->gct_data.bpi = bpi;
		dev_priv->gct_data.pt =
	dev_priv->gct_data.pt = gct.PD.PanelType;
			((struct oaktrail_gct_v2 *)pGCT)->PD.PanelType;
	dev_priv->gct_data.DTD = gct.panel[bpi].DTD;
		memcpy(&dev_priv->gct_data.DTD,
			&((struct oaktrail_gct_v2 *)pGCT)->panel[bpi].DTD,
				sizeof(struct oaktrail_timing_info));
	dev_priv->gct_data.Panel_Port_Control =
	dev_priv->gct_data.Panel_Port_Control =
		  ((struct oaktrail_gct_v2 *)pGCT)->panel[bpi].Panel_Port_Control;
		gct.panel[bpi].Panel_Port_Control;
	dev_priv->gct_data.Panel_MIPI_Display_Descriptor =
	dev_priv->gct_data.Panel_MIPI_Display_Descriptor =
			((struct oaktrail_gct_v2 *)pGCT)->panel[bpi].Panel_MIPI_Display_Descriptor;
		gct.panel[bpi].Panel_MIPI_Display_Descriptor;

	return 0;
}

static int mid_get_vbt_data_r10(struct drm_psb_private *dev_priv, u32 addr)
{
	struct vbt_r10 vbt;
	void __iomem *gct_virtual;
	struct gct_r10 *gct;
	struct oaktrail_timing_info *dp_ti = &dev_priv->gct_data.DTD;
	struct gct_r10_timing_info *ti;
	int ret = -1;

	if (read_vbt_r10(addr, &vbt))
		return -1;

	gct = kmalloc(sizeof(*gct) * vbt.panel_count, GFP_KERNEL);
	if (!gct)
		return -1;

	gct_virtual = ioremap(addr + sizeof(vbt),
			sizeof(*gct) * vbt.panel_count);
	if (!gct_virtual)
		goto out;
	memcpy_fromio(gct, gct_virtual, sizeof(*gct));
	iounmap(gct_virtual);

	dev_priv->gct_data.bpi = vbt.primary_panel_idx;
	dev_priv->gct_data.Panel_MIPI_Display_Descriptor =
		gct[vbt.primary_panel_idx].Panel_MIPI_Display_Descriptor;

	ti = &gct[vbt.primary_panel_idx].DTD;
	dp_ti->pixel_clock = ti->pixel_clock;
	dp_ti->hactive_hi = ti->hactive_hi;
	dp_ti->hactive_lo = ti->hactive_lo;
	dp_ti->hblank_hi = ti->hblank_hi;
	dp_ti->hblank_lo = ti->hblank_lo;
	dp_ti->hsync_offset_hi = ti->hsync_offset_hi;
	dp_ti->hsync_offset_lo = ti->hsync_offset_lo;
	dp_ti->hsync_pulse_width_hi = ti->hsync_pulse_width_hi;
	dp_ti->hsync_pulse_width_lo = ti->hsync_pulse_width_lo;
	dp_ti->vactive_hi = ti->vactive_hi;
	dp_ti->vactive_lo = ti->vactive_lo;
	dp_ti->vblank_hi = ti->vblank_hi;
	dp_ti->vblank_lo = ti->vblank_lo;
	dp_ti->vsync_offset_hi = ti->vsync_offset_hi;
	dp_ti->vsync_offset_lo = ti->vsync_offset_lo;
	dp_ti->vsync_pulse_width_hi = ti->vsync_pulse_width_hi;
	dp_ti->vsync_pulse_width_lo = ti->vsync_pulse_width_lo;

	ret = 0;
out:
	kfree(gct);
	return ret;
}

static void mid_get_vbt_data(struct drm_psb_private *dev_priv)
{
	struct drm_device *dev = dev_priv->dev;
	u32 addr;
	u8 __iomem *vbt_virtual;
	struct vbt_header vbt_header;
	struct pci_dev *pci_gfx_root = pci_get_bus_and_slot(0, PCI_DEVFN(2, 0));
	int ret = -1;

	/* Get the address of the platform config vbt */
	pci_read_config_dword(pci_gfx_root, 0xFC, &addr);
	pci_dev_put(pci_gfx_root);

	dev_dbg(dev->dev, "drm platform config address is %x\n", addr);

	if (!addr)
		goto out;

	/* get the virtual address of the vbt */
	vbt_virtual = ioremap(addr, sizeof(vbt_header));
	if (!vbt_virtual)
		goto out;

	memcpy_fromio(&vbt_header, vbt_virtual, sizeof(vbt_header));
	iounmap(vbt_virtual);

	if (memcmp(&vbt_header.signature, "$GCT", 4))
		goto out;

	dev_dbg(dev->dev, "GCT revision is %02x\n", vbt_header.revision);

	switch (vbt_header.revision) {
	case 0x00:
		ret = mid_get_vbt_data_r0(dev_priv, addr);
		break;
	case 0x01:
		ret = mid_get_vbt_data_r1(dev_priv, addr);
		break;
		break;
	case 0x10:
	case 0x10:
		/*header definition changed from rev 01 (v2) to rev 10h. */
		ret = mid_get_vbt_data_r10(dev_priv, addr);
		/*so, some values have changed location*/
		new_size = vbt->checksum; /*checksum contains lo size byte*/
		/*LSB of oaktrail_gct contains hi size byte*/
		new_size |= ((0xff & (unsigned int)(long)vbt->oaktrail_gct)) << 8;

		vbt->checksum = vbt->size; /*size contains the checksum*/
		if (new_size > 0xff)
			vbt->size = 0xff; /*restrict size to 255*/
		else
			vbt->size = new_size;

		/* number of descriptors defined in the GCT */
		number_desc = ((0xff00 & (unsigned int)(long)vbt->oaktrail_gct)) >> 8;
		bpi = ((0xff0000 & (unsigned int)(long)vbt->oaktrail_gct)) >> 16;
		vbt->oaktrail_gct = ioremap(addr + GCT_R10_HEADER_SIZE,
				GCT_R10_DISPLAY_DESC_SIZE * number_desc);
		pGCT = vbt->oaktrail_gct;
		pGCT = (u8 *)pGCT + (bpi*GCT_R10_DISPLAY_DESC_SIZE);
		dev_priv->gct_data.bpi = bpi; /*save boot panel id*/

		/*copy the GCT display timings into a temp structure*/
		memcpy(&ti, pGCT, sizeof(struct gct_r10_timing_info));

		/*now copy the temp struct into the dev_priv->gct_data*/
		dp_ti->pixel_clock = ti.pixel_clock;
		dp_ti->hactive_hi = ti.hactive_hi;
		dp_ti->hactive_lo = ti.hactive_lo;
		dp_ti->hblank_hi = ti.hblank_hi;
		dp_ti->hblank_lo = ti.hblank_lo;
		dp_ti->hsync_offset_hi = ti.hsync_offset_hi;
		dp_ti->hsync_offset_lo = ti.hsync_offset_lo;
		dp_ti->hsync_pulse_width_hi = ti.hsync_pulse_width_hi;
		dp_ti->hsync_pulse_width_lo = ti.hsync_pulse_width_lo;
		dp_ti->vactive_hi = ti.vactive_hi;
		dp_ti->vactive_lo = ti.vactive_lo;
		dp_ti->vblank_hi = ti.vblank_hi;
		dp_ti->vblank_lo = ti.vblank_lo;
		dp_ti->vsync_offset_hi = ti.vsync_offset_hi;
		dp_ti->vsync_offset_lo = ti.vsync_offset_lo;
		dp_ti->vsync_pulse_width_hi = ti.vsync_pulse_width_hi;
		dp_ti->vsync_pulse_width_lo = ti.vsync_pulse_width_lo;

		/* Move the MIPI_Display_Descriptor data from GCT to dev priv */
		dev_priv->gct_data.Panel_MIPI_Display_Descriptor =
							*((u8 *)pGCT + 0x0d);
		dev_priv->gct_data.Panel_MIPI_Display_Descriptor |=
						(*((u8 *)pGCT + 0x0e)) << 8;
		break;
		break;
	default:
	default:
		dev_err(dev->dev, "Unknown revision of GCT!\n");
		dev_err(dev->dev, "Unknown revision of GCT!\n");
		vbt->size = 0;
	}
	}

out:
	if (ret)
		dev_err(dev->dev, "Unable to read GCT!");
	else
		dev_priv->has_gct = true;
}
}


int mid_chip_setup(struct drm_device *dev)
int mid_chip_setup(struct drm_device *dev)
+12 −13
Original line number Original line Diff line number Diff line
@@ -19,14 +19,6 @@


/* MID device specific descriptors */
/* MID device specific descriptors */


struct oaktrail_vbt {
	s8 signature[4];	/*4 bytes,"$GCT" */
	u8 revision;
	u8 size;
	u8 checksum;
	void *oaktrail_gct;
} __packed;

struct oaktrail_timing_info {
struct oaktrail_timing_info {
	u16 pixel_clock;
	u16 pixel_clock;
	u8 hactive_lo;
	u8 hactive_lo;
@@ -161,7 +153,7 @@ union oaktrail_panel_rx {
	u16 panel_receiver;
	u16 panel_receiver;
} __packed;
} __packed;


struct oaktrail_gct_v1 {
struct gct_r0 {
	union { /*8 bits,Defined as follows: */
	union { /*8 bits,Defined as follows: */
		struct {
		struct {
			u8 PanelType:4; /*4 bits, Bit field for panels*/
			u8 PanelType:4; /*4 bits, Bit field for panels*/
@@ -178,7 +170,7 @@ struct oaktrail_gct_v1 {
	union oaktrail_panel_rx panelrx[4]; /* panel receivers*/
	union oaktrail_panel_rx panelrx[4]; /* panel receivers*/
} __packed;
} __packed;


struct oaktrail_gct_v2 {
struct gct_r1 {
	union { /*8 bits,Defined as follows: */
	union { /*8 bits,Defined as follows: */
		struct {
		struct {
			u8 PanelType:4; /*4 bits, Bit field for panels*/
			u8 PanelType:4; /*4 bits, Bit field for panels*/
@@ -195,6 +187,16 @@ struct oaktrail_gct_v2 {
	union oaktrail_panel_rx panelrx[4]; /* panel receivers*/
	union oaktrail_panel_rx panelrx[4]; /* panel receivers*/
} __packed;
} __packed;


struct gct_r10 {
	struct gct_r10_timing_info DTD;
	u16 Panel_MIPI_Display_Descriptor;
	u16 Panel_MIPI_Receiver_Descriptor;
	u16 Panel_Backlight_Inverter_Descriptor;
	u8 Panel_Initial_Brightness;
	u32 MIPI_Ctlr_Init_ptr;
	u32 MIPI_Panel_Init_ptr;
} __packed;

struct oaktrail_gct_data {
struct oaktrail_gct_data {
	u8 bpi; /* boot panel index, number of panel used during boot */
	u8 bpi; /* boot panel index, number of panel used during boot */
	u8 pt; /* panel type, 4 bit field, 0=lvds, 1=mipi */
	u8 pt; /* panel type, 4 bit field, 0=lvds, 1=mipi */
@@ -213,9 +215,6 @@ struct oaktrail_gct_data {
#define MODE_SETTING_IN_DSR		0x4
#define MODE_SETTING_IN_DSR		0x4
#define MODE_SETTING_ENCODER_DONE	0x8
#define MODE_SETTING_ENCODER_DONE	0x8


#define GCT_R10_HEADER_SIZE		16
#define GCT_R10_DISPLAY_DESC_SIZE	28

/*
/*
 *	Moorestown HDMI interfaces
 *	Moorestown HDMI interfaces
 */
 */
+3 −5
Original line number Original line Diff line number Diff line
@@ -458,13 +458,12 @@ static int oaktrail_power_up(struct drm_device *dev)
static int oaktrail_chip_setup(struct drm_device *dev)
static int oaktrail_chip_setup(struct drm_device *dev)
{
{
	struct drm_psb_private *dev_priv = dev->dev_private;
	struct drm_psb_private *dev_priv = dev->dev_private;
	struct oaktrail_vbt *vbt = &dev_priv->vbt_data;
	int ret;
	int ret;


	ret = mid_chip_setup(dev);
	ret = mid_chip_setup(dev);
	if (ret < 0)
	if (ret < 0)
		return ret;
		return ret;
	if (vbt->size == 0) {
	if (!dev_priv->has_gct) {
		/* Now pull the BIOS data */
		/* Now pull the BIOS data */
		psb_intel_opregion_init(dev);
		psb_intel_opregion_init(dev);
		psb_intel_init_bios(dev);
		psb_intel_init_bios(dev);
@@ -476,10 +475,9 @@ static int oaktrail_chip_setup(struct drm_device *dev)
static void oaktrail_teardown(struct drm_device *dev)
static void oaktrail_teardown(struct drm_device *dev)
{
{
	struct drm_psb_private *dev_priv = dev->dev_private;
	struct drm_psb_private *dev_priv = dev->dev_private;
	struct oaktrail_vbt *vbt = &dev_priv->vbt_data;


	oaktrail_hdmi_teardown(dev);
	oaktrail_hdmi_teardown(dev);
	if (vbt->size == 0)
	if (!dev_priv->has_gct)
		psb_intel_destroy_bios(dev);
		psb_intel_destroy_bios(dev);
}
}


+2 −2
Original line number Original line Diff line number Diff line
@@ -257,7 +257,7 @@ static void oaktrail_lvds_get_configuration_mode(struct drm_device *dev,
	mode_dev->panel_fixed_mode = NULL;
	mode_dev->panel_fixed_mode = NULL;


	/* Use the firmware provided data on Moorestown */
	/* Use the firmware provided data on Moorestown */
	if (dev_priv->vbt_data.size != 0x00) { /*if non-zero, then use vbt*/
	if (dev_priv->has_gct) {
		mode = kzalloc(sizeof(*mode), GFP_KERNEL);
		mode = kzalloc(sizeof(*mode), GFP_KERNEL);
		if (!mode)
		if (!mode)
			return;
			return;
@@ -371,7 +371,7 @@ void oaktrail_lvds_init(struct drm_device *dev,
					BRIGHTNESS_MAX_LEVEL);
					BRIGHTNESS_MAX_LEVEL);


	mode_dev->panel_wants_dither = false;
	mode_dev->panel_wants_dither = false;
	if (dev_priv->vbt_data.size != 0x00)
	if (dev_priv->has_gct)
		mode_dev->panel_wants_dither = (dev_priv->gct_data.
		mode_dev->panel_wants_dither = (dev_priv->gct_data.
			Panel_Port_Control & MRST_PANEL_8TO6_DITHER_ENABLE);
			Panel_Port_Control & MRST_PANEL_8TO6_DITHER_ENABLE);
        if (dev_priv->lvds_dither)
        if (dev_priv->lvds_dither)
+1 −1
Original line number Original line Diff line number Diff line
@@ -612,7 +612,7 @@ struct drm_psb_private {
	int rpm_enabled;
	int rpm_enabled;


	/* MID specific */
	/* MID specific */
	struct oaktrail_vbt vbt_data;
	bool has_gct;
	struct oaktrail_gct_data gct_data;
	struct oaktrail_gct_data gct_data;


	/* Oaktrail HDMI state */
	/* Oaktrail HDMI state */