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

Commit b7cdd9e6 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman Committed by Greg Kroah-Hartman
Browse files

staging: delete gma500 driver



It's now "properly" merged into the DRM tree in the kernel, so delete
the staging version of the driver as it is far obsolete and broken.

Requested-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 62aa2b53
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -120,8 +120,6 @@ source "drivers/staging/cptm1217/Kconfig"

source "drivers/staging/ste_rmi4/Kconfig"

source "drivers/staging/gma500/Kconfig"

source "drivers/staging/mei/Kconfig"

source "drivers/staging/nvec/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -52,7 +52,6 @@ obj-$(CONFIG_FT1000) += ft1000/
obj-$(CONFIG_SPEAKUP)		+= speakup/
obj-$(CONFIG_TOUCHSCREEN_CLEARPAD_TM1217)	+= cptm1217/
obj-$(CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4)	+= ste_rmi4/
obj-$(CONFIG_DRM_PSB)		+= gma500/
obj-$(CONFIG_INTEL_MEI)		+= mei/
obj-$(CONFIG_MFD_NVEC)		+= nvec/
obj-$(CONFIG_DRM_OMAP)		+= omapdrm/

drivers/staging/gma500/Kconfig

deleted100644 → 0
+0 −33
Original line number Diff line number Diff line
config DRM_PSB
	tristate "Intel GMA5/600 KMS Framebuffer"
	depends on DRM && PCI && X86 && BROKEN
	select FB_CFB_COPYAREA
        select FB_CFB_FILLRECT
        select FB_CFB_IMAGEBLIT
        select DRM_KMS_HELPER
        select DRM_TTM
	help
	  Say yes for an experimental 2D KMS framebuffer driver for the
	  Intel GMA500 ('Poulsbo') and other Intel IMG based graphics
	  devices.

config DRM_PSB_MRST
	bool "Intel GMA600 support (Experimental)"
	depends on DRM_PSB
	help
	  Say yes to include support for GMA600 (Intel Moorestown/Oaktrail)
	  platforms with LVDS ports. HDMI and MIPI are not currently
	  supported.

config DRM_PSB_MFLD
	bool "Intel Medfield support (Experimental)"
	depends on DRM_PSB
	help
	  Say yes to include support for Intel Medfield platforms with MIPI
	  interfaces.
	
config DRM_PSB_CDV
	bool "Intel Cedarview support (Experimental)"
	depends on DRM_PSB
	help
	  Say yes to include support for Intel Cedarview platforms

drivers/staging/gma500/Makefile

deleted100644 → 0
+0 −52
Original line number Diff line number Diff line
#
#	KMS driver for the GMA500
#
ccflags-y += -Iinclude/drm

psb_gfx-y += gem_glue.o \
	  accel_2d.o \
	  backlight.o \
	  framebuffer.o \
	  gem.o \
	  gtt.o \
	  intel_bios.o \
	  intel_i2c.o \
	  intel_opregion.o \
	  mmu.o \
	  power.o \
	  psb_drv.o \
	  psb_intel_display.o \
	  psb_intel_lvds.o \
	  psb_intel_modes.o \
	  psb_intel_sdvo.o \
	  psb_lid.o \
	  psb_irq.o \
	  psb_device.o \
	  mid_bios.o

psb_gfx-$(CONFIG_DRM_PSB_CDV) +=  cdv_device.o \
	  cdv_intel_crt.o \
	  cdv_intel_display.o \
	  cdv_intel_hdmi.o \
	  cdv_intel_lvds.o

psb_gfx-$(CONFIG_DRM_PSB_MRST) += mrst_device.o \
	  mrst_crtc.o \
	  mrst_lvds.o \
	  mrst_hdmi.o \
	  mrst_hdmi_i2c.o

psb_gfx-$(CONFIG_DRM_PSB_MFLD) += mdfld_device.o \
	  mdfld_output.o \
	  mdfld_pyr_cmd.o \
	  mdfld_tmd_vid.o \
	  mdfld_tpo_cmd.o \
	  mdfld_tpo_vid.o \
	  mdfld_dsi_pkg_sender.o \
	  mdfld_dsi_dpi.o \
	  mdfld_dsi_output.o \
	  mdfld_dsi_dbi.o \
	  mdfld_dsi_dbi_dpu.o \
	  mdfld_intel_display.o

obj-$(CONFIG_DRM_PSB) += psb_gfx.o

drivers/staging/gma500/TODO

deleted100644 → 0
+0 −15
Original line number Diff line number Diff line
-	Sort out the power management side. Not important for Poulsbo but
	matters for Moorestown/Medfield
-	Debug Oaktrail/Moorestown support (single pipe, no BIOS on mrst,
					some other differences)
-	Add 2D acceleration via console and DRM
-	Add scrolling acceleration using the GTT to do remapping on the main
	framebuffer.
-	HDMI testing
-	Oaktrail HDMI and other features
-	Oaktrail MIPI
-	Medfield needs a lot of further love

As per kernel policy and the in the interest of the safety of various
kittens there is no support or plans to add hooks for the closed user space
stuff.
Loading