summaryrefslogtreecommitdiffstats
path: root/drivers/staging/gma500/mrst_device.c
Commit message (Collapse)AuthorAgeFilesLines
* gma500: the 'mrst' BIOS is actually MID genericAlan Cox2011-07-051-1/+1
| | | | | | | | Shuffle the naming so this reflects better and we can try and build some sort of ordering to the naming scheme. Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* gma500: move configuration bits into the psb_ops structureAlan Cox2011-07-051-0/+5
| | | | | | | | We can stuff things like the number of pipes and the SGX offset away in here as well and clean up more conditional code. Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* gma500: add more opsAlan Cox2011-07-051-0/+5
| | | | | | | | Split the 2d properties, name, and various function vectors out so that we can get rid of more conditional gloop in favour of a per device structure. Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* gma500: continue abstracting platform specific codeAlan Cox2011-07-051-0/+137
| | | | | | | Next obvious target - backlight support Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
* gma500: being abstracting out devices a bit moreAlan Cox2011-07-051-0/+230
We really want to move towards a completely abstracted interface rather than having tons of per chip junk in the same files. Begin with the power code which is probably the worst offender. Add a set of methods, initialise a dev_priv->ops pointer and rip the chip specifics out of the power code. While we are it pick up the display init bits. So we know it's now chip specifics clean remove the psb_ naming from it. Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>