2007-11-16 04:26:41 -07:00
|
|
|
#ifndef _SPARC_FB_H_
|
|
|
|
#define _SPARC_FB_H_
|
2010-08-15 01:26:14 -06:00
|
|
|
#include <linux/console.h>
|
2007-07-17 05:05:28 -06:00
|
|
|
#include <linux/fb.h>
|
2007-11-16 04:26:41 -07:00
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <asm/page.h>
|
2007-07-18 23:03:58 -06:00
|
|
|
#include <asm/prom.h>
|
2007-07-17 05:05:27 -06:00
|
|
|
|
2007-11-16 04:26:41 -07:00
|
|
|
static inline void fb_pgprotect(struct file *file, struct vm_area_struct *vma,
|
|
|
|
unsigned long off)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_SPARC64
|
|
|
|
vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
|
|
|
|
#endif
|
|
|
|
}
|
2007-07-17 05:05:27 -06:00
|
|
|
|
2007-07-17 05:05:28 -06:00
|
|
|
static inline int fb_is_primary_device(struct fb_info *info)
|
|
|
|
{
|
2007-07-18 23:03:58 -06:00
|
|
|
struct device *dev = info->device;
|
|
|
|
struct device_node *node;
|
|
|
|
|
2010-08-15 01:26:14 -06:00
|
|
|
if (console_set_on_cmdline)
|
|
|
|
return 0;
|
|
|
|
|
2010-04-13 17:12:29 -06:00
|
|
|
node = dev->of_node;
|
2007-07-18 23:03:58 -06:00
|
|
|
if (node &&
|
|
|
|
node == of_console_device)
|
|
|
|
return 1;
|
|
|
|
|
2007-07-17 05:05:28 -06:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-11-16 04:26:41 -07:00
|
|
|
#endif /* _SPARC_FB_H_ */
|