blob: f699962e9ddf06e947796302183b7cc67b74c235 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
David S. Miller9f747d62007-11-16 03:26:41 -08002#ifndef _SPARC_FB_H_
3#define _SPARC_FB_H_
David S. Miller0a492892010-08-15 00:26:14 -07004#include <linux/console.h>
Antonino A. Daplas317b3c22007-07-17 04:05:28 -07005#include <linux/fb.h>
David S. Miller9f747d62007-11-16 03:26:41 -08006#include <linux/fs.h>
7#include <asm/page.h>
David S. Miller3adf55a2007-07-18 22:03:58 -07008#include <asm/prom.h>
Antonino A. Daplas10eb2652007-07-17 04:05:27 -07009
David S. Miller9f747d62007-11-16 03:26:41 -080010static inline void fb_pgprotect(struct file *file, struct vm_area_struct *vma,
11 unsigned long off)
12{
13#ifdef CONFIG_SPARC64
14 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
15#endif
16}
Antonino A. Daplas10eb2652007-07-17 04:05:27 -070017
Antonino A. Daplas317b3c22007-07-17 04:05:28 -070018static inline int fb_is_primary_device(struct fb_info *info)
19{
David S. Miller3adf55a2007-07-18 22:03:58 -070020 struct device *dev = info->device;
21 struct device_node *node;
22
David S. Miller0a492892010-08-15 00:26:14 -070023 if (console_set_on_cmdline)
24 return 0;
25
Grant Likely61c7a082010-04-13 16:12:29 -070026 node = dev->of_node;
David S. Miller3adf55a2007-07-18 22:03:58 -070027 if (node &&
28 node == of_console_device)
29 return 1;
30
Antonino A. Daplas317b3c22007-07-17 04:05:28 -070031 return 0;
32}
33
David S. Miller9f747d62007-11-16 03:26:41 -080034#endif /* _SPARC_FB_H_ */